binhachon20. Sushi Token Activity - USD amount
Updated 2022-01-10
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 xSUSHI_mint as (
select
block_timestamp,
to_address as minter,
amount/1e18 as mint_amount
from ethereum.udm_events
where contract_address = '0x8798249c2e607446efb7ad49ec89dd1865ff4272'
and origin_function_signature = '0xa59f3e0c'
),
xSUSHI_burn as (
select
block_timestamp,
from_address as burner,
amount/1e18 as burn_amount
from ethereum.udm_events
where contract_address = '0x8798249c2e607446efb7ad49ec89dd1865ff4272'
and to_address = '0x0000000000000000000000000000000000000000'
and origin_function_signature = '0x67dfd4c9'
),
SUSHI_stake as (
select
block_timestamp,
from_address as staker,
amount as stake_amount,
amount_usd as stake_amount_usd
from ethereum.udm_events
where to_address = '0x8798249c2e607446efb7ad49ec89dd1865ff4272'
and contract_address = '0x6b3595068778dd592e39a122f4f5a5cf09c90fe2'
and origin_function_signature = '0xa59f3e0c'
and amount < 200000000
),
SUSHI_harvest as (
select
block_timestamp,
to_address as harvester,
amount as harvest_amount,
Run a query to Download Data