Skip to main content
The crosschain.agents.x402_transfers table contains individual x402 protocol token transfer events across all supported chains. This is a union of chain-specific transfer models.

Table Columns

ColumnDescription
chainNetwork name
facilitator_idUnique facilitator identifier
facilitator_nameDisplay name of the facilitator
block_timestampWhen the transfer occurred
token_addressToken contract/mint address
token_nameName of the token
token_symbolSymbol of the token
raw_amountRaw transfer amount before decimal adjustment
amountDecimal-adjusted transfer amount
usd_amountUSD value of the transfer
usd_exchange_rateExchange rate used for USD conversion
from_addressToken sender address (buyer)
to_addressToken recipient address (seller)
transaction_from_addressTransaction signer (facilitator address)
transaction_to_addressTransaction recipient
transaction_hashTransaction hash/signature
log_indexLog index (NULL for Solana)
block_numberBlock number/height
block_hashBlock hash
unique_idUnique identifier for the transfer
_created_atRecord creation timestamp
_updated_atRecord update timestamp

Sample Query

SELECT 
  chain,
  block_timestamp,
  facilitator_name,
  from_address AS buyer,
  to_address AS seller,
  usd_amount
FROM crosschain.agents.x402_transfers
ORDER BY block_timestamp DESC
LIMIT 100;