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

    Type Alias ExactDirectAptosPayload

    Exact-direct payment payload for Aptos Client executes the transfer and provides transaction hash as proof

    type ExactDirectAptosPayload = {
        txHash: string;
        from: string;
        to: string;
        amount: string;
        metadataAddress: string;
        version?: string;
    }
    Index

    Properties

    txHash: string

    Transaction hash (hex string with 0x prefix)

    from: string

    Sender's Aptos address

    to: string

    Recipient's Aptos address

    amount: string

    Amount transferred (in smallest unit)

    metadataAddress: string

    Fungible Asset metadata address

    version?: string

    Transaction version (for verification)