austinbBalances Walkthrough
Updated 2022-08-11
99
1
2
3
4
5
6
7
8
9
10
11
12
13
›
⌄
-- current
select *
from ethereum.core.ez_current_balances
where last_activity_block_timestamp::date > '2021-01-01'
and user_address = '0xf76e2d2bba0292cf88f71934aff52ea54baa64d9'
order by contract_address desc
-- deltas
select *
from ethereum.core.ez_balance_deltas
where block_timestamp::date > '2021-01-01'
and user_address = '0xf76e2d2bba0292cf88f71934aff52ea54baa64d9'
order by block_number desc, contract_address desc
Run a query to Download Data