Skip to content

Commit f78a184

Browse files
author
Gavin Harris
committed
Bumpped version
1 parent b457038 commit f78a184

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

dist/browser.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/node.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "web3-cardano-token",
3-
"version": "0.0.12",
3+
"version": "0.1.15",
44
"private": false,
55
"description": "Web3 Token is a new way to authenticate users in hybrid dApps using signed messages.",
66
"author": "pyropy",

src/lib/sign.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export const sign = async (signer, expires_in = '1d', body = {}) => {
2929
const {signature, key} = COSESign1Message;
3030

3131
if(typeof signature !== 'string') {
32-
throw new Error('"signer" argument should be a function that returns a signature string (Promise<string>)')
32+
throw new Error('"signature" argument should be a function that returns a signature string (Promise<string>)')
3333
}
3434

3535
const token = Base64.encode(JSON.stringify({

0 commit comments

Comments
 (0)