signet.js 0.0.10-beta11 → 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 +1 -1
- package/browser/index.browser.cjs.map +1 -1
- package/browser/index.browser.js +1 -1
- package/browser/index.browser.js.map +1 -1
- package/node/index.node.cjs +1 -1
- package/node/index.node.cjs.map +1 -1
- package/node/index.node.js +1 -1
- 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
|
@@ -1128,7 +1128,9 @@ 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.
|
package/types/index.d.ts
CHANGED
|
@@ -1128,7 +1128,9 @@ 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.
|