LedgerOperations
[LedgerOperations] represents the ledger operations performed by the transaction It includes:
- Transaction movements: assets transfers
- Unspent outputs: remaining unspent outputs
- Fee: transaction fee
type LedgerOperations {
consumedInputs: [ConsumedInputs]
fee: Int
transactionMovements: [TransactionMovement]
unspentOutputs: [UnspentOutput]
}
Fields
LedgerOperations.consumedInputs
● [ConsumedInputs]
list object
LedgerOperations.fee
● Int
scalar
LedgerOperations.transactionMovements
● [TransactionMovement]
list object
LedgerOperations.unspentOutputs
● [UnspentOutput]
list object
Member of
ValidationStamp
object