feyikemiFlow trading volume
Updated 2024-09-03
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
›
⌄
SELECT
date_trunc('day', block_timestamp) Date,
amount,
tx_succeeded
FROM flow.core.ez_token_transfers
WHERE block_timestamp::date BETWEEN '2024-01-01' AND '2024-02-29'
AND amount != '0'
ORDER BY 2 DESC
--l.label
--FROM flow.core.ez_token_transfers t
--JOIN flow.core.dim_labels l
--ON t.inserted_timestamp = l.inserted_timestamp
--WHERE label_type IN ('token', 'cex', 'dex', 'nft')
--AND block_timestamp::date >= '2024-01-01'
--AND amount IS NOT NULL
QueryRunArchived: QueryRun has been archived