CHAIN | TOTAL_VOLUME | |
---|---|---|
1 | Avalanche | 747385531.358461 |
2 | Ethereum | 173303963.81087 |
3 | Polygon | 564560539.220072 |
permaryTransfer volume
Updated 2025-03-17
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
›
⌄
SELECT
'Avalanche' AS chain,
SUM(amount_usd) AS total_volume
FROM avalanche.core.ez_token_transfers
WHERE contract_address = LOWER('0xb2F85b7AB3c2b6f62DF06dE6aE7D09c010a5096E')
AND block_timestamp >= '2024-09-01'
UNION ALL
SELECT
'Ethereum' AS chain,
SUM(amount_usd) AS total_volume
FROM ethereum.core.ez_token_transfers
WHERE contract_address = LOWER('0x70e8dE73cE538DA2bEEd35d14187F6959a8ecA96')
AND block_timestamp >= '2024-09-01'
UNION ALL
SELECT
'Polygon' AS chain,
SUM(amount_usd) AS total_volume
FROM polygon.core.ez_token_transfers
WHERE contract_address = LOWER('0xDC3326e71D45186F113a2F448984CA0e8D201995')
AND block_timestamp >= '2024-09-01';
Last run: about 1 month ago
3
90B
6s