Afonso_DiazOvertime
Updated 2025-02-22
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
pricet as (
select
hour::date as date,
avg(price) as token_price_usd
from
kaia.price.ez_prices_hourly
where
token_address = '0x19aac5f612f524b754ca7e7c41cbfa2e981a4432'
group by 1
),
stake_unstake as (
select
tx_hash,
block_timestamp,
origin_from_address as user,
decoded_log:value::bigint / 1e18 as amount,
'Stake' as event_name
from
kaia.core.ez_decoded_event_logs
where
contract_address = '0x999999999939ba65abb254339eec0b2a0dac80e9'
and event_name = 'Transfer'
and tx_succeeded
and origin_from_address = decoded_log:to
and origin_to_address = '0xf50782a24afcb26acb85d086cf892bfffb5731b5'
and tx_hash in (select distinct tx_hash from kaia.core.ez_decoded_event_logs where event_name = 'StakeKlay' and decoded_log:from = '0x999999999939ba65abb254339eec0b2a0dac80e9')
and tx_hash not in (select distinct tx_hash from kaia.core.ez_decoded_event_logs where event_name = 'ApproveStakingWithdrawal')
union all
select
tx_hash,
block_timestamp,
QueryRunArchived: QueryRun has been archived