scottincryptoUntitled Query
Updated 2022-09-11
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
›
⌄
select
date_trunc(day, block_timestamp) as block_day
, from_address
, to_address
, contract_address
, decimals
, symbol
, sum(amount)
from ethereum.core.ez_token_transfers
where to_address = '0x464c71f6c2f760dda6093dcb91c24c39e5d6e18c'
and contract_address = '0xbcca60bb61934080951369a648fb03df4f96263c'
and block_timestamp > '2021-02-15'
and block_timestamp < '2021-02-28'
group by 1,2,3,4,5,6
order by block_day
Run a query to Download Data