SELECT
SYMBOL,
date_Trunc ('day',BLOCK_TIMESTAMP) as date,
sum (AMOUNT_USD) as USD,
count (DISTINCT TX_HASH) as tx
from ethereum.core.ez_token_transfers
WHERE ORIGIN_TO_ADDRESS = '0xb9756e83c99b44D3c2e54b074830dA69E0526DB3'
--WHERE TO_ADDRESS = '{{Your_Wallet_Address}}'
GROUP by 1,2