0xbrun0ex2
Updated 2023-03-01
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
›
⌄
select
user_address,
block_timestamp,
balance,
ROW_NUMBER() OVER (
PARTITION BY
user_address
ORDER BY
block_timestamp DESC
) AS row_num
from
ethereum.core.fact_token_balances
where
contract_address = '0xdac17f958d2ee523a2206206994597c13d831ec7'
AND user_address = '0x94b098038ea2793a0e595e3f37ccd39658ddb4a0'
qualify row_num = 1
Run a query to Download Data