SYMBOL | BAL | |
---|---|---|
1 | USD₮0 | 75236545.811993 |
2 | frxUSD | 141.450366 |
3 | USDC.e | 1273582.187435 |
4 | USDG | 2249981.660247 |
tkvresearchpossible-red
Updated 4 days agoCopy Reference Fork
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
›
⌄
select distinct
symbol,
sum(amt) over (partition by symbol) as bal
from
(select date(block_timestamp) as datetime,
symbol,
-amount as amt
from ink.core.ez_token_transfers
where contract_address in (
lower('0xF1815bd50389c46847f0Bda824eC8da914045D14'),
lower('0x0200C29006150606B650577BBE7B6248F58470c1'),
lower('0x80Eede496655FB9047dd39d9f418d5483ED600df'),
lower('0xe343167631d89B6Ffc58B88d6b7fB0228795491D')
)
and
to_address = '0x0000000000000000000000000000000000000000'
union all
select date(block_timestamp) as datetime,
symbol,
amount
from ink.core.ez_token_transfers
where contract_address in (
lower('0xF1815bd50389c46847f0Bda824eC8da914045D14'),
lower('0x0200C29006150606B650577BBE7B6248F58470c1'),
lower('0x80Eede496655FB9047dd39d9f418d5483ED600df'),
lower('0xe343167631d89B6Ffc58B88d6b7fB0228795491D')
)
and
from_address = '0x0000000000000000000000000000000000000000')
Last run: 4 days ago
4
101B
3s