Protocol // Onchain

Fully
On
Chain.

2021

>>> INIT_SEQUENCE: Forget offchain metadata. Forget dead links. Chonk Bots are meticulously coded pixel by pixel directly into the Ethereum smart contract. Rendered in raw SVG via EVM computation.

[ Supply: TBA ] [ Price: TBA ]
Chonk Bot Preview
EVM_COMPILER_v2.0.21.exe RUNNING
>
// UNIT_CATALOGUE

THE
BOTS

30 PREVIEW UNITS FINAL SUPPLY: TBA CHAIN: ETH MAINNET
ONCHAIN_SVG//// FULLY_RENDERED_VIA_EVM//// NO_IPFS//// ERC721_BYTECODE//// PIXEL_MATRIX_v2021//// ONCHAIN_SVG//// FULLY_RENDERED_VIA_EVM//// NO_IPFS//// ERC721_BYTECODE//// PIXEL_MATRIX_v2021////
// WHITELIST

WL_TERMINAL

chonkbots — WL_TERMINAL v1.0.0
chonk@mainnet:~$

type help to see available commands

No Servers.
No API.

When you acquire a Chonk Bot, you are not buying a pointer to an AWS server. You are buying executable code that lives forever on the Ethereum blockchain.

The image is constructed mathematically via an onchain matrix. As long as Ethereum exists, your bot renders.

CHONK_ENGINE.SOL
pragma solidity ^0.8.0;

contract ChonkBots {
    // Asset configuration matrices
    mapping(uint256 => uint256) botGenes;

    function tokenURI(uint256 id)
        public view returns (string) {

        // Generates SVG directly from code
        string memory svg = buildSVG(botGenes[id]);

        return string(abi.encodePacked(
            "data:application/json;base64,",
            Base64.encode(svg)
        ));
    }
}
/* 100% UNSTOPPABLE CODE */