@alephium/web3 0.2.0-rc.23 → 0.2.0-rc.24
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.
|
@@ -112,7 +112,7 @@ export declare abstract class SignerWithNodeProvider implements SignerProvider {
|
|
|
112
112
|
getAccount(signerAddress: string): Promise<Account>;
|
|
113
113
|
abstract setActiveAccount(addressIndex: number): Promise<void>;
|
|
114
114
|
abstract setActiveAccount(address: string): Promise<void>;
|
|
115
|
-
abstract setActiveAccount(input:
|
|
115
|
+
abstract setActiveAccount(input: unknown): Promise<void>;
|
|
116
116
|
abstract getActiveAccount(): Promise<Account>;
|
|
117
117
|
constructor(alwaysSubmitTx: boolean);
|
|
118
118
|
submitTransaction(unsignedTx: string, signerAddress?: string): Promise<SubmissionResult>;
|
package/package.json
CHANGED
package/src/signer/signer.ts
CHANGED
|
@@ -178,7 +178,7 @@ export abstract class SignerWithNodeProvider implements SignerProvider {
|
|
|
178
178
|
|
|
179
179
|
abstract setActiveAccount(addressIndex: number): Promise<void>
|
|
180
180
|
abstract setActiveAccount(address: string): Promise<void>
|
|
181
|
-
abstract setActiveAccount(input:
|
|
181
|
+
abstract setActiveAccount(input: unknown): Promise<void>
|
|
182
182
|
|
|
183
183
|
abstract getActiveAccount(): Promise<Account>
|
|
184
184
|
|