winnie-fstop 50 characteristic copy
Updated 2023-04-18
999
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
›
⌄
-- forked from mercury / top 50 characteristic @ https://flipsidecrypto.xyz/mercury/q/2023-04-03-01-23-pm-e6IjWo
with
arb_price as (
select hour,price from ethereum.core.fact_hourly_token_prices
where symbol ilike 'arb'
),
delegate_actions as (
select tx_hash
from arbitrum.core.fact_transactions
where to_address ='0x912ce59144191c1204e64559fe8253a0e49e6548'
),
delegators as (
SELECT
event_inputs:delegator as delegator,
max(block_timestamp) as max_date
FROM arbitrum.core.fact_event_logs
WHERE tx_hash in (SELECT tx_hash from delegate_actions)
AND event_name = 'DelegateChanged'
GROUP BY 1
),
toDelegates as (
select
delegator,
event_inputs:toDelegate as toDelegate
from arbitrum.core.fact_event_logs
left outer join delegators on max_date = block_timestamp
and delegator = event_inputs:delegator
where tx_hash in (select tx_hash from delegate_actions)
and event_name = 'DelegateChanged'
and delegator is not null
),
transfer_date_arb as (
select
block_timestamp,
from_address as wallet,
Run a query to Download Data