WALLET | CHAIN | AXL_BALANCE | |
---|---|---|---|
1 | magpie wom | Arbitrum | 1824.331919 |
2 | gate.io | Arbitrum | 57760.236074 |
3 | kyberswap | Arbitrum | 9219.498922 |
4 | bybit | Arbitrum | 99.897393 |
5 | paraswap | Arbitrum | 2.176934 |
6 | rainbow | Arbitrum | 0.62809 |
7 | uniswap | Arbitrum | 3.531141 |
8 | zerion | Arbitrum | 1.766138 |
9 | bitget | Arbitrum | 283626.224108 |
10 | other | Arbitrum | 267551.768476 |
Pine Analyticsaxl final 6 copy copy copy copy copy
Updated 2024-02-11
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
›
⌄
-- forked from axl final 6 copy copy copy copy @ https://flipsidecrypto.xyz/edit/queries/0660ce4a-4a83-4bbf-8ef4-f10c79a3265e
-- forked from axl final 6 copy copy copy @ https://flipsidecrypto.xyz/edit/queries/34514a9d-1e52-4eac-bf1b-3b5783e8d42d
with tab2 as (
SELECT
block_timestamp,
tx_hash,
user,
sum(CASE when flow like 'out' then -1 * amount else amount end) as net_flow
FROM (
SELECT
block_timestamp,
tx_hash,
from_address as user,
'out' as flow,
RAW_AMOUNT_PRECISE::NUMBER(38, 0) as AMOUNT
from arbitrum.core.fact_token_transfers
WHERE contract_address LIKE lower('0x23ee2343B892b1BB63503a4FAbc840E0e2C6810f')
UNION
SELECT
block_timestamp,
tx_hash,
to_address as user,
'in' as flow,
RAW_AMOUNT_PRECISE::NUMBER(38, 0) as AMOUNT
from arbitrum.core.fact_token_transfers
WHERE contract_address LIKE lower('0x23ee2343B892b1BB63503a4FAbc840E0e2C6810f')
)
GROUP BY 1,2,3
), tab3 as (
SELECT
user,
Last run: about 1 year agoAuto-refreshes every 6 hours
10
341B
102s