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
| Field | Type | Description |
|---|---|---|
from_wallet | wallet | The source wallet address |
to_wallet | wallet | The destination wallet address |
amount | amount | The amount transferred |
gas_amount | amount | The amount of gas used for the transaction |
transaction_hash | string | The blockchain transaction hash |
Token Object
The token field contains information about the asset transferred:
| Field | Type | Description |
|---|---|---|
token.id | token | Unique identifier of the token |
token.symbol | token_symbol | Symbol of the token |
token.address | string | Contract address (for ERC-20) |
Example Usage
{
"hook_type": "evm_wallet.transfer",
"data": {
"from_wallet": "0x123...",
"to_wallet": "0x456...",
"amount": "10.5",
"token": { "symbol": "ETH" }
}
}