emferonsFlows - Central Exchanges Token Level copy
Updated 2025-03-07
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
›
⌄
-- forked from charliemarketplace / Flows - Central Exchanges Token Level @ https://flipsidecrypto.xyz/charliemarketplace/q/Iw48CWmRWu7S/flows---central-exchanges-token-level
-- forked from Flows - Central Exchanges @ https://flipsidecrypto.xyz/studio/queries/c58ea5d6-743c-4605-92e9-b10c9af041c3
select date_trunc('month', day_) as month_,
symbol,
sum(inbound_volume_usd) as inbound_volume_usd,
sum(outbound_volume_usd) as outbound_volume_usd,
sum(net_volume_usd) as net_volume_usd,
sum(total_volume_usd) as total_volume_usd
from
datascience_public_misc.near_analytics.central_exchange_flows_token_lvl
where day_ >= '2024-01-01'
and symbol IN ('USDt','wNEAR','USDC')
group by month_, symbol
order by month_ asc, symbol asc
QueryRunArchived: QueryRun has been archived