interface TxHistoryRecord {
    amount: string;
    commitmentTxid?: string;
    createdAt: string;
    isSettled: boolean;
    settledBy: string;
    type: IndexerTxType;
    virtualTxid?: string;
}

Properties

amount: string
commitmentTxid?: string
createdAt: string
isSettled: boolean
settledBy: string
virtualTxid?: string