Deciphering TapeOut: A Child Built a CPU On-Chain

marsbit2026-08-17 tarihinde yayınlandı2026-08-17 tarihinde güncellendi

Özet

**Title: Understanding TapeOut: A Kid Built a CPU On-Chain** **Summary:** The article explores a remarkable experiment where a young developer named Blonskr has used blockchain technology to build a functional, on-chain CPU. Named "Behemoth," this CPU is based on the 1971 Intel 4004 processor specification. It runs on the BNB Chain, uses block production as its clock (running at a glacial 2.22 Hz), and is perhaps the slowest CPU in existence, yet it represents a novel and intriguing concept in the on-chain space. The core concept is the TapeOut protocol, named after the final "tape out" stage in semiconductor manufacturing. It treats the blockchain as a silicon wafer, with tokens representing fundamental logic components. The protocol's atomic unit is an ERC-1155 token representing a single NAND gate, the fundamental building block of digital logic. Users can visually design circuits on a "canvas," connecting these logic tokens. Once a design is finalized, the underlying tokens are burned, and an ERC-721 NFT representing the permanent, immutable circuit is minted. Blonskr used 2,300 such tokenized NAND gates to construct the Behemoth CPU. Key features of this and any TapeOut circuit include **permanent operation** (running as long as the chain exists), **free, permissionless evaluation** (anyone can query it without gas), and **safe composability** (circuits cannot call external contracts or modify state, making them inherently safe to use). This enables a new form of open...

Author: Xiaobing

Someone built a processor on the blockchain.

Not a simulation, not a proof-of-concept, but a real four-bit processor built to the specifications of the 1971 Intel 4004, running on BNB Chain, driven by block production for its clock, with a frequency of 2.22 Hz. Its creator named it: Behemoth.

It might be the slowest CPU in the universe, but it could be one of the most fascinating new species in the on-chain narrative.

What is TapeOut?

'Tape out' in the semiconductor industry is the final milestone. It means the chip design is complete, and the layout files are sent to the foundry to be etched into silicon wafers, becoming permanent and unchangeable.

A young developer named Blonskr brought this concept onto the chain.

What the TapeOut protocol does can be summarized in one sentence: using the blockchain as the silicon wafer, using tokens as transistors, allowing anyone to 'tape out' real, operational logic circuits on-chain.

Sound like a fantasy? Let's break it down.

The Starting Point of Everything: A NAND Gate

The foundation of all digital computing can be reduced to a minimal logical unit, the NAND gate. This is common knowledge in computer science: given enough NAND gates, you can build adders, decoders, registers, and eventually an entire CPU.

The TapeOut protocol did one thing: it turned the NAND gate into a Token.

One Token = one transistor (technically, one NAND gate), based on the ERC-1155 standard, 7 bytes in size. It can be minted and serves as the atom in the TapeOut world.

In this world, you only have two things: NAND gates (for processing logic) and flip-flops (for storing a single bit of state, updated with each block). One is responsible for calculation, the other for memory. Blonskr wrote a rather ambitious line in the whitepaper: From these two things, the entire universe can be built.

From Transistors to Circuits: On-Chain LEGO

With transistor Tokens, the next step is to connect them.

TapeOut.net provides a 'Processor Canvas System'. You drag and drop transistors onto your browser canvas, draw wires from an output to an input. On-chain, this is just assigning a pointer. All operations run locally in real-time, costing no Gas, allowing you to experiment freely.

When satisfied, you click the button: 'Tape Out'.

What happens at this moment is: your transistor Tokens are actually burned, and a circuit NFT is born. ERC-721 standard. The circuit's logic is recorded as pure data, with no calling permissions, usable only for computation.

Here's an intuitive set of numbers:

  • 5 transistors → a half-adder
  • 9 transistors → a full-adder
  • 36 transistors → a four-bit adder, capable of addition
  • 100 transistors → a seven-segment decoder, numbers can 'light up'
  • 2300 transistors → equivalent to the Intel 4004, the historic commercial microprocessor from 1971

A key design feature: when you build a new circuit, you don't have to start from basic components. You can use anyone's finished circuit as a black box, directly dragging it onto your canvas and continuing to wire. This is LEGO-like, composable processor manufacturing.

The 'Behemoth' Boots Up

Using 2300 transistors, Blonskr built an on-chain CPU following the exact specifications of the Intel 4004, naming it 'Behemoth'.

Its clock source is BNB Chain's block production. For every new block generated, the processor advances one clock cycle. The current block time for BNB Chain is 0.45 seconds, so this CPU's default clock frequency is 2.22 Hz.

For comparison, the chip in your phone likely runs around 3 GHz, roughly 1.35 billion times faster.

But speed isn't the point. The key is several characteristics of this processor:

Permanently Running. As long as BNB Chain continues producing blocks, this CPU will not stop. No one can shut it down, not even Blonskr himself, because the core factory contract of the TapeOut protocol renounced all permissions upon deployment.

Free to Call. Anyone can call the on-chain circuit. Evaluation is a read-only query, not generating a transaction, costing no Gas. The node calculates and returns the result directly. You can call it with five lines of front-end code, one terminal command, or even by filling in boxes in the block explorer and clicking 'query'.

