Interface TransferStatusResponse

interface TransferStatusResponse {
    destinationChainSymbol: ChainSymbol;
    destinationTokenAddress: string;
    receive?: BridgeTransaction;
    recipientAddress: string;
    responseTime?: number;
    send: BridgeTransaction;
    sendAmount: string;
    sendAmountFormatted: number;
    senderAddress: string;
    signaturesCount: number;
    signaturesNeeded: number;
    sourceChainSymbol: ChainSymbol;
    sourceTokenAddress: string;
    stableFee: string;
    stableFeeFormatted: number;
    txId: string;
}

Properties

destinationChainSymbol: ChainSymbol
destinationTokenAddress: string
recipientAddress: string
responseTime?: number
sendAmount: string
sendAmountFormatted: number
senderAddress: string
signaturesCount: number
signaturesNeeded: number
sourceChainSymbol: ChainSymbol
sourceTokenAddress: string
stableFee: string
stableFeeFormatted: number
txId: string