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

    Interface ApiCreateAuthAccountBody

    The request body for creating a new auth account, typically reserved for admin usage. The admin signs a JSON containing an "AccountCreate" method plus desired sub-account data.

    interface ApiCreateAuthAccountBody {
        serializedJson: string;
        signature: string;
        walletAddress: string;
    }
    Index
    serializedJson: string

    The JSON string that was signed, containing the method and sub-account details.

    signature: string

    The signature of the serialized JSON data, from the admin's private key.

    walletAddress: string

    The admin's Sui address, zero-padded if necessary.