interface WalletContextState {
    activeAccount?: null | WalletInstance;
    activeAccountIndex?: number;
    provided: boolean;
    rootWallet?: null | WalletInstance;
    setActiveAccountIndex?: Dispatch<number>;
}

Hierarchy (view full)

Properties

activeAccount?: null | WalletInstance
activeAccountIndex?: number
provided: boolean
rootWallet?: null | WalletInstance
setActiveAccountIndex?: Dispatch<number>