EVM Native Transfers
The EVM Native Transfers template tracks native token transfers, such as ETH, POL, BNB, AVAX, or other chain gas assets. Source:evm-native-transfers
Data Type
This template usesBlockWithTransactions. It reads stream.block.transactions.
Configuration
FROM_ADDRESS: Optional sender address filter.TO_ADDRESS: Optional recipient address filter.MIN_VALUE: Optional minimum native token amount.MAX_VALUE: Optional maximum native token amount.
Logic
The filter:- Skips zero-value transactions.
- Converts configured thresholds with
ethers.parseEther. - Compares transaction values as
BigInt. - Returns
nullwhen no transfer matches.
Output
When at least one transaction matches, the feed returns a result with the matching transfers insidenativeTransfers.
null and the feed does not emit a result.