Documentation
    Preparing search index...

    Interface TonAddressItemReply

    Reply for the ton_addr connect item — the connected account.

    publicKey and walletStateInit are untrusted hints. Verifiers MUST re-derive the public key from walletStateInit (or via on-chain get_public_key) and check that contractAddress(stateInit) === address before trusting it.

    interface TonAddressItemReply {
        address: string;
        name: "ton_addr";
        network: string;
        publicKey: string;
        walletStateInit: string;
    }
    Index

    Properties

    address: string

    Raw TON address (<workchain>:<hex>).

    name: "ton_addr"
    network: string

    TON network the account belongs to.

    publicKey: string

    public key as a hex string (without 0x). Untrusted.

    walletStateInit: string

    Base64 BoC of the wallet contract StateInit.