KuramaNFL.ALLDAY.Q1-2 - Sales previous
Updated 2022-09-14
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 allday_minted as (
select tx_id, block_timestamp, event_index, event_type,
event_data:editionID as edition_id,
event_data:id as id,
event_data:serialNumber as serial_number
from flow.core.fact_events
where event_contract = 'A.e4cf4bdc1751c65d.AllDay'
and event_type = 'MomentNFTMinted'
),
allday_deposits as (
select tx_id, block_timestamp, event_index, event_type,
event_data:id as id,
event_data:to as to_address
from flow.core.fact_events
where event_contract = 'A.e4cf4bdc1751c65d.AllDay'
and event_type = 'Deposit'
),
allday_withdraw as (
select tx_id, block_timestamp, event_index, event_type,
event_data:id as id,
event_data:from as from_address
from flow.core.fact_events
where event_contract = 'A.e4cf4bdc1751c65d.AllDay'
and event_type = 'Withdraw'
),
allday_burned as (
select tx_id, block_timestamp, event_index, event_type,
event_data:id as id
from flow.core.fact_events
where event_contract = 'A.e4cf4bdc1751c65d.AllDay'
and event_type = 'MomentNFTBurned'
),
Run a query to Download Data