Core Concept
The ARTGRIDZ smart contract tracks every pixel drawn as a blockchain event. Artworks are displayed by querying these events, ensuring an immutable and decentralized record of artistic contributions.
Last updated
The ARTGRIDZ smart contract tracks every pixel drawn as a blockchain event. Artworks are displayed by querying these events, ensuring an immutable and decentralized record of artistic contributions.
Last updated
Pixels are represented on a 100x100 grid. Each pixel's state is tracked using pixelChanged
, a nested mapping:
Workflow:
A pixel change emits the PixelChanged
event, including details of the sender, coordinates, color, and grid ID.
The total pixels colored are tracked per user using totalPixels
and totalPixelsId
.
Events:
PixelChanged
: Triggered when a pixel is colored or erased.
AmountPixel
: Logs the number of pixels a user has contributed.
The purpose of the event is to record and broadcast changes to the pixel data in a way that is immutable and queryable on the blockchain.
This allows anyone to reconstruct the grid's state purely by retrieving and processing these events.
The only potential point of failure is the underlying blockchain itself, making the ArtGridz canvas a direct and tangible visualization of the blockchain's core principles.