Abolfazl_771025all liquidity deposits
    Updated 2022-07-26
    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