Skip to main content

EVM Wallet Transfer

Events related to transfers involving EVM-compatible wallets.

evm_wallet.transfer

Triggered when a transfer (ETH or ERC-20 token) is detected on a monitored EVM wallet.

Available Data

FieldTypeDescription
from_walletwalletThe source wallet address
to_walletwalletThe destination wallet address
amountamountThe amount transferred
gas_amountamountThe amount of gas used for the transaction
transaction_hashstringThe blockchain transaction hash

Token Object

The token field contains information about the asset transferred:

FieldTypeDescription
token.idtokenUnique identifier of the token
token.symboltoken_symbolSymbol of the token
token.addressstringContract address (for ERC-20)

Example Usage

{
"hook_type": "evm_wallet.transfer",
"data": {
"from_wallet": "0x123...",
"to_wallet": "0x456...",
"amount": "10.5",
"token": { "symbol": "ETH" }
}
}