bryanvand-th35jzActive Daily Wallets
Updated 2022-02-23
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
34
35
36
›
⌄
WITH datetime_info AS (
SELECT
block_id,
block_timestamp as time_
FROM
algorand.block
),
cex_info AS (
SELECT
block_timestamp,
ROUND(SUM(amount)) as total,
block_id,
sender,
receiver
FROM
algorand.payment_transaction
WHERE
block_timestamp :: date >= '2021-11-10'
and block_timestamp :: date < '2022-01-01'
),
cex_label AS (
SELECT
label AS cex,
address
FROM
algorand.labels
WHERE
label_type = 'cex' AND label_subtype = 'hot_wallet'
)
SELECT
cex_label.cex,
cex_label.address,
Run a query to Download Data