What's going on in Flowverse NFT Marketplace?!
Discovering Flowverse NFT Marketplace
With 473 curated Flow blockchain projects, Flowverse is the central hub to discover everything on Flow Blockchain including NFTs, games, DeFi and more. (source)
Since early February, Flowverse's official NFT marketplace has been launched, and has gained a lot of attention in social media for Flow blockchain related topics.
In this dashboard, I'm tracking users' activity on the Flowverse marketplace and finding out which collections are trending on this new platform.

⚫First of all I used EVENT_TYPE= 'ListingCompleted'
and EVENT_DATA:customID = 'flowverse-nft-marketplace'
filters to find NFT listings on Flowverse marketplace in flow.core.fact_events
table and by EVENT_DATA:purchased = 'true'
filter I subscracted trade transactions from them.
⚫Using EVENT_DATA:id
and EVENT_TYPE = 'Deposit'
filter was my method to finding disticnt NFT tokens of each collection
⚫In order to determine which tokens are used in NFT trades, I filtered the related transaction hashes based on the contract address of the tokens used. (For example: 'A.ead892083b3e2c6c.DapperUtilityCoin'
for Dapper coin-based trades)
⚫Bulk trades was found by filtring the transactions containing more than one NFT tokens (EVENT_DATA:id
)
⚫I also used EVENT_CONTRACT = 'A.9212a87501a8a6a2.FlowversePrimarySale'
filter to find Flowverse Pass mint transactions and NFT_COLLECTION = 'A.9212a87501a8a6a2.FlowversePass'
and flow.core.ez_nft_sales
to find secondary sales transactions. Excluding the wallets who sold their Passes after buying or minting helped me find the real holders of this collection.