jackguyTokens/Swaps on BSC 3
Updated 2022-06-30
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
›
⌄
SELECT *
FROM (
SELECT
date_trunc('day', block_timestamp) as bsc_day,
count(DISTINCT from_address) as bsc_users,
count(DISTINCT tx_hash) as bsc_trasaction
FROM bsc.core.fact_transactions
GROUP BY 1
) as a
JOIN (
SELECT
date_trunc('day', block_timestamp) as eth_day,
count(DISTINCT from_address) as eth_users,
count(DISTINCT tx_hash) as eth_trasaction
FROM ethereum.core.fact_transactions
GROUP BY 1
)
ON eth_day = bsc_day
Run a query to Download Data