messaribsc top new
Updated 2023-01-24
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
›
⌄
with base as (select
date(block_timestamp) as date,
nonce,
to_address,
from_address
from bsc.core.fact_transactions
where date(block_timestamp) between date('2022-10-01') and date('2023-01-01')
and nonce < 5
),
counts as (
select
date,
to_address,
count(from_address) as txns,
count(distinct from_address) as users
from base group by date, to_address ),
ranks as (
select
date,
to_address,
txns,
users,
rank() over (partition by date order by users desc ) as rank
from counts where txns > 100000)
select * from ranks --where rank=1
order by date desc, users desc;
Run a query to Download Data