Part 4: Dune Reporting

We use Dune Analytics (www.dune.com) to illustrate operational data and statistics.

Dune Analytics is a powerful and user-friendly platform that revolutionises the way we interact with blockchain data. It enables users to create, share, and explore community-driven data analyses and visualisations, making complex blockchain data accessible and understandable. With Dune Analytics, developers can delve deep into raw blockchain data to uncover insights, trends, and patterns.

The official Fiat24 Dune dashboard is available here.

Here we have several most wanted Dune queries to inspire the developers.

Replace the parameter {{wallet_provider}} to your address holding the wallet NFT.

1. NFT Reporting

Total Minted NFT in last 7 days
SELECT block_date AS "Date", count(*) AS "TotalNFTMint"
  FROM arbitrum.transactions
 WHERE "from" = {{wallet_provider}}
   AND varbinary_position(data,0x10480e13) = 1
   AND block_time < CURRENT_DATE
   AND block_time >= CURRENT_DATE - interval '7' day
GROUP BY block_date
Total Verified NFT in last 30 days
SELECT date(call_block_time) AS "Date", count(*) AS "TotalVerified" 
  FROM fiat24_arbitrum.Fiat24Account_call_changeClientStatus
 WHERE _status=5
   AND call_block_time < CURRENT_DATE
   AND call_block_time >= CURRENT_DATE - interval '30' day
   AND tokenId in (
                    SELECT varbinary_to_uint256(varbinary_substring("data",37,32))
                      FROM arbitrum.transactions
                     WHERE "from" = {{wallet_provider}}
                       AND varbinary_position(data,0x10480e13) = 1
                  )
GROUP BY date(call_block_time)

2. Balance Reporting

3. Transaction Reporting

Last updated