Soheil_MKUntitled Query
Updated 2022-12-12Copy Reference Fork
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 flow as (
select
date_trunc('minute',BLOCK_TIMESTAMP) minute,
count(distinct TX_ID) as tx_count,
'Flow' as blockchain
from flow.core.fact_transactions
where BLOCK_TIMESTAMP >='2022-01-01'
group by 1
),
Near as (
select
date_trunc('minute',BLOCK_TIMESTAMP) minute,
count(distinct TX_HASH) as tx_count,
'Near' as blockchain
from near.core.fact_transactions
where BLOCK_TIMESTAMP >='2022-01-01'
group by 1
),
Algorand as (
select
date_trunc('minute',BLOCK_TIMESTAMP) minute,
count(distinct TX_ID) as tx_count,
'Algorand' as blockchain
from algorand.core.fact_transaction
where BLOCK_TIMESTAMP >='2022-01-01'
group by 1
),
optimism as (
select
date_trunc('minute',BLOCK_TIMESTAMP) minute,
count(distinct TX_HASH) as tx_count,
'optimism' as blockchain
Run a query to Download Data