signet.js 0.0.12-beta.7 → 0.0.12-beta.9

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.12-beta.7",
3
+ "version": "0.0.12-beta.9",
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
@@ -1126,7 +1126,7 @@ declare class ChainSignatureContract extends ChainSignatureContract$3 {
1126
1126
  }): Promise<UncompressedPubKeySEC1>;
1127
1127
  getPublicKey(): Promise<UncompressedPubKeySEC1>;
1128
1128
  getSignRequestInstruction(args: SignArgs, options?: Pick<SignOptions, 'sign'> & {
1129
- remainingAccounts?: Array<AccountMeta>;
1129
+ remainingAccounts?: AccountMeta[];
1130
1130
  }): Promise<TransactionInstruction>;
1131
1131
  /**
1132
1132
  * Sends a transaction to the program to request a signature, then
@@ -1134,8 +1134,8 @@ declare class ChainSignatureContract extends ChainSignatureContract$3 {
1134
1134
  * parameters, it will throw an error.
1135
1135
  */
1136
1136
  sign(args: SignArgs, options?: Partial<SignOptions> & {
1137
- remainingAccounts?: Array<AccountMeta>;
1138
- remainingSigners?: Array<Signer>;
1137
+ remainingAccounts?: AccountMeta[];
1138
+ remainingSigners?: Signer[];
1139
1139
  }): Promise<RSVSignature>;
1140
1140
  private sendAndConfirmWithoutWebSocket;
1141
1141
  /**
package/types/index.d.ts CHANGED
@@ -1126,7 +1126,7 @@ declare class ChainSignatureContract extends ChainSignatureContract$3 {
1126
1126
  }): Promise<UncompressedPubKeySEC1>;
1127
1127
  getPublicKey(): Promise<UncompressedPubKeySEC1>;
1128
1128
  getSignRequestInstruction(args: SignArgs, options?: Pick<SignOptions, 'sign'> & {
1129
- remainingAccounts?: Array<AccountMeta>;
1129
+ remainingAccounts?: AccountMeta[];
1130
1130
  }): Promise<TransactionInstruction>;
1131
1131
  /**
1132
1132
  * Sends a transaction to the program to request a signature, then
@@ -1134,8 +1134,8 @@ declare class ChainSignatureContract extends ChainSignatureContract$3 {
1134
1134
  * parameters, it will throw an error.
1135
1135
  */
1136
1136
  sign(args: SignArgs, options?: Partial<SignOptions> & {
1137
- remainingAccounts?: Array<AccountMeta>;
1138
- remainingSigners?: Array<Signer>;
1137
+ remainingAccounts?: AccountMeta[];
1138
+ remainingSigners?: Signer[];
1139
1139
  }): Promise<RSVSignature>;
1140
1140
  private sendAndConfirmWithoutWebSocket;
1141
1141
  /**