aftermath-ts-sdk - v3.3.3
    Preparing search index...

    Interface ApiRewardsClaimRequestTxBody

    Request body for claiming rewards for a user's wallet address.

    interface ApiRewardsClaimRequestTxBody {
        coinTypes?: string[];
        recipientAddress?: string;
        txKind?: string;
        walletAddress: string;
    }
    Index
    coinTypes?: string[]

    Optional list of coin types to claim. If omitted, claims all available rewards.

    recipientAddress?: string

    Optional recipient address for the claimed rewards. Defaults to walletAddress if not provided.

    txKind?: string

    Optional serialized (base64) Sui TransactionKind to extend.

    walletAddress: string

    The user's Sui wallet address.