signet.js 0.0.10-beta7 → 0.0.10-beta8

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-beta7",
3
+ "version": "0.0.10-beta8",
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
@@ -1129,14 +1129,6 @@ declare class ChainSignatureContract extends ChainSignatureContract$3 {
1129
1129
  * Generates the request ID for a signature request allowing to track the response.
1130
1130
  */
1131
1131
  getRequestId(args: SignArgs, options?: SignOptions['sign']): string;
1132
- getErrorFromEvents(requestId: string): Promise<SignatureErrorData$1 | undefined>;
1133
- /**
1134
- * Searches for SignatureResponded events that match the given requestId.
1135
- *
1136
- * @param requestId - The identifier for the signature request
1137
- * @returns The RSV signature if found, undefined otherwise
1138
- */
1139
- getSignatureFromEvents(requestId: string): Promise<RSVSignature | undefined>;
1140
1132
  }
1141
1133
 
1142
1134
  declare const utils: {
package/types/index.d.ts CHANGED
@@ -1129,14 +1129,6 @@ declare class ChainSignatureContract extends ChainSignatureContract$3 {
1129
1129
  * Generates the request ID for a signature request allowing to track the response.
1130
1130
  */
1131
1131
  getRequestId(args: SignArgs, options?: SignOptions['sign']): string;
1132
- getErrorFromEvents(requestId: string): Promise<SignatureErrorData$1 | undefined>;
1133
- /**
1134
- * Searches for SignatureResponded events that match the given requestId.
1135
- *
1136
- * @param requestId - The identifier for the signature request
1137
- * @returns The RSV signature if found, undefined otherwise
1138
- */
1139
- getSignatureFromEvents(requestId: string): Promise<RSVSignature | undefined>;
1140
1132
  }
1141
1133
 
1142
1134
  declare const utils: {