OMPX JavaScript SDK
    Preparing search index...

    Interface MPPSessionTopUpPayload

    MPP session-intent topUp payload (per draft-tempo-session-00 §8.3.2). Client signs a Tempo T3 tx for topUp() and sends it to the server to broadcast.

    interface MPPSessionTopUpPayload {
        action: "topUp";
        additionalDeposit: string;
        channelId: `0x${string}`;
        transaction: string;
        type: "transaction";
    }
    Index

    Properties

    action: "topUp"
    additionalDeposit: string

    Additional deposit amount in base units (decimal string).

    channelId: `0x${string}`

    Channel identifier (bytes32 hex).

    transaction: string

    Hex-encoded RLP-serialized signed Tempo T3 transaction.

    type: "transaction"

    Always "transaction" for session topUp.