signet.js 0.0.10-beta10 → 0.0.10-beta12
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 +6 -2
- package/types/index.d.ts +6 -2
package/package.json
CHANGED
package/types/index.d.cts
CHANGED
|
@@ -1128,12 +1128,16 @@ declare class ChainSignatureContract extends ChainSignatureContract$3 {
|
|
|
1128
1128
|
requestId: string;
|
|
1129
1129
|
payload: number[];
|
|
1130
1130
|
path: string;
|
|
1131
|
-
options?: RetryOptions
|
|
1131
|
+
options?: RetryOptions & {
|
|
1132
|
+
requesterAddress?: string;
|
|
1133
|
+
};
|
|
1132
1134
|
}): Promise<RSVSignature | SignatureErrorData$1 | undefined>;
|
|
1133
1135
|
/**
|
|
1134
1136
|
* Generates the request ID for a signature request allowing to track the response.
|
|
1135
1137
|
*/
|
|
1136
|
-
getRequestId(args: SignArgs, options?: SignOptions['sign']
|
|
1138
|
+
getRequestId(args: SignArgs, options?: SignOptions['sign'] & {
|
|
1139
|
+
requesterAddress?: string;
|
|
1140
|
+
}): string;
|
|
1137
1141
|
}
|
|
1138
1142
|
|
|
1139
1143
|
declare const utils: {
|
package/types/index.d.ts
CHANGED
|
@@ -1128,12 +1128,16 @@ declare class ChainSignatureContract extends ChainSignatureContract$3 {
|
|
|
1128
1128
|
requestId: string;
|
|
1129
1129
|
payload: number[];
|
|
1130
1130
|
path: string;
|
|
1131
|
-
options?: RetryOptions
|
|
1131
|
+
options?: RetryOptions & {
|
|
1132
|
+
requesterAddress?: string;
|
|
1133
|
+
};
|
|
1132
1134
|
}): Promise<RSVSignature | SignatureErrorData$1 | undefined>;
|
|
1133
1135
|
/**
|
|
1134
1136
|
* Generates the request ID for a signature request allowing to track the response.
|
|
1135
1137
|
*/
|
|
1136
|
-
getRequestId(args: SignArgs, options?: SignOptions['sign']
|
|
1138
|
+
getRequestId(args: SignArgs, options?: SignOptions['sign'] & {
|
|
1139
|
+
requesterAddress?: string;
|
|
1140
|
+
}): string;
|
|
1137
1141
|
}
|
|
1138
1142
|
|
|
1139
1143
|
declare const utils: {
|