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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "signet.js",
3
- "version": "0.0.10-beta10",
3
+ "version": "0.0.10-beta11",
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
@@ -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']): string;
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']): string;
1136
+ getRequestId(args: SignArgs, options?: SignOptions['sign'] & {
1137
+ requesterAddress?: string;
1138
+ }): string;
1137
1139
  }
1138
1140
 
1139
1141
  declare const utils: {