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

    Inputs for building a transaction that mixes two SuiFrens.

    interface ApiMixSuiFrensBody {
        baseFee: bigint;
        isSponsoredTx?: boolean;
        suiFrenParentOne: { mixFee: bigint | undefined; objectId: string };
        suiFrenParentTwo: { mixFee: bigint | undefined; objectId: string };
        suiFrenType: string;
        walletAddress: string;
    }
    Index
    baseFee: bigint

    Base mix fee in the payment coin's smallest unit.

    isSponsoredTx?: boolean

    Whether coin selection should prepare a sponsored transaction.

    suiFrenParentOne: { mixFee: bigint | undefined; objectId: string }

    First parent object and its optional staked mix fee.

    Type Declaration

    • mixFee: bigint | undefined

      Staked fee in smallest units, or undefined for an owned parent.

    • objectId: string

      ID of the first parent SuiFren.

    suiFrenParentTwo: { mixFee: bigint | undefined; objectId: string }

    Second parent object and its optional staked mix fee.

    Type Declaration

    • mixFee: bigint | undefined

      Staked fee in smallest units, or undefined for an owned parent.

    • objectId: string

      ID of the second parent SuiFren.

    suiFrenType: string

    Generic Move type argument shared by both parent objects.

    walletAddress: string

    Transaction sender and wallet that pays the calculated total fee.