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

    Interface ApiRewardsGetPointsBody

    Request body for fetching a user's total accumulated reward points. Uses a pre-signed message (bytes + signature) for authentication.

    interface ApiRewardsGetPointsBody {
        bytes: string;
        signature: string;
        walletAddress: string;
    }
    Index
    bytes: string

    The message bytes (base64 encoded) that the user previously signed. Can be reused from other signed messages (e.g., Terms and Conditions).

    signature: string

    The signature corresponding to the signed message bytes.

    walletAddress: string

    Sui wallet address to query total points for.