rackhaelBARBIE NFT
Updated 2023-10-28
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
›
⌄
SELECT count(e.tx_id) as mints,
count(payer) as n_minters
-- sum(price_usd) as usd_vol
-- sum(token) as token_vol,
-- sum(symbol) as token_symbol
-- amount as flow_vol
FROM flow.core.fact_events e
JOIN flow.core.fact_transactions t on e.tx_id = t.tx_id
-- JOIN flow.price.fact_prices p on t.tx_id = p.tx_id
-- JOIN flow.price.fact_prices
WHERE event_contract = 'A.e5bf4d436ca23932.BBxBarbieCard'
AND event_type = 'Mint'
-- SELECT *
-- FROM flow.core.fact_events e
-- JOIN flow.core.fact_transactions t on e.tx_id = t.tx_id
-- WHERE event_contract = 'A.e5bf4d436ca23932.BBxBarbieCard'
-- AND event_type = 'Mint'
-- limit 10
Run a query to Download Data