@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: string | number): Promise<void>;
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alephium/web3",
3
- "version": "0.2.0-rc.23",
3
+ "version": "0.2.0-rc.24",
4
4
  "description": "A JS/TS library to interact with the Alephium platform",
5
5
  "license": "GPL",
6
6
  "main": "dist/src/index.js",
@@ -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: string | number): Promise<void>
181
+ abstract setActiveAccount(input: unknown): Promise<void>
182
182
 
183
183
  abstract getActiveAccount(): Promise<Account>
184
184