chain/getTransaction
Gets a transaction from a block hash and transaction hash
Request
{
blockHash: string;
transactionHash: string;
}
Response
{
fee: string
expiration: number
noteSize: number
notesCount: number
spendsCount: number
signature: string
notes: Array<{
hash: string
serialized: string
}>
spends: Array<{
nullifier: string
commitment: string
size: number
}>
mints: Array<{
assetId: string
value: string
}>
burns: Array<{
assetId: string
value: string
}>
notesEncrypted: string[] // Deprecated: use `notes` instead
}