Chain | Average | Median | |
---|---|---|---|
1 | Ethereum | 3777.1 | 8.9 |
2 | Base | 1555.1 | 2 |
3 | BSC | 877.5 | 1 |
4 | Optimism | 697.2 | 0.9 |
5 | Blast | 546.4 | 0.6 |
6 | Arbitrum | 318.3 | 0.8 |
7 | Gnosis | 316.9 | 0.1 |
8 | Avalanche | 300.1 | 0.2 |
9 | Polygon | 273.9 | 0.3 |
10 | Mantle | 91.7 | 0.2 |
Eman-Raz33- Average/Median Balance of Squid Users Across Different Chains
Updated 2025-03-09
999
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 overview_ as (with arbitrum_ as (WITH OVERVIEW AS (with tab5 as (
with tab1 as (select distinct data:call:transaction:from as user
from axelar.axelscan.fact_gmp
where data:approved:returnValues:contractAddress in
('0xce16F69375520ab01377ce7B88f5BA8C48F8D666',
'0x492751eC3c57141deb205eC2da8bFcb410738630',
'0xDC3D8e1Abe590BCa428a8a2FC4CfDbD1AcF57Bd9')
and status = 'executed'
and event = 'ContractCallWithToken'
and simplified_status = 'received'
and IS_CALL_FROM_RELAYER = 'false'
and IS_INVALID_CALL = 'false'
and IS_TWO_WAY = 'false'
and gas_status = 'gas_paid_enough_gas'
and (created_at::date >= '{{Start_Date}}' and created_at::date <= '{{End_Date}}')
and data:value is not null),
tab4 as (
with tab3 as (
with tab2 as (
select from_address as user, -amount as amount, contract_address, symbol
from arbitrum.core.ez_token_transfers
union all
select to_address as user, amount, contract_address, symbol
from arbitrum.core.ez_token_transfers)
select user, sum(amount) as balance, symbol, contract_address
from tab2
group by 1,3,4)
select user, balance, symbol, contract_address
from tab3
where balance>0 and symbol is not NULL)
select tab1.user as squid_user, balance, symbol, contract_address
Last run: about 2 months ago
10
212B
431s