Get EVM Transactions logo

Catalog action Blockchain Data

Retrieve raw blockchain transactions for any EVM address (wallet or contract) via Sim Dune API with optional ABI decoding. Returns complete tx data: hash, block, timestamp, addresses, value, gas, input data, and logs. Set decode=true for human-readable function calls and events. Most recent first. Pagination: max 100/request, use nextOffset for older txs. Ideal for: transaction analysis, smart contract debugging, event extraction, building block explorers.

At a Glance

FieldValue
Action IDsim-dune-get-evm-transactions
CategoryBlockchain Data
ConnectorNot required
Requires gasNo
Funds movementNone declared
Tagssim-dune, blockchain, wallet, transactions, raw, decoded, logs, events, abi, debug, explorer, read

Payload Schema

FieldTypeRequiredDescription
addressstringYesEVM address (wallet or contract) to get transactions for
chainIdsarrayNoChain IDs to query (optional, defaults to all supported chains)
decodebooleanNoInclude decoded function calls and event logs (default: false)
limitnumberNoMaximum number of transactions to return (default: 100, max: 100)
offsetstringNoCursor for pagination (use nextOffset from previous response)

Result Schema

FieldTypeRequiredDescription
addressstringYesEVM address queried
transactionsarrayYesRaw transaction data
hasMorebooleanYesWhether there are more results available
nextOffsetstringNoCursor for next page of results
requestTimestringNoRequest timestamp (ISO string)
responseTimestringNoResponse timestamp (ISO string)
warningsarrayNoNon-fatal warnings
errorsobjectNoError details (if request failed partially)

Examples

json
{ "type": "sim-dune-get-evm-transactions", "payload": { "address": "0x0000000000000000000000000000000000000000" }, "children": []}

Payload fields can use workflow expressions such as {{$trigger.body.amount}}, {{$nodes.fetch.result.price}}, and {{$props.asset}} when the value should come from a trigger, prior node, or reusable workflow prop.

Ask a question... ⌘I