Flipside TeamOverall
Updated 2024-09-26
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
›
⌄
SELECT
COUNT(*) AS total_transactions,
SUM(value) AS total_volume_in_klay,
SUM(tx_fee) AS total_tx_fees_in_klay,
AVG(gas_price) AS avg_gas_price,
COUNT(DISTINCT from_address) AS unique_addresses,
AVG(value) AS avg_transaction_value
FROM
kaia.core.fact_transactions
WHERE
block_timestamp >= '2024-08-01'
AND block_timestamp < '2024-09-01';
QueryRunArchived: QueryRun has been archived