Interface ITransactionDataTransferOutgoing

Outgoing transfer transaction data. Transfer occurs when a transaction is issued between two UtxoContext (wallet account) instances.

interface ITransactionDataTransferOutgoing {
    acceptedDaaScore?: bigint;
    changeValue: bigint;
    fees: bigint;
    inputValue: bigint;
    outputValue: bigint;
    paymentValue: bigint;
    transaction: ITransaction;
    utxoEntries: IUtxoRecord[];
}

Properties

acceptedDaaScore?: bigint
changeValue: bigint
fees: bigint
inputValue: bigint
outputValue: bigint
paymentValue: bigint
transaction: ITransaction
utxoEntries: IUtxoRecord[]

Generated using TypeDoc