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

    Interface ApiUserDataCreateUserBody

    Request body for creating or updating a wallet's public key in Aftermath's backend. The bytes and signature fields carry proof of wallet ownership.

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

    Serialized bytes of the message that the user signed. For the current terms flow, these are the UTF-8 bytes of Aftermath Terms and Conditions.

    signature: string

    Signature created by signing bytes.

    walletAddress: string

    The user's Sui wallet address.