Documentation
    Preparing search index...

    Interface Account

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

    Properties

    address: string

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

    chain: CHAIN

    User's selected chain.

    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.