danhanUntitled Query
Updated 2022-07-17
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 min(block_timestamp::date) as date , PAYER
from flow.core.fact_transactions
where block_timestamp::date >= '2022-07-02' and block_timestamp::date < '2022-07-10'
group by 2
),
flow_retention as (
select min(block_timestamp) as date , PAYER
from flow.core.fact_transactions
where block_timestamp::date >= '2022-07-10' and block_timestamp::date < '2022-07-17'
and payer in ( select payer from flow)
group by 2
),
solana as (
select min(block_timestamp::date) as date , SIGNERS
from solana.core.fact_transactions
where block_timestamp::date >= '2022-07-02' and block_timestamp::date < '2022-07-10'
group by 2
),
solana_retention as (
select min(block_timestamp::date) as date , SIGNERS
from solana.core.fact_transactions
where block_timestamp::date >= '2022-07-10' and block_timestamp::date < '2022-07-17'
and SIGNERS in ( select SIGNERS from solana)
group by 2
),
Ethereum as (
select min(block_timestamp::date) as date , FROM_ADDRESS
from ethereum.core.fact_transactions
where block_timestamp::date >= '2022-07-02' and block_timestamp::date < '2022-07-10'
group by 2
),
Run a query to Download Data