signet.js 0.0.10-beta10 → 0.0.10-beta11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/browser/index.browser.cjs +2 -2
- package/browser/index.browser.cjs.map +1 -1
- package/browser/index.browser.js +2 -2
- package/browser/index.browser.js.map +1 -1
- package/node/index.node.cjs +2 -2
- package/node/index.node.cjs.map +1 -1
- package/node/index.node.js +2 -2
- package/node/index.node.js.map +1 -1
- package/package.json +1 -1
- package/types/index.d.cts +3 -1
- package/types/index.d.ts +3 -1
package/package.json
CHANGED
package/types/index.d.cts
CHANGED
|
@@ -1133,7 +1133,9 @@ declare class ChainSignatureContract extends ChainSignatureContract$3 {
|
|
|
1133
1133
|
/**
|
|
1134
1134
|
* Generates the request ID for a signature request allowing to track the response.
|
|
1135
1135
|
*/
|
|
1136
|
-
getRequestId(args: SignArgs, options?: SignOptions['sign']
|
|
1136
|
+
getRequestId(args: SignArgs, options?: SignOptions['sign'] & {
|
|
1137
|
+
requesterAddress?: string;
|
|
1138
|
+
}): string;
|
|
1137
1139
|
}
|
|
1138
1140
|
|
|
1139
1141
|
declare const utils: {
|
package/types/index.d.ts
CHANGED
|
@@ -1133,7 +1133,9 @@ declare class ChainSignatureContract extends ChainSignatureContract$3 {
|
|
|
1133
1133
|
/**
|
|
1134
1134
|
* Generates the request ID for a signature request allowing to track the response.
|
|
1135
1135
|
*/
|
|
1136
|
-
getRequestId(args: SignArgs, options?: SignOptions['sign']
|
|
1136
|
+
getRequestId(args: SignArgs, options?: SignOptions['sign'] & {
|
|
1137
|
+
requesterAddress?: string;
|
|
1138
|
+
}): string;
|
|
1137
1139
|
}
|
|
1138
1140
|
|
|
1139
1141
|
declare const utils: {
|