zakkisyedUntitled Query
Updated 2022-02-23
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
›
⌄
⌄
/* Question 4: Friends with Benefits has two tiers of membership.
A “Local Membership” that costs 5 $FWB that gives you access to FWB Cities and Events,
and a “Full Membership” that costs 75 $FWB for access to the entire FWB ecosystem.
Create a visualization of the number of holders of $FWB token over time.
Also create a histogram showing $FWB wallet balances. How many wallets have a “Local Membership”. How many wallets have a “Full Membership”. Is there a strong concentration of wallets holding just over 5 $FWB and just over 75 $FWB?
Do you think this token model makes sense compared to say owning a NFT? Why?
*/
select *
from ethereum.transactions
where to_address = '0x35bd01fc9d6d5d81ca9e055db88dc49aa2c699a8'
limit 10
Run a query to Download Data