Abolfazl_771025all liquidity deposits
Updated 2022-07-26
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 eth as (
select date(block_timestamp) as date,
'ETH' as pool,
tx_hash,
amount_usd
from ethereum.core.ez_eth_transfers
where ETH_FROM_ADDRESS = lower('0xD3D13a578a53685B4ac36A1Bab31912D2B2A2F36')
), Sushi as (
select date(block_timestamp) as date,
'Sushi LP' as pool,
tx_hash,
amount_usd
from ethereum.core.ez_token_transfers
where from_address = lower('0x8858A739eA1dd3D80FE577EF4e0D03E88561FaA3')
),usdc as (
select date(block_timestamp) as date,
'USDC' as pool,
tx_hash,
amount_usd
from ethereum.core.ez_token_transfers
where from_address = lower('0x04bDA0CF6Ad025948Af830E75228ED420b0e860d')
), toke as (
select date(block_timestamp) as date,
'TOKEN' as pool,
tx_hash,
amount_usd
from ethereum.core.ez_token_transfers
where from_address = lower('0x96F98Ed74639689C3A11daf38ef86E59F43417D3')
),uni as (
select date(block_timestamp) as date,
'UNI' as pool,
tx_hash,
amount_usd
from ethereum.core.ez_token_transfers
where from_address = lower('0x1b429e75369ea5cd84421c1cc182cee5f3192fd3')
)
Run a query to Download Data