Interface NftCheckoutPrimaryApiGetNftPrimaryTransactionsRequest

interface NftCheckoutPrimaryApiGetNftPrimaryTransactionsRequest {
    pageSize?: number;
    cursor?: string;
    orderBy?:
        | "status"
        | "amount"
        | "transaction_id"
        | "mint_id";
    direction?: string;
    transactionId?: string;
    contractAddress?: string;
    sellerWalletAddress?: string;
    userWalletAddress?: string;
    status?:
        | "created"
        | "pending"
        | "completed"
        | "failed"
        | "waitingPayment";
    provider?: "moonpay";
    mintId?: string;
}

Hierarchy

  • NftCheckoutPrimaryApiGetNftPrimaryTransactionsRequest
    • NftCheckoutPrimaryApiGetNftPrimaryTransactionsRequest

Properties

pageSize?: number

Page size of the result

NftCheckoutPrimaryApiGetNftPrimaryTransactions

cursor?: string

Cursor

NftCheckoutPrimaryApiGetNftPrimaryTransactions

orderBy?:
    | "status"
    | "amount"
    | "transaction_id"
    | "mint_id"

Property to sort by

NftCheckoutPrimaryApiGetNftPrimaryTransactions

direction?: string

Direction to sort (asc/desc)

NftCheckoutPrimaryApiGetNftPrimaryTransactions

transactionId?: string

Transaction id

NftCheckoutPrimaryApiGetNftPrimaryTransactions

contractAddress?: string

Contract address of the asset

NftCheckoutPrimaryApiGetNftPrimaryTransactions

sellerWalletAddress?: string

Ethereum address of the seller

NftCheckoutPrimaryApiGetNftPrimaryTransactions

userWalletAddress?: string

Ethereum address of the user who wants to create transaction

NftCheckoutPrimaryApiGetNftPrimaryTransactions

status?:
    | "created"
    | "pending"
    | "completed"
    | "failed"
    | "waitingPayment"

Transaction status

NftCheckoutPrimaryApiGetNftPrimaryTransactions

provider?: "moonpay"

Checkout provider name

NftCheckoutPrimaryApiGetNftPrimaryTransactions

mintId?: string

Minting transaction ID - see mintTokens response

NftCheckoutPrimaryApiGetNftPrimaryTransactions