Documentation

    Interface UnsafeTransferSuiParams

    Create an unsigned transaction to send SUI coin object to a Sui address. The SUI object is also used as the gas object.

    interface UnsafeTransferSuiParams {
        amount?: null | string;
        gasBudget: string;
        recipient: string;
        signal?: AbortSignal;
        signer: string;
        suiObjectId: string;
    }
    Index

    Properties

    amount?: null | string

    the amount to be split out and transferred

    gasBudget: string

    the gas budget, the transaction will fail if the gas cost exceed the budget

    recipient: string

    the recipient's Sui address

    signal?: AbortSignal
    signer: string

    the transaction signer's Sui address

    suiObjectId: string

    the Sui coin object to be used in this transaction

    MMNEPVFCICPMFPCPTTAAATR