signet.js 0.0.10-beta → 0.0.10-beta1
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 +5 -0
- package/types/index.d.ts +5 -0
package/package.json
CHANGED
package/types/index.d.cts
CHANGED
|
@@ -993,6 +993,11 @@ declare class ChainSignatureContract extends ChainSignatureContract$2 {
|
|
|
993
993
|
fromBlock: bigint;
|
|
994
994
|
options?: RetryOptions;
|
|
995
995
|
}): Promise<RSVSignature | SignatureErrorData | undefined>;
|
|
996
|
+
getCallData(args: SignArgs, options?: SignOptions['sign']): Promise<{
|
|
997
|
+
target: Hex;
|
|
998
|
+
data: Hex;
|
|
999
|
+
value: bigint;
|
|
1000
|
+
}>;
|
|
996
1001
|
/**
|
|
997
1002
|
* Generates the request ID for a signature request allowing to track the response.
|
|
998
1003
|
*
|
package/types/index.d.ts
CHANGED
|
@@ -993,6 +993,11 @@ declare class ChainSignatureContract extends ChainSignatureContract$2 {
|
|
|
993
993
|
fromBlock: bigint;
|
|
994
994
|
options?: RetryOptions;
|
|
995
995
|
}): Promise<RSVSignature | SignatureErrorData | undefined>;
|
|
996
|
+
getCallData(args: SignArgs, options?: SignOptions['sign']): Promise<{
|
|
997
|
+
target: Hex;
|
|
998
|
+
data: Hex;
|
|
999
|
+
value: bigint;
|
|
1000
|
+
}>;
|
|
996
1001
|
/**
|
|
997
1002
|
* Generates the request ID for a signature request allowing to track the response.
|
|
998
1003
|
*
|