T402 API Reference - v2.8.0
    Preparing search index...

    Type Alias ClientTonSigner

    ClientTonSigner - Used by t402 clients to sign Jetton transfer messages

    This interface represents a TON wallet that can:

    • Sign internal messages for Jetton transfers
    • Query its own seqno (sequence number)

    Implementations may include:

    • WalletContractV4 with private key
    • TonConnect wallet adapter
    • Hardware wallet integration
    type ClientTonSigner = {
        address: Address;
        signMessage(params: SignMessageParams): Promise<Cell>;
        getSeqno(): Promise<number>;
    }
    Index

    Properties

    Methods

    Properties

    address: Address

    The wallet address

    Methods

    • Get current seqno for the wallet Used for replay protection

      Returns Promise<number>

      Current sequence number