Updated 2023-11-02
    with active_pool as (
    select
    concat('Active Pool') as pool,
    current_bal as eth_balance
    from ethereum.core.ez_current_balances
    where symbol = 'ETH'
    and user_address = '0xdf9eb223bafbe5c5271415c75aecd68c21fe3d7f'
    ),

    stability_pool as (
    select
    concat('Stability Pool') as pool,
    current_bal as eth_balance
    from ethereum.core.ez_current_balances
    where symbol = 'ETH'
    and user_address = '0x66017d22b0f8556afdd19fc67041899eb65a21bb'
    ),

    surplus_pool as (
    select
    concat('Surplus Pool') as pool,
    current_bal as eth_balance
    from ethereum.core.ez_current_balances
    where symbol = 'ETH'
    and user_address = '0x3d32e8b97ed5881324241cf03b2da5e2ebce5521'
    )

    select *
    from active_pool
    union
    select *
    from stability_pool
    union
    select *
    from surplus_pool

    Run a query to Download Data