A Token That Eats Itself:

via Uniswap v4 Hooks

$helix, an anonymous deployment
Ethereum · 0x7b3fc11c8c1d5ffd

Abstract. A purely peer-to-peer version of a scarce digital asset would allow scarcity to be enforced without recourse to issuance schedules, governance, or custodial supply control. Existing deflationary tokens delegate burn logic to off-chain bots or trusted owners, reintroducing the very trust their scarcity is meant to remove. We propose a solution using a Uniswap v4 hook that intercepts every swap and forwards a fixed fraction of the transacted supply to address(0). The hook applies an asymmetric schedule: purchases pay 1%, sales pay 5%, with the sell-side fee funding an in-pool buyback before destruction. The token contract exposes no mint function and no owner. The system is non-interactive, non-upgradable, and produces a circulating supply that is strictly monotonically non-increasing for as long as the pool is traded.

1. Introduction

Commerce on the open AMM relies almost exclusively on liquidity providers and arbitrageurs serving as trusted third parties to determine the velocity of supply. Tokens marketed as deflationary typically depend on a privileged address — a multisig, an owner-only burn function, or a centralised market maker — to retire supply on some discretionary schedule. While these designs may approximate scarcity, they suffer from the inherent weakness of the trust-based model: the very entities expected to destroy tokens are also free not to.

What is needed is a token whose contraction of supply is enforced not by any party's good behaviour but by the cryptoeconomic rails that carry the asset itself. With the v4 hook interface, the AMM can host arbitrary logic at the moment a swap is executed. We use this primitive to bind a burn instruction to every transfer of liquidity, making the destruction of supply a mechanical consequence of trade rather than a discretionary act.

2. The Hook

We define the protocol as a single Uniswap v4 pool — (ETH, $helix) — whose PoolKey is registered with a hook address satisfying the prefix bits for BEFORE_SWAP and AFTER_SWAP. On every swap() call routed through the v4 PoolManager, the hook is invoked with the swap direction and signed amount. Let q denote the gross amount of $helix involved in a given swap and let τ ∈ {τb, τs} denote the rate applied to that direction. Then the destroyed quantity for that swap is

δ = τ · q, τb = 0.01, τs = 0.05.

For a buy, the hook reduces the output owed to the swapper by δ and forwards δ to the zero address before settlement. For a sell, the hook claims δfrom the inbound $helix, internally swaps it back through the same pool against the ETH leg, and burns the resulting $helix output. The seller therefore funds their own destruction; the protocol's buyback budget grows with sell pressure rather than depleting under it.

3. Supply Dynamics

Let S(t) denote the circulating supply at time t, and let nb(t) and ns(t) be the running counts of buy and sell swaps respectively. Define Δ(t) = S(0) − S(t) as the cumulative destruction. Then, for any swap i of gross size qi,

S(ti) = S(ti−1) − τi · qi.

Because τi, qi ≥ 0 and the contract has no mint function, the sequence S(ti) is monotonically non-increasing. We invite the reader to inspect this property empirically in Figure 1.

00111S(t) — circulating supplytimecomputing on-chain history…
Figure 1. Empirical supply path S(t) of $helix from genesis to present, sampled at every observed swap. Initial supply S(0) is fixed; subsequent values can only decrease.

4. Asymmetric Destruction

The five-to-one tax differential between sells and buys is the central economic claim of the design. Define the asymmetry ratio ρ(t) as the cumulative supply destroyed via sells divided by the cumulative supply destroyed via buys. Under any market regime in which sell-side volume is non-trivial, ρ(t) exceeds unity, and the marginal cost of exiting a position grows with the size of that position.

The asymmetry serves two purposes simultaneously. Mechanically, it routes a larger share of every distribution event back into supply destruction. Behaviourally, it imposes a Schelling cost on coordinated exits: an attempt to dump the token funds, in real time, a buyback of the token from the same pool, raising the marginal sale price for subsequent sellers.

0.000.250.500.751.00B(t) — cumulative tokens destroyedtimebuys (1%)sells (5%)computing on-chain history…
Figure 2. Cumulative supply destroyed via buys (solid) and sells (dashed) since genesis. The vertical gap is the cumulative effect of fee asymmetry.

5. Live Parameters

The following table is read from Ethereumstate every three seconds. All values are direct on-chain reads of the token contract and the hook's public burn counters; nothing in the table is editorial.

Spot price
24-hour change
Market capitalisation
Circulating supply
Initial supply
Cumulative tokens destroyed
Destruction ratio Δ(t)/S₀
Destroyed via buys (1%)
Destroyed via sells (5%)
Sell/buy asymmetry ρ
ETH spent on buyback
Most recent burn
Table I. On-chain protocol state at t = now.

6. Trade Log

Each row below corresponds to a single Burned event emitted by the hook, in reverse chronological order. The token-burned column links directly to the originating transaction on the canonical block explorer.

iside$helix destroyedETHtraderage

7. Wallet Position

No wallet connected. [connect] to view balance, cumulative contribution to Δ(t), and trade count.

8. References & Deployment

[1] $helix token (ERC-20, no mint)0x7b3fc11c6d6ec005229a7cfd399c20fe8c1d5ffd
[2] $helix hook (v4 afterSwap/beforeSwap)0x78BA30ACF4332E67214334d36c73634e402720c4
[3] Uniswap v4 PoolManager0x000000000004444c5dc75cB358380D2e3dE08A90
[4] Universal Router0x66a9893cC07D91D95644AEDD05D03f95e1dBA8Af
[5] Trade $helix ↔ ETHapp.uniswap.org →

$helix · Ethereum · supply is monotone in t.