NuveveCryptoArchivedPool Shares
Updated 2023-11-02
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 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