fishmarketacadNetwork activity comparisons monthly
Updated 2023-09-24
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
›
⌄
-- Sei Block Statistics
WITH SeiBlocks AS (
SELECT
'Sei' AS chain,
COUNT(DISTINCT block_id) AS block_count,
SUM(tx_count) AS total_tx,
AVG(tx_count) AS avg_tx_per_block
FROM sei.core.fact_blocks
WHERE block_timestamp::Date >= CURRENT_DATE - interval '30 day'
GROUP BY 1
),
-- Sei Transaction Statistics
SeiTransactions AS (
SELECT
TRUNC(block_timestamp, 'day') AS day,
'SEI' AS symbol,
'Sei' AS chain,
SPLIT(fee, 'usei') AS sei_fee_elements,
sei_fee_elements[0]/POW(10, 6) AS fee_amount,
tx_from AS users
FROM sei.core.fact_transactions
WHERE block_timestamp::Date >= CURRENT_DATE - interval '30 day'
HAVING fee_amount != 0
),
-- Osmosis Block Statistics
OsmosisBlocks AS (
SELECT
'Osmosis' AS chain,
COUNT(DISTINCT block_id) AS block_count,
SUM(tx_count) AS total_tx,
AVG(tx_count) AS avg_tx_per_block
FROM osmosis.core.fact_blocks
WHERE block_timestamp::Date >= CURRENT_DATE - interval '30 day'
GROUP BY 1
),
-- Osmosis Transaction Statistics
Run a query to Download Data