NavidFirst Transaction Dates
Updated 2022-07-18Copy 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
›
⌄
with flow_date as (
SELECT
min(block_timestamp::date) AS first_transaction_date
FROM
flow.core.fact_transactions
), ethereum_date as (
SELECT
min(block_timestamp::date) AS first_transaction_date
FROM
ethereum.core.fact_transactions
), solana_date as (
SELECT
min(block_timestamp::date) AS first_transaction_date
FROM
solana.core.fact_transactions
)
select 'Flow' as network, first_transaction_date
from flow_date
union all
select 'Ethereum' as network, first_transaction_date
from ethereum_date
union all
select 'Solana' as network, first_transaction_date
from solana_date
order by first_transaction_date
Run a query to Download Data