tkvresearchpossible-red
    Updated 4 days ago
    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
    SYMBOL
    BAL
    1
    USD₮075236545.811993
    2
    frxUSD141.450366
    3
    USDC.e1273582.187435
    4
    USDG2249981.660247
    4
    101B
    3s