Waiting for Aurory
Aurory is one of the most highly anticipated games to come out on any chain. Create a dashboard highlighting wallet trends around both the tokens and NFTs.
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
What is Aurory?
Aurory is a gaming studio first, and a crypto company second. Our team of industry veterans are here to bring the same AAA quality experience that we all love from web2, but with a dash of seamless web3 asset ownership enabled by low fees and quick transactions on Solana.
Questions
Does the price of Aurory token has positive correlation with volume of nft sales? How have token staking and nft expedition patterns changed in the bear market? What have wallets been doing with their airdropped NFTs?
Method
- First I use the
solana.core.fact_swaps
table with the filterSWAP_FROM_MINT = 'AURYydfxJib1ZkTir1Jn1J9ECYUtjb6rKQVmtYaixWPP'
andSWAP_TO_MINT = 'EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v'
As of May 1 , I got the NFT price. Then usingsolana.core.dim_labels
andsolana.core.fact_nft_sales
tables I got the daily sales volume from May 1. - from table
flipside_prod_db.solana.fact_events
with filterprogram_id = 'STkwf3sbMapjy7KV3hgrJtcVvY4SvRxWQ8pj4Enw1i5'
I got the stick transactions Then by joining theflipside_prod_db.solana.fact_transactions
table and filterPRE_TOKEN_BALANCES[0]:mint = 'xAURp5XmAG7772mfkSy6vRAjGK9JofYjc3dmQDWdVDP'
I got the number of stackers and the daily stake volume. - from table
solana.core.fact_nft_mints
with filterPURCHASER = 'NFTsPae8pUuvKHiUHpXfZaQwwbiVPw6dPCWpwfvrwR6'
I got the airdrops Then I joined with the 'solana.core.fact_events
table based on thetx_id
and compared their behavior regarding airdrop sales or hold.