dag_getTransaction
Name
Type
Description
type Transaction = {
hash: String<Hash> // Hash of the transaction
amount: Number // Amount sent in DATUM
source: Address // Address of the sender
destination: Address // Address of the receiver
fee: Number // Fee sent in DATUM
parent: {
hash: String<Hash> // Hash of the parent transaction
ordinal: Number // Ordinal of the parent transaction
}
blockHash: String<Hash> // Hash of the block
snapshotHash: String<Hash> // Hash of the snapshot
snapshotOrdinal: Number // Ordinal of the snapshot
transactionOriginal: {
value: {
source: Address // Address of the sender
destination: Address // Address of the receiver
amount: Number // Amount sent in DATUM
fee: Number // Fee sent in DATUM
parent: {
hash: String<Hash> // Hash of the parent transaction
ordinal: Number // Ordinal of the parent transaction
}
salt: BigNumber | String // Salt
}
proofs: Proof[] // Proofs
}
timestamp: String // Timestamp
}Last updated
Was this helpful?