@cfxlabsinc/b2b-services
    Preparing search index...
    type Transaction = {
        amount: BigNumber;
        bankId?: "dart" | "fib" | "burling" | "greendot" | "jiko";
        bankTransactionId?: string;
        card?: {
            id: string;
            merchantName?: string;
            transactionType?: "AUTHORIZATION" | "REVERSAL" | "ADJUSTMENT";
        };
        createdAt: Date;
        currency: string;
        entityId: string;
        id: string;
        method: | "DEPOSIT_BLOCKCHAIN"
        | "DEPOSIT_DIRECT"
        | "DEPOSIT_US_BANK_ACH"
        | "DEPOSIT_ACH_CREDIT"
        | "DEPOSIT_RTP"
        | "DEPOSIT_US_CASH"
        | "DEPOSIT_US_WIRE"
        | "DEPOSIT_SWIFT_WIRE"
        | "REDEMPTION"
        | "SWAP"
        | "FEE_TRANSFER"
        | "TRANSFER"
        | "TRANSFER_NETWORK"
        | "WITHDRAW_AF_BANK"
        | "WITHDRAW_AF_MOMO"
        | "WITHDRAW_MX_SPEI"
        | "WITHDRAW_SWIFT_WIRE"
        | "WITHDRAW_US_BANK_ACH"
        | "WITHDRAW_US_INSTANT"
        | "WITHDRAW_ACH_PULL"
        | "WITHDRAW_US_WIRE_DRAWDOWN"
        | "WITHDRAW_US_WIRE"
        | "WITHDRAW_BLOCKCHAIN"
        | "VIRTUAL_CARD"
        | "PHYSICAL_CARD";
        otherWallet?: {
            address: PublicKey;
            customer: { id: string; name: string };
        };
        paymentInstrumentId?: string;
        postBalance?: BigNumber;
        preBalance?: BigNumber;
        signature: string
        | null;
        status: "PROCESSING" | "COMPLETED" | "FAILED" | "RETURNED";
        subType?: "RETURN" | "FEE";
        type: "CREDIT" | "DEBIT";
        updatedAt: Date;
        walletAddress: PublicKey;
    }
    Index

    Properties

    amount: BigNumber

    Currency amount, including fees, that were eventually debited from/credited to the account

    bankId?: "dart" | "fib" | "burling" | "greendot" | "jiko"
    bankTransactionId?: string
    card?: {
        id: string;
        merchantName?: string;
        transactionType?: "AUTHORIZATION" | "REVERSAL" | "ADJUSTMENT";
    }

    Card for VIRTUAL_CARD, undefined otherwise.

    createdAt: Date
    currency: string

    ISO currency code

    entityId: string
    id: string

    Not necessarily unique, e.g. transfers will appear as credit and debit transactions with the same ID.

    method:
        | "DEPOSIT_BLOCKCHAIN"
        | "DEPOSIT_DIRECT"
        | "DEPOSIT_US_BANK_ACH"
        | "DEPOSIT_ACH_CREDIT"
        | "DEPOSIT_RTP"
        | "DEPOSIT_US_CASH"
        | "DEPOSIT_US_WIRE"
        | "DEPOSIT_SWIFT_WIRE"
        | "REDEMPTION"
        | "SWAP"
        | "FEE_TRANSFER"
        | "TRANSFER"
        | "TRANSFER_NETWORK"
        | "WITHDRAW_AF_BANK"
        | "WITHDRAW_AF_MOMO"
        | "WITHDRAW_MX_SPEI"
        | "WITHDRAW_SWIFT_WIRE"
        | "WITHDRAW_US_BANK_ACH"
        | "WITHDRAW_US_INSTANT"
        | "WITHDRAW_ACH_PULL"
        | "WITHDRAW_US_WIRE_DRAWDOWN"
        | "WITHDRAW_US_WIRE"
        | "WITHDRAW_BLOCKCHAIN"
        | "VIRTUAL_CARD"
        | "PHYSICAL_CARD"
    otherWallet?: { address: PublicKey; customer: { id: string; name: string } }

    The secondary wallet for transaction

    • Transfer (debit): the wallet that is credited
    • Transfer (credit): the wallet that is debited
    paymentInstrumentId?: string

    Source payment instrument ID for DEPOSIT_* and target payment instrument ID for WITHDRAW_*. Undefined otherwise.

    postBalance?: BigNumber

    MOVEUSD token balance after the on-chain transaction (from solana_account_transaction).

    preBalance?: BigNumber

    MOVEUSD token balance before the on-chain transaction (from solana_account_transaction).

    signature: string | null
    status: "PROCESSING" | "COMPLETED" | "FAILED" | "RETURNED"
    subType?: "RETURN" | "FEE"
    type: "CREDIT" | "DEBIT"
    updatedAt: Date
    walletAddress: PublicKey

    The primary wallet for transaction

    • Deposit: the wallet that is credited
    • Withdrawal, redemption: the wallet that is debited
    • Transfer (debit): the wallet that was debited
    • Transfer (credit): the wallet that was credited