Updated 2022-12-15
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
›
⌄
select * FROM
flow.core.dim_contract_labels
select
top 10 *
FROM
flow.core.fact_transactions
where
Proposer = '0xdf868d4de6d2e0ab'
and tx_succeed = TRUE
order by
block_timestamp DESC
/* this works */
select
top 10 *
FROM
flow.core.ez_token_transfers
where
sender = '0xdf868d4de6d2e0ab'
and tx_succeeded = TRUE
order by
block_timestamp DESC
/* this works */
select
top 10 *
FROM
flow.core.ez_token_transfers
where
recipient = '0xdf868d4de6d2e0ab'
and tx_succeeded = TRUE
order by
block_timestamp DESC
/* this works */
select
*
Run a query to Download Data