Skip to main content
V2 gateway requests require an API key. Set SQD_API_KEY in .env before running gateway-based examples, or pass apiKey: process.env.SQD_API_KEY in GatewaySettings.

addTransaction(options)

Get some or all transactions on the network. options has the following structure:
Data requests:
  • from and to: the sets of addresses of tx senders and receivers. Omit to subscribe to transactions from/to any address.
  • sighash: first four bytes of the Keccak hash (SHA3) of the canonical representation of the function signature. Omit to subscribe to any transaction.
  • type: transaction type numbers, such as 0, 1, 2, 3, or 4. Type 4 is used by EIP-7702 authorization-list transactions.
  • range: the range of blocks to consider.
Address and sighash string filters are normalized to lowercase by the processor. Enabling the stateDiffs, traces and/or logs flags will cause the processor to retrieve state diffs, traces and/or event logs that occurred as a result of each selected transaction. The data will be added to the appropriate iterables within the block data. Note that transactions can also be requested by addLog(), addStateDiff() and addTrace() as related data. Selection of the exact data to be retrieved for each transaction and the optional related data items is done with the setFields() method documented on the Field selection page. Some examples are available below.
Typescript ABI modules generated by squid-evm-typegen provide function sighashes as constants, e.g.

Examples

  1. Request all EVM calls to the contract 0x6a2d262D56735DbA19Dd70682B39F6bE9a931D98:
  1. Request all transactions matching sighash of transfer(address,uint256):
  1. Request all transfer(address,uint256) calls to the specified addresses, from block 6_000_000 onwards and fetch their inputs. Also retrieve all logs emitted by these calls.
  1. Mine all transactions to and from Vitalik Buterin’s address vitalik.eth. Fetch the involved addresses, ETH value and hash for each transaction. Get execution traces with the default fields for outgoing transactions.