HIP-3 upgrade support
The indexer now tracks two new L1 actions tied to the HIP-3 upgrade:
agentSendAsset— agent transfers between dexes for the same user.hip3LiquidatorTransfer— deposit/withdraw of principal on the backstop of a HIP-3 dex.
New endpoints
All grouped under/evm/hip3/backstop/*. The backstop address for a dex is 0x4000…00 + dex_index.Principal flows — built from local hip3LiquidatorTransfer rows:GET /evm/hip3/backstop/transfers— Filterable list of backstop principal transfers (filters:dex,signer,is_deposit, time range).GET /evm/hip3/backstop/transfers-summary— Per-dex aggregate:total_deposited_usdc,total_withdrawn_usdc,net_principal_usdc,unique_signers.
GET /evm/hip3/backstop/health— Health overview of every observed HIP-3 backstop. Returns one row per dex (combined principal + fill counters, last/first fill, fees paid, active coins).GET /evm/hip3/backstop/{dex}/health— Same payload for a single dex. Returns404if no backstop activity has ever been observed for that dex.GET /evm/hip3/backstop/{dex}/fills— Paginated stream of raw fills absorbed by the backstop. Filters:coin,side, time range.
Updated endpoints
GET /evm/ledger/transfers— Response extended withsource_dexanddestination_dex(populated foragentSendAsset).action_type=agentSendAssetis now a supported filter value.GET /evm/user/{address}/ledger-events— Newagent_sendevent type, exposingsource_dexanddestination_dex.