Skip to content
This repository was archived by the owner on Mar 5, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/web3-common/src/web3_base_wallet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export abstract class Web3BaseWallet<T extends Web3BaseWalletAccount> extends Ar
}

public abstract create(numberOfAccounts: number): this;
public abstract add(account: T | string): boolean;
public abstract add(account: T | string): this;
public abstract get(addressOrIndex: string | number): T | undefined;
public abstract remove(addressOrIndex: string | number): boolean;
public abstract clear(): this;
Expand Down
Loading