MoDeFinear meteor moon - created wallets
    Updated 2025-03-18
    with meteor_new_wallets as (
    select BLOCK_TIMESTAMP, user, tx_hash
    from
    (select BLOCK_TIMESTAMP, args:new_account_id as user, tx_hash,
    rank() over (partition by user order by BLOCK_TIMESTAMP asc) as rank
    from near.core.fact_actions_events_function_call
    where SIGNER_ID in ('aa-meteor-relayer-2.near','meteor-relayer.near')
    and METHOD_NAME='create_account'
    and RECEIPT_SUCCEEDED=TRUE)
    where rank=1)

    select date_trunc(day, BLOCK_TIMESTAMP) as "Date", count(*) as "Wallets",
    sum("Wallets") over (order by "Date") as "Total Wallets"
    from meteor_new_wallets
    group by 1
    order by 1 desc


    -- select TX_SIGNER,
    -- count(*) as "TXs",
    -- sum(TRANSACTION_FEE/1e24) as "Fees",
    -- sum(TRANSACTION_FEE/1e24*price) as "Fees $USD",
    -- avg(TRANSACTION_FEE/1e24*price) as "AVG Fees $USD"
    -- from near.core.fact_transactions
    -- left join near.price.ez_prices_hourly
    -- on TOKEN_ADDRESS='wrap.near' and date_trunc(hour, BLOCK_TIMESTAMP)=hour
    -- where tx_succeeded=true
    -- and tx:actions[0]:Delegate:delegate_action is not null
    -- and BLOCK_TIMESTAMP::date>'2024-01-30'
    -- and TX_SIGNER not in ('meteor-relayer.near','aa-meteor-relayer-2.near')
    -- group by 1
    -- order by 2 desc
    -- limit 1000
    Last run: 3 months ago
    Date
    Wallets
    Total Wallets
    1
    2025-03-18 00:00:00.00094876883
    2
    2025-03-17 00:00:00.000305876789
    3
    2025-03-16 00:00:00.000300876484
    4
    2025-03-15 00:00:00.000216876184
    5
    2025-03-14 00:00:00.000398875968
    6
    2025-03-13 00:00:00.000249875570
    7
    2025-03-12 00:00:00.000412875321
    8
    2025-03-11 00:00:00.000292874909
    9
    2025-03-10 00:00:00.000123874617
    10
    2025-03-09 00:00:00.000112874494
    11
    2025-03-08 00:00:00.000147874382
    12
    2025-03-07 00:00:00.000140874235
    13
    2025-03-06 00:00:00.000142874095
    14
    2025-03-05 00:00:00.000167873953
    15
    2025-03-04 00:00:00.000146873786
    16
    2025-03-03 00:00:00.000220873640
    17
    2025-03-02 00:00:00.000160873420
    18
    2025-03-01 00:00:00.000139873260
    19
    2025-02-28 00:00:00.000188873121
    20
    2025-02-27 00:00:00.000161872933
    ...
    353
    14KB
    237s