CEX | 5IRE Receivers | volume (5IRE) | volume (USD) | Transfers Count | |
---|---|---|---|---|---|
1 | bybit | 734 | 19756516 | 4199286 | 1488 |
2 | bingx | 1 | 6526 | 2432 | 5 |
3 | mexc | 201 | 3539769 | 1141811 | 667 |
4 | gate.io | 96 | 3518856 | 1205090 | 228 |
Eman-Raz5IRE Transfer From CEX
Updated 2024-01-29
99
1
2
3
4
5
6
7
8
9
10
11
12
›
⌄
with tab1 as (select from_address, to_address, amount, AMOUNT_USD, tx_hash
from ethereum.core.ez_token_transfers
where contract_address=LOWER('0x3bd7d4F524D09F4e331577247A048D56e4b67a7F')),
tab2 as (select address, LABEL
from ethereum.core.dim_labels
where label_type='cex')
select LABEL AS CEX, COUNT(DISTINCT to_address) AS "5IRE Receivers", ROUND(sum(amount)) "volume (5IRE)", ROUND(sum(amount_USD)) "volume (USD)", COUNT(DISTINCT tx_hash) as "Transfers Count"
from tab1 left join tab2 on tab1.from_address=tab2.address
WHERE LABEL IS NOT NULL
group by 1
Last run: about 1 year agoAuto-refreshes every 24 hours
4
129B
72s