andreafiandroBridge comparison
Updated 2024-01-09
9
1
2
3
4
5
6
›
⌄
select date_trunc('day', block_timestamp) as day, destination_chain, sum(amount_usd) as tot_usd
from ethereum.defi.ez_bridge_activity
WHERE TOKEN_SYMBOL != '' AND amount_usd > 0 AND block_timestamp > '2023-10-01'
AND Destination_chain in ('near', 'solana', 'sui', 'osmosis', 'aptos', 'manta', 'telos','sei','injective')
GROUP BY destination_chain, day
ORDER BY tot_usd DESC
QueryRunArchived: QueryRun has been archived