@cfxlabsinc/b2b-services
    Preparing search index...

    Service-level projection of an escrow transfer request row. Always carries external ids (strings) — never the internal numeric FKs.

    Party identifiers are exposed as senderId / recipientId (the API vocabulary). The underlying DB columns are int FKs (sender_identity_id / recipient_identity_id) to identity; the joins below resolve them to the identity's external id (id_…), the single translation point.

    type EscrowTransferRequest = {
        amount: BigNumber;
        createdAt: Date;
        customerId: string;
        escrowTransferId: string | null;
        id: string;
        message: string | null;
        recipientId: string | null;
        recipientPhone: string;
        senderId: string;
        senderPhone: string;
        status: EscrowTransferRequestStatus;
        tokenSymbol: string;
        updatedAt: Date;
    }
    Index

    Properties

    amount: BigNumber
    createdAt: Date
    customerId: string
    escrowTransferId: string | null
    id: string
    message: string | null
    recipientId: string | null
    recipientPhone: string
    senderId: string
    senderPhone: string
    tokenSymbol: string
    updatedAt: Date