Absolutely Safe Composability. This might be TapeOut's most interesting design. On-chain circuits have no 'call other' operation, no writable state, and Gas cost is known before the call. If you accept a circuit written by a complete stranger, the worst-case scenario is it returns a wrong answer; it has no way to harm you.

For the first time on-chain, you can safely execute logic written by a stranger.

Who's Playing, and How?

TapeOut has launched a transistor trading market. According to public data, within 5 hours of launch, 237 addresses completed 543 transactions, with a total volume of 58.41 BNB. The protocol collected 0.58 BNB in fees.

Not a large scale, but for an extremely niche, experimental protocol, this early participation indicates something: people are willing to pay for the act of 'building a CPU on-chain'.

Even more interesting is a direction Blonskr proposed: future mining might not compete on electricity costs and number of mining rigs, but on the sophistication of circuit design—using your own custom-designed circuit to mine. If this idea holds, it would redefine 'miners' from 'energy consumers' to 'logic designers'.

The core of the TapeOut protocol is a factory contract. Anyone can call it to deploy their own on-chain processor. The initial state is a blank piece of silicon. Your first decision is: how many transistors will this CPU have?

Intel 4004: 2300. Pentium: 3.1 million. Apple M1: 16 billion. What about yours?

Each CPU cloned by the factory has identical bytecode, meaning your circuits and circuits on any other processor in the world can inherently call each other. This is an open, permissionless on-chain processor network.

Why Is It Worth Attention?

TapeOut might not become the next billion-dollar narrative. It's too geeky, too slow, too far from the needs of ordinary users.

But it did something no one has done before: reducing computation to its most fundamental physical logic, then repackaging it with the persistence and openness of the blockchain. It's different from DeFi LEGO and on-chain games. It's an extreme answer to the question, 'What can the chain carry?'

From a NAND gate Token, to a circuit NFT, to a processor that will never shut down, each layer uses the same structure, each layer is completely open and completely composable.

Blonskr wrote a line at the end of the whitepaper: not sure what interesting twists the TapeOut protocol will evolve into in the future, but looking forward to finding out.

For a developer reportedly still a kid, this restraint and curiosity might be more noteworthy than the 2.22 Hz clock frequency.

Disclaimer: This article is for informational and technical interpretation purposes only and does not constitute any investment advice.

İlgili Sorular

QWhat is the core concept of the TapeOut protocol, and how does it use blockchain technology?

AThe TapeOut protocol's core concept is to use the blockchain as a 'silicon wafer' and tokens as 'transistors.' It allows anyone to 'tape out' (manufacture) real, functional logic circuits on-chain by minting NAND gate tokens (based on ERC-1155) as the fundamental logic units. These tokens can be connected in a browser-based canvas to create circuits, which are then permanently burned to mint a circuit NFT (ERC-721). The resulting logic circuit is recorded as pure data on-chain and can be executed in a read-only, permissionless, and permanent manner.

QWhat are the key features of the 'Behemoth' CPU created by Blonskr on BNB Chain?

AThe key features of the 'Behemoth' CPU are: 1. **Permanence**: It runs permanently as long as BNB Chain continues to produce new blocks, and no one (not even its creator) can shut it down. 2. **Free Execution**: Anyone can query the circuit on-chain via read-only calls that do not require gas fees. 3. **Extremely Slow Speed**: Its clock is driven by BNB Chain's block production (~0.45 seconds per block), resulting in a default frequency of only 2.22 Hz. 4. **Secure Composability**: The on-chain circuits have no ability to call other contracts or write state; they can only return computation results, making them safe to use even from unknown sources. 5. **Historical Recreation**: It faithfully replicates the specifications of the 1971 Intel 4004 processor using 2,300 transistor tokens.

QHow does the TapeOut protocol achieve composability, and why is this considered a significant innovation?

ATapeOut achieves composability through its 'Processor Canvas' system. When designing a circuit, users can treat any pre-existing, on-chain circuit as a modular 'black box' and simply drag, drop, and connect it within their own design. This creates a Lego-like, hierarchical system for processor construction. This composability is considered a significant innovation because it enables trustless collaboration. Since on-chain circuits contain only pure computation logic with no permission to call external contracts or modify state, they are inherently safe to use. Users can confidently incorporate logic designed by strangers without fear of malicious side effects, which is a novel concept for on-chain execution.

QWhat potential future application or change does the article suggest could stem from the TapeOut concept?

AThe article suggests a potential future where the concept of 'mining' could be redefined by TapeOut. Instead of competing based on energy consumption and hardware quantity, miners could compete based on the ingenuity of their circuit designs. They could use their own specially designed, on-chain logic circuits to perform mining tasks. This would transform the definition of a 'miner' from an 'energy consumer' to a 'logic designer.'

QAccording to the article, what makes the TapeOut project noteworthy despite its technical limitations (like extreme slowness)?

ADespite its technical limitations (notably its extreme slowness at 2.22 Hz), the TapeOut project is noteworthy because it provides an extreme and novel answer to the question of 'what can be built on-chain.' It deconstructs computation to its most fundamental logical units (transistors/NAND gates) and reconstructs it using blockchain's properties of permanence, openness, and permissionless composability. It creates a new paradigm of on-chain execution that is purely computational, modular, and inherently safe. The project represents a highly technical, philosophical exploration of blockchain's potential beyond typical applications like DeFi or gaming, driven by a creator's curiosity and a commitment to open-ended experimentation.

İlgili Okumalar

Yield Leverage and Liquidity Leverage: The STONKBROKER Mechanism is Very Suitable for the RWA Scenario

The article argues that the STONKBROKER mechanism is highly suitable for Real-World Asset (RWA) tokenization scenarios due to its two key leverages: **Profit Leverage** and **Liquidity Leverage**. **Profit Leverage:** Traditional RWA models simply tie tokens to real-world asset yields. STONKBROKER's model is more engaging by allowing NFT holders to earn not only the underlying real-world cash flows but also additional yields generated from the on-chain system's own operations and transaction activity (like fees and slippage). This creates a dual income stream. **Liquidity Leverage:** Standard RWA asset bundles often suffer from poor liquidity. STONKBROKER's mechanism, which allows fixed-ratio swapping between NFTs and a platform's fungible token (and vice versa), solves this. It provides real-time market pricing and flexible exit options for each "RWA asset" NFT by unifying NFT liquidity with ERC-20 token liquidity via an AMM pool. This enhances capital efficiency and attracts more trading activity. The article further speculates on applying this model to broader RWAs (e.g., real estate, bonds). The core idea is to create a more dynamic, liquid, and profitable ecosystem where ordinary users can participate, combining real-world yields with the speculative and transactional energy of a crypto-native system. The author mentions being inspired by the launch of a project called @TheCardWall, which tokenizes high-grade physical trading cards.

marsbit16 dk önce

Yield Leverage and Liquidity Leverage: The STONKBROKER Mechanism is Very Suitable for the RWA Scenario

marsbit16 dk önce

Novig Sues Wisconsin as Sports Prediction Market Dispute Heats Up

Novig, a sports event prediction market operator, has filed a lawsuit against Wisconsin's attorney general. The legal dispute centers on whether prediction markets fall under federal derivatives regulations or state gambling laws. The lawsuit, filed in a U.S. district court, seeks a declaratory judgment after Novig began offering event contracts to Wisconsin residents. This case is part of a broader conflict. In April, Wisconsin sued other prediction market platforms like Kalshi and Polymarket, alleging their sports-related contracts violate state gambling laws. Novig argues its contracts are "swaps" regulated exclusively by the federal Commodity Futures Trading Commission (CFTC), under the Commodity Exchange Act. Wisconsin contends they are sports betting. Federal courts have issued conflicting rulings on similar cases, creating legal uncertainty. The outcome is significant as prediction markets are a fast-growing sector, with trading volume reaching $9.5 billion on a single day in August. These markets are also increasingly intertwined with cryptocurrency infrastructure. Simultaneously, Novig is pursuing a nationwide legal strategy, having filed similar lawsuits in four other states. The company also recently secured a marketing partnership with the New York Mets, marking the first such deal with an MLB team. The Wisconsin case's resolution will influence whether prediction markets can operate as national financial products or remain constrained by individual state laws.

cryptonews.ru57 dk önce

Novig Sues Wisconsin as Sports Prediction Market Dispute Heats Up

cryptonews.ru57 dk önce

Держатели XRP могут торговать опционами на платформе Derive, используя FXRP в качестве залога

XRP holders can now trade options on the Derive platform using FXRP as collateral, as announced by Flare on August 12. This integration allows users to open positions from self-custody wallets while the underlying XRP backing the FXRP remains on the XRP Ledger. According to DeFi analyst Will Procheska, this provides XRP's dedicated holder base with a permissionless options market for generating yield or hedging. Derive's platform combines protocol-level settlements with an order book managed by Derive Trading Co., enabling users to retain asset control while professional market-makers provide liquidity. XRP options on Derive are cash-settled in USDC, so profits or obligations adjust the trader's USDC balance without transferring XRP or FXRP. The platform's portfolio margin system assesses overall account risk but may still trigger liquidations if margin levels fall below requirements. The launch expands Flare's XRPFi ecosystem. FXRP, introduced via the FAssets system in September 2025, creates an on-chain representation of XRP for use in smart contracts. It has since been integrated into spot trading and, more recently, permissionless lending markets on Morpho. This addition of options on Derive offers XRP holders hedging and premium-earning capabilities comparable to other major assets. While regulated XRP options debuted on CME Group in October 2025, Derive provides a decentralized alternative with USDC settlement and direct wallet access. The platform also supports perpetual futures, offering further trading strategies. Flare and Derive are exploring automated "strategy vaults" to simplify yield-generating options approaches for users.

cryptonews.ru57 dk önce

Держатели XRP могут торговать опционами на платформе Derive, используя FXRP в качестве залога

cryptonews.ru57 dk önce

İşlemler

Spot
活动图片