SELECT
da.depositor_address,
bt.block_timestamp AS wd_timestamp
FROM
ethereum.aave.ez_deposits da
JOIN ethereum.aave.ez_withdraws bt ON da.depositor_address = bt.depositor_address
WHERE
bt.block_timestamp::date BETWEEN '2021-12-31' AND '2023-01-01'
LIMIT
10