mamad-5XN3k3Your Wallet Statistics 1
Updated 2024-07-21
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
›
⌄
SELECT
count(DISTINCT tx_hash) as txs,
min(TIMESTAMP::date) as "First transaction" ,
max(TIMESTAMP::date) "Last transaction",
datediff('day', MIN(TIMESTAMP::date) , max(TIMESTAMP::date) ) as "Wallet Age(days)",
count(DISTINCT TIMESTAMP::date) as "Active Days",
count(distinct date_trunc('day', TIMESTAMP)) as days,
count(distinct date_trunc('month', TIMESTAMP)) as months
from external.tokenflow_starknet.decoded_transactions
where contract = lower('{{Account_address}}')
and CHAIN_ID = 'mainnet'
and TIMESTAMP::date <= '2023-11-15'
QueryRunArchived: QueryRun has been archived