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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "signet.js",
3
- "version": "0.0.10-beta",
3
+ "version": "0.0.10-beta1",
4
4
  "description": "A TypeScript library for handling multi-chain transactions and signatures using Signet MPC",
5
5
  "type": "module",
6
6
  "exports": {
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
  *