<aside> 🌐 Live simplified Demo: https://introspection-demo.vercel.app

</aside>

Introspection is the process of analyzing the underlying elements and properties of something, such as art, blockchain data, or programming, to gain a deeper understanding.

//Let’s introspect the art behind the code
return blockData.transactions.map((t) => {
    const isMint = t.transaction.message.accountKeys
			.some((k) => (k as unknown as {pubkey: string}).pubkey === oneProgram);
    const volume = Math.abs((t.meta?.preBalances || []).reduce((acc, v, idx) => (
      acc + (Math.abs(
        ((t.meta?.postBalances || [])[idx] || (t.meta?.preBalances || [])[idx]) -
        ((t.meta?.preBalances || [])[idx] || (t.meta?.postBalances || [])[idx])
      ) / lamportsPerSol)
    ), 0));

Piece of code from the generative art algorithm

At the Edge of Imagination

All began on December 26th 2023 when Analyzoor / ONE posted a bounty to create the art for their 10.000 supply NFT collection called ONE.

My response on X: https://twitter.com/TimortUnchained/status/1739704198252335497.

The goal was simply explained in this GitHub issue https://github.com/Analysoor/bounties/issues/1, it is about programming a code that can generate art similar to Block Art Curated, inspired by AI / Blockchain / Data Visualization.

With a big background in software engineering in big-pharma, blockchain data visualization, and similar works my first idea was to create a minimalistic representation a Solana Block and it’s transactions.

Deciphering Analyzoor

Analyzoor is a project aimed at addressing a significant issue in the blockchain space, particularly on the Solana network. It aims to combat and prevent the use of minting bots by implementing a revolutionary minting protocol that utilizes the transaction hash to determine ONE successful mint per block.

The Birth of 'ONE'

ONE is the first NFT collection that was created using this protocol on the Solana mainnet-beta blockchain on December 26th, 2023.