Date | Exchange | Values | |
---|---|---|---|
1 | 2024-01-28 00:00:00.000 | Binance | 19562841.2805953 |
2 | 2024-01-28 00:00:00.000 | Bitfinex | -29049.569 |
3 | 2024-01-28 00:00:00.000 | Bybit | -4208207.60965846 |
4 | 2024-01-28 00:00:00.000 | Gate.io | 1355832.7445596 |
5 | 2024-01-28 00:00:00.000 | KuCoin | 145238.184005795 |
6 | 2024-01-28 00:00:00.000 | OKX | -5608278.76534192 |
7 | 2024-01-27 00:00:00.000 | Binance | 14072894.4021104 |
8 | 2024-01-27 00:00:00.000 | Bitfinex | 1884.5147 |
9 | 2024-01-27 00:00:00.000 | Bybit | -8022462.00505657 |
10 | 2024-01-27 00:00:00.000 | Coinbase | 8.67099879 |
11 | 2024-01-27 00:00:00.000 | Gate.io | 2657530.50079023 |
12 | 2024-01-27 00:00:00.000 | KuCoin | -7366.248977139 |
13 | 2024-01-27 00:00:00.000 | OKX | 3572163.45429924 |
14 | 2024-01-26 00:00:00.000 | Binance | 20624998.5007203 |
15 | 2024-01-26 00:00:00.000 | Bitfinex | -166122.540196 |
16 | 2024-01-26 00:00:00.000 | Bybit | -7436706.59168971 |
17 | 2024-01-26 00:00:00.000 | Gate.io | 3106932.51209892 |
18 | 2024-01-26 00:00:00.000 | Kraken | 0 |
19 | 2024-01-26 00:00:00.000 | KuCoin | 59655.408467378 |
20 | 2024-01-26 00:00:00.000 | OKX | 9543150.07063099 |
alitaslimiArbitrum CEXs Net Flow Exchange Daily
Updated 2024-01-30
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
27
28
29
30
31
32
33
34
35
36
›
⌄
with
cexs as (
select
address,
case project_name
when 'binance' then 'Binance'
when 'bitfinex' then 'Bitfinex'
when 'bitstamp' then 'Bitstamp'
when 'bybit' then 'Bybit'
when 'coinbase' then 'Coinbase'
when 'gate.io' then 'Gate.io'
when 'gemini' then 'Gemini'
when 'huobi' then 'Huobi'
when 'kraken' then 'Kraken'
when 'kucoin' then 'KuCoin'
when 'okex' then 'OKX'
when 'okx' then 'OKX'
when 'mexc' then 'MEXC'
when 'mxc' then 'MEXC'
end as exchange
from
arbitrum.core.dim_labels
where
label_type = 'cex'
),
transfers_raw as (
select
block_timestamp,
tx_hash,
eth_from_address as sender,
eth_to_address as receiver,
amount_usd
from
arbitrum.core.ez_eth_transfers
where
block_timestamp::date >= (current_date - 10)
Last run: about 1 year agoAuto-refreshes every 6 hours
57
3KB
23s