jackguyNeth Wallets by Creation Date
    Updated 2023-03-01
    SELECT
    tx_signer as neth_wallet,
    min(block_timestamp) as creation_time
    FROM near.core.fact_transactions
    WHERE tx_receiver = 'nethmap.near'
    AND block_timestamp > '2022-12-01'
    GROUP BY 1
    ORDER BY 2 DESC
    Run a query to Download Data