benimgPercentage 1000 FF tokens
Updated 2022-04-25
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 m1000 as (
SELECT count(user_address) as num1000
from ethereum.erc20_balances
where contract_address = '0x7e9d8f07a64e363e97a648904a89fb4cd5fb94cd'
and balance >1000
and balance_date = '2022-04-01'
) ,
m100 as (
SELECT count(user_address) as num100
from ethereum.erc20_balances
where contract_address = '0x7e9d8f07a64e363e97a648904a89fb4cd5fb94cd'
and balance >100
and balance <1000
and balance_date = '2022-01-04'
) ,
m1 as (
SELECT count(user_address) as num1
from ethereum.erc20_balances
where contract_address = '0x7e9d8f07a64e363e97a648904a89fb4cd5fb94cd'
and balance <100
and balance_date = '2022-04-01'
)
SELECT 'less_100' , num1
from m1
UNION
SELECT
'between_100_1000' ,
num100
Run a query to Download Data