pinehearstNEAR Performance - Max TPS per min (not used)
Updated 2022-07-21
99
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
›
⌄
WITH ETHEREUM AS (
SELECT
date(block_timestamp) as date,
date_trunc('second', block_timestamp) as seconds,
'Ethereum' as chain,
count(distinct block_number) as block_count,
count(distinct tx_hash) as tx_count,
count(distinct FROM_ADDRESS) as unique_users
FROM ethereum.core.fact_transactions
WHERE CURRENT_DATE - date(block_timestamp) < 14
GROUP BY 1,2
),
AVALANCHE AS (
SELECT
date(block_timestamp) as date,
date_trunc('second', block_timestamp) as seconds,
'Avalanche' as chain,
count(distinct BLOCK_NUMBER) as block_count,
count(distinct TX_HASH) as tx_count,
count(distinct FROM_ADDRESS) as unique_users
FROM avalanche.core.fact_transactions
WHERE CURRENT_DATE - date(block_timestamp) < 14
GROUP BY 1,2
ORDER BY 1
),
osmosis AS (
SELECT
date(block_timestamp) as date,
date_trunc('second', block_timestamp) as seconds,
'Osmosis' as chain,
count(distinct block_id) as block_count,
count(distinct tx_id) as tx_count,
count(distinct tx_from) as unique_users
FROM osmosis.core.fact_transactions
WHERE CURRENT_DATE - date(block_timestamp) < 14
GROUP BY 1,2
Run a query to Download Data