NuveveCryptoArchivedLQTY Staked Supply
99
1
2
3
4
5
6
7
8
9
10
›
⌄
select
block_timestamp::date as date,
avg(balance)/pow(10, 18) as staked_lqty
from ethereum.core.fact_token_balances
where contract_address = '0x6dea81c8171d0ba574754ef6f8b412f2ed88c54d' -- lqty token
and user_address = '0x4f9fbb3f1e99b56e0fe2892e623ed36a76fc605d' -- lqty staking
and block_timestamp >= current_date - 90
group by date
order by date asc
Run a query to Download Data