signet.js 0.0.10-beta13 → 0.0.10-beta14
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
package/types/index.d.cts
CHANGED
|
@@ -1113,7 +1113,7 @@ declare class ChainSignatureContract extends ChainSignatureContract$3 {
|
|
|
1113
1113
|
predecessor: string;
|
|
1114
1114
|
}): Promise<UncompressedPubKeySEC1>;
|
|
1115
1115
|
getPublicKey(): Promise<UncompressedPubKeySEC1>;
|
|
1116
|
-
getSignRequestInstruction(args: SignArgs, options?: SignOptions & {
|
|
1116
|
+
getSignRequestInstruction(args: SignArgs, options?: Partial<SignOptions> & {
|
|
1117
1117
|
remainingAccounts?: Array<AccountMeta>;
|
|
1118
1118
|
}): Promise<TransactionInstruction>;
|
|
1119
1119
|
/**
|
|
@@ -1121,7 +1121,7 @@ declare class ChainSignatureContract extends ChainSignatureContract$3 {
|
|
|
1121
1121
|
* polls for the signature result. If the signature is not found within the retry
|
|
1122
1122
|
* parameters, it will throw an error.
|
|
1123
1123
|
*/
|
|
1124
|
-
sign(args: SignArgs, options?: SignOptions & {
|
|
1124
|
+
sign(args: SignArgs, options?: Partial<SignOptions> & {
|
|
1125
1125
|
remainingAccounts?: Array<AccountMeta>;
|
|
1126
1126
|
}): Promise<RSVSignature>;
|
|
1127
1127
|
/**
|
package/types/index.d.ts
CHANGED
|
@@ -1113,7 +1113,7 @@ declare class ChainSignatureContract extends ChainSignatureContract$3 {
|
|
|
1113
1113
|
predecessor: string;
|
|
1114
1114
|
}): Promise<UncompressedPubKeySEC1>;
|
|
1115
1115
|
getPublicKey(): Promise<UncompressedPubKeySEC1>;
|
|
1116
|
-
getSignRequestInstruction(args: SignArgs, options?: SignOptions & {
|
|
1116
|
+
getSignRequestInstruction(args: SignArgs, options?: Partial<SignOptions> & {
|
|
1117
1117
|
remainingAccounts?: Array<AccountMeta>;
|
|
1118
1118
|
}): Promise<TransactionInstruction>;
|
|
1119
1119
|
/**
|
|
@@ -1121,7 +1121,7 @@ declare class ChainSignatureContract extends ChainSignatureContract$3 {
|
|
|
1121
1121
|
* polls for the signature result. If the signature is not found within the retry
|
|
1122
1122
|
* parameters, it will throw an error.
|
|
1123
1123
|
*/
|
|
1124
|
-
sign(args: SignArgs, options?: SignOptions & {
|
|
1124
|
+
sign(args: SignArgs, options?: Partial<SignOptions> & {
|
|
1125
1125
|
remainingAccounts?: Array<AccountMeta>;
|
|
1126
1126
|
}): Promise<RSVSignature>;
|
|
1127
1127
|
/**
|