UNPKG

@alex-sudo/cosmos-keys

Version:

js version of cosmos wallet signer and address generation

7 lines (6 loc) 472 B
import { Wallet, WalletIndex } from './types'; export declare function getStoredWallet(address: string, password: string): Wallet; export declare function storeWallet(wallet: Wallet, name: string, password: string, network: string): void; export declare function removeWallet(address: string, password: string): void; export declare function testPassword(address: string, password: string): void; export declare function getWalletIndex(enriched?: Boolean): WalletIndex[];