Date | Wallets | Total Wallets | |
---|---|---|---|
1 | 2025-03-18 00:00:00.000 | 94 | 876883 |
2 | 2025-03-17 00:00:00.000 | 305 | 876789 |
3 | 2025-03-16 00:00:00.000 | 300 | 876484 |
4 | 2025-03-15 00:00:00.000 | 216 | 876184 |
5 | 2025-03-14 00:00:00.000 | 398 | 875968 |
6 | 2025-03-13 00:00:00.000 | 249 | 875570 |
7 | 2025-03-12 00:00:00.000 | 412 | 875321 |
8 | 2025-03-11 00:00:00.000 | 292 | 874909 |
9 | 2025-03-10 00:00:00.000 | 123 | 874617 |
10 | 2025-03-09 00:00:00.000 | 112 | 874494 |
11 | 2025-03-08 00:00:00.000 | 147 | 874382 |
12 | 2025-03-07 00:00:00.000 | 140 | 874235 |
13 | 2025-03-06 00:00:00.000 | 142 | 874095 |
14 | 2025-03-05 00:00:00.000 | 167 | 873953 |
15 | 2025-03-04 00:00:00.000 | 146 | 873786 |
16 | 2025-03-03 00:00:00.000 | 220 | 873640 |
17 | 2025-03-02 00:00:00.000 | 160 | 873420 |
18 | 2025-03-01 00:00:00.000 | 139 | 873260 |
19 | 2025-02-28 00:00:00.000 | 188 | 873121 |
20 | 2025-02-27 00:00:00.000 | 161 | 872933 |
MoDeFinear meteor moon - created wallets
Updated 2025-03-18
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
›
⌄
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
...
353
14KB
237s