VeryNifty Documentation
  • Very Nifty Documentation
  • Playing
    • Getting started
    • Stake - LP Tokens
    • FAQ
    • Playing using Etherscan
    • Fatality
  • Developers
    • Existing community projects
    • Data
    • Smart contract error codes
Powered by GitBook
On this page
  • Raw events
  • Dune Analytics

Was this helpful?

  1. Developers

Data

PreviousExisting community projectsNextSmart contract error codes

Last updated 4 years ago

Was this helpful?

Raw events

Very Nifty contracts emits a lot of events for people wanting to build around the game, you can find them in the source code.

Dune Analytics

All data generated by the game is available to query on . Here are some example queries:

Query number of vNFT minted over time:


SELECT date_trunc('hour', evt_block_time) AS TIME,
       COUNT(DISTINCT(evt_tx_hash)) AS mints
FROM very_nifty."VNFT_evt_VnftMinted"
GROUP BY TIME
ORDER BY TIME ASC

Query number of vNFT fatalized per users:


SELECT killer,
       COUNT(DISTINCT("nftId")) AS victims
FROM very_nifty."VNFT_evt_VnftFatalized"
GROUP BY killer
ORDER BY victims DESC
Dune Analytics