Updated 2025-04-19
    with

    main as (
    select
    tx_hash,
    tx_receiver as wallet_address,
    block_timestamp
    from
    near.core.ez_actions a
    where
    receipt_signer_id ilike '%eth-wallet%'
    and not wallet_address ilike '%.near'
    and wallet_address like '0x%'
    and tx_succeeded
    and year(block_timestamp) >= 2024

    union all

    select
    tx_hash,
    receipt_predecessor_id as wallet_address,
    block_timestamp
    from
    near.core.ez_actions a
    where
    receipt_signer_id ilike '%eth-wallet%'
    and not wallet_address ilike '%.near'
    and wallet_address like '0x%'
    and tx_succeeded
    and year(block_timestamp) >= 2024
    ),

    final as (
    select
    tx_hash,
    block_timestamp,
    QueryRunArchived: QueryRun has been archived