adriaparcerisasstevmos or evmos swaps 2
Updated 2023-02-17
99
1
2
3
4
5
6
7
8
9
10
11
12
13
›
⌄
SELECT
trunc(block_timestamp,'hour') as date,
COUNT(DISTINCT tx_id) as transfers,
sum(transfers) over (order by date) as cum_transfers,
sum(amount/power(10, 18)) as amounts,
sum(amounts) over (order by date) as cum_volume,
avg(amount/power(10, 18)) as avg_transfer_amount
FROM osmosis.core.fact_transfers x
join osmosis.core.dim_labels y on x.currency=y.address
WHERE SENDER LIKE 'osmo%'
AND not receiver LIKE 'osmo%' and project_name='EVMOS' and block_timestamp>='2023-02-13'
GROUP BY 1
Run a query to Download Data