-- 9. Which token contract does the first Ethereum transaction of 2023 sent from the address 0xe2c25d061d632b166f74f04fbdeba838966caea2 involve?This question is required. *
-- Hint: on Flipside, use the ethereum.core.fact_transactions table.
-- Don't forget to set a LIMIT 1 on your query results (for this question no requirement to order by nonce or position).
-- Then look up the transaction hash on Etherscan!
-- select *
-- from ethereum.core.fact_transactions
-- where block_timestamp::date = '2023-01-01'
-- and from_address = lower('0xe2c25d061d632b166f74f04fbdeba838966caea2')
-- order by block_timestamp
-- limit 1
-- 10. On which date did this a16z wallet 0x05E793cE0C6027323Ac150F6d45C2344d28B6019 conduct its last transaction of 2022 on Ethereum?This question is required. *
-- Hint: on Flipside, use the ethereum.core.fact_transactions table