cypherLido Dashboard - current APY's
Updated 2022-06-04
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
›
⌄
-- Find staking rewards for Eth, Sol and Matic
select * from ethereum.core.fact_event_logs
where contract_address = lower('0xae7ab96520de3a18e5e111b5eaab095312d7fe84')
and event_inputs:from = '0x0000000000000000000000000000000000000000'
and block_timestamp = current_date()
limit 100
-- limit 100
-- with data as (select
-- *
-- from ethereum.udm_events
-- where from_address = lower('0x0000000000000000000000000000000000000000')
-- and contract_address = lower('0xae7ab96520de3a18e5e111b5eaab095312d7fe84')
-- )
-- select * from data
-- limit 100
Run a query to Download Data