Chuqs_emxtxPolygon is your
Updated 2024-12-04
99
1
2
3
4
5
6
7
8
9
10
11
12
13
›
⌄
SELECT
Destination_chain,
COUNT(distinct tx_hash) AS number_of_bridges,
sum (amount_usd) as Volume,
count (DISTINCT origin_from_address ) as NumberOfbridgers
FROM polygon.defi.ez_bridge_activity
WHERE block_timestamp >= '2024-01-01'
And token_symbol iN ('USDC', 'USDA', 'BUSD', 'USDT', 'TUSD', 'DAI', 'UST', 'USDD', 'FRAX', 'MAI')
GROUP BY 1
ORDER by 2 DESC
limit 10
QueryRunArchived: QueryRun has been archived