Transactions
getReceipt
Returns the full transaction receipt including gas used, status, contract creation address, logs, and decoded event names. EVM only.
Decoded Events
TransferApprovalSwapSyncDepositWithdrawal
Parameters
| Name | Required | Description |
|---|---|---|
| chain | yes | Network slug |
| hash | yes | Transaction hash (0x + 64 hex) e.g. 0x5c504ed432cb51138bcf09aa5e8a410dd4a1e204ef84bfed1be16dfba1b22060 |
Response Fields
| Field | Type |
|---|---|
data | object |
chain | string |
transactionHash | string |
blockNumber | string |
from | string |
to | string |
status | string |
gasUsed | string |
effectiveGasPrice | string |
contractAddress | null |
logs | array |
decodedLogs | array |
Supported Networks
EthereumPolygonBNB ChainOptimismBaseAvalancheArbitrumGnosisMoonbeamLineaHyperliquid
getTransactionByHash
Get transactions by hash from multiple chains in a single call. Pass chain:txHash pairs.
Parameters
| Name | Required | Description |
|---|---|---|
| items | yes | Comma-separated chain:txHash pairs e.g. ethereum:0x5c504ed432cb51138bcf09aa5e8a410dd4a1e204ef84bfed1be16dfba1b22060 |
Response Fields
| Field | Type |
|---|---|
data | object |
count | integer |
results | object[] |
chain | string |
hash | string |
transaction | object |
blockNumber | string |
from | string |
to | string |
traceTransaction
Returns the execution trace of a transaction using debug_traceTransaction (Geth) or trace_transaction (Parity/Erigon). Shows internal calls, delegatecalls, and value transfers. Availability depends on the chain node configuration.
Parameters
| Name | Required | Description |
|---|---|---|
| chain | yes | Network slug |
| hash | yes | Transaction hash to trace e.g. 0x5c504ed432cb51138bcf09aa5e8a410dd4a1e204ef84bfed1be16dfba1b22060 |
Response Fields
| Field | Type |
|---|---|
data | object |
chain | string |
hash | string |
tracer | string |
trace | object |
type | string |
from | string |
to | string |
value | string |
gas | string |
gasUsed | string |
input | string |
output | string |
Supported Networks
EthereumPolygonBNB ChainOptimismBaseAvalancheArbitrumGnosisMoonbeamLineaHyperliquid