elsina2024-07-06: 24h total amount
Updated 2024-09-30
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
›
⌄
SELECT
COUNT(DISTINCT tx_hash) AS tx_count,
COUNT(DISTINCT trader) AS unique_trader_count,
COUNT(DISTINCT symbol) AS unique_token_count,
SUM(amount_usd) AS tx_vol,
tx_count / unique_trader_count AS average_transactions_per_user,
tx_vol / unique_trader_count AS average_volume_per_user,
tx_vol / tx_count AS average_volume_per_transaction,
sum(fee_amount) as protocol_fee
FROM
arbitrum.vertex.ez_perp_trades
WHERE
is_taker = true and
block_timestamp::date = current_date - interval '1 day'
QueryRunArchived: QueryRun has been archived