DATE | SIGNERS | |
---|---|---|
1 | 2025-04-04 00:00:00.000 | 72196 |
2 | 2025-04-03 00:00:00.000 | 145498 |
3 | 2025-04-02 00:00:00.000 | 142506 |
4 | 2025-04-01 00:00:00.000 | 144902 |
5 | 2025-03-31 00:00:00.000 | 140336 |
6 | 2025-03-30 00:00:00.000 | 147428 |
7 | 2025-03-29 00:00:00.000 | 152519 |
8 | 2025-03-28 00:00:00.000 | 158263 |
9 | 2025-03-27 00:00:00.000 | 167397 |
10 | 2025-03-26 00:00:00.000 | 145964 |
11 | 2025-03-25 00:00:00.000 | 140262 |
12 | 2025-03-24 00:00:00.000 | 136489 |
13 | 2025-03-23 00:00:00.000 | 133635 |
14 | 2025-03-22 00:00:00.000 | 135654 |
15 | 2025-03-21 00:00:00.000 | 141954 |
16 | 2025-03-20 00:00:00.000 | 148321 |
17 | 2025-03-19 00:00:00.000 | 153172 |
18 | 2025-03-18 00:00:00.000 | 140609 |
19 | 2025-03-17 00:00:00.000 | 127838 |
20 | 2025-03-16 00:00:00.000 | 116764 |
GetstanUAW DOD copy
Updated 2024-12-06
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
›
⌄
-- forked from akmit12 / UAW DOD @ https://flipsidecrypto.xyz/akmit12/q/hHMroZMTHaiw/uaw-dod
-- aptos.core.fact_transactions---1.UAW DOD-----------------
with base AS
(
select
date(e.BLOCK_TIMESTAMP) as date,
e.tx_hash as txn
from aptos.core.fact_events e
where e.ACCOUNT_ADDRESS in ('0x34ca84470e8d2907562f9a2f144c6c780282953b8b025ba220b0ecc5fc0aead9')
and e.EVENT_TYPE = '0x1::coin::DepositEvent'
AND date(e.BLOCK_TIMESTAMP)>=CURRENT_DATE()-20
)
select
date(t.BLOCK_TIMESTAMP) as Date,
count(DISTINCT(t.SENDER)) as signers
FROM aptos.core.fact_transactions t
where t.tx_hash in (select txn from base )
AND date(t.BLOCK_TIMESTAMP)>=CURRENT_DATE()-20
GROUP BY 1
ORDER by 1 DESC
;
Last run: 21 days ago
21
735B
28s