interface Account {
    address: string;
    chain: CHAIN;
    publicKey?: string;
    walletStateInit: string;
}

Properties

address: string

User's address in "hex" format: ":".

chain: CHAIN

User's selected chain. MAINNET = "-239", TESTNET = "-3"

publicKey?: string

Hex string without 0x prefix.

walletStateInit: string

Base64 (not url safe) encoded wallet contract stateInit. Can be used to get user's public key from the stateInit if the wallet contract doesn't support corresponding get method.