A Strategy fork · On Ethereum

The floor only rises.

A memetic on-chain abstraction of MicroStrategy's BTC-per-share dynamics, encoded as a Uniswap V4 hook. Not affiliated with Strategy Inc. — see Disclaimer § 3.

Strategoi · June 2026 · strat.meme

Abstract

A purely on-chain treasury mechanism would allow Bitcoin-style accumulation dynamics to be encoded directly into an automated market maker, without an issuing corporation. A constant 2% fee on every buy and sell is routed by a Uniswap V4 hook into a contract-controlled reserve. The reserve never disburses dividends, never repays debt, and cannot be voted to dilute. Each transaction therefore raises the reserve per token monotonically. When the market price falls below the on-chain reserve floor, the same hook reverses direction: the treasury market-buys the token and burns it, raising reserve-per-token further. The mechanism is reflexive in only one direction — upward. We propose this as a memetic abstraction of MicroStrategy's BTC-per-share strategy, with the corporate intermediary removed.

LIVE · CANONICAL MAINNET

FLOOR N

wETH/STRAT

RESERVE R

wETH

SUPPLY S

STRAT

MULTIPLE m

P/N

MINT $STRAT — accretive issuance

STRAT

Enter an amount above the floor. Cost paid in wETH → reserve. New STRAT minted to your wallet.

Introduction

Commerce on financial markets has come to rely almost exclusively on corporate intermediaries serving as trusted accumulators of scarce assets. Strategy Inc., formerly MicroStrategy, demonstrated that a public company could be operated as a Bitcoin accumulation vehicle, growing the number of Bitcoin held per share for over twenty consecutive quarters since August 2020. The model requires the company's equity to trade at a premium to the net asset value of its Bitcoin treasury — its mNAV multiple[1]. While the premium holds, issued equity is accretive: each new share sold above NAV adds more Bitcoin per share than it dilutes.

The model fails when mNAV falls below 1.0. New equity issuance becomes dilutive, the company cannot fund preferred-stock dividends from issuance alone, and the treasury must be sold to service obligations. In late May 2026, Strategy disclosed its first Bitcoin sale since 2022[2]. The reflexivity broke.

What is needed is a mechanism that captures the upward part of the reflexive loop and structurally cannot enter the downward part. There can be no preferred holders to pay, no debt to roll, no corporate overhead to fund. There is only the reserve, the token, and the hook.

The Mechanism

Let R denote the on-chain reserve balance, denominated in the pool's quote asset (here, wrapped ether). Let S denote the total token supply. The reserve-per-token, hereafter the floor, is defined as

N = R / S(1)

Let P denote the price of the token in the quote asset, read by the hook as a lagged anchor that is updated only when at least thirty seconds have passed since the previous anchor. The lag makes single-block flash-loan manipulation of P ineffective. The market-to-NAV multiple, by direct analogy to mNAV, is

m = P / N(2)

The V4 hook intercepts every swap and takes a fixed 2% fee on the input amount, applied to both exact-input and exact-output swaps. The fee is routed by the currency on which it is denominated: wETH fees raise R, STRAT fees burn supply lowering S. Both paths raise N.

The hook also exposes a permissionless mint(uint256 stratOut) entry point. Any caller may invoke it to mint stratOut new STRAT to themselves, paying stratOut × max(P, N) in wETH. The proceeds are routed to the reserve. Because the price paid per STRAT is at least N, every mint is accretive by construction: R grows by stratOut × max(P, N), S grows by stratOut, and the new floor

N′ = (R + stratOut · max(P, N)) / (S + stratOut)  ≥  R / S = N(3)

holds with equality only when P = N exactly. Below floor (P < N) the hook reverts the mint — a dilutive issuance is structurally impossible. This is the literal porting of MicroStrategy's at-the-market equity issuance: anyone can buy a new share at a price not below NAV, and every such purchase strictly grows BTC-per-share. There is no issuer, no underwriter, no lockup — the hook is the open ATM facility.

Case 1: m ≥ 1 (Accumulation)

The fee is denominated in the quote asset and forwarded to the reserve contract without conversion. Because the buyer paid at or above the floor, this transfer is by definition accretive. The supply S is unchanged. The reserve R grows. The floor N increases.

Case 2: m < 1 (Defence)

The hook exposes a permissionless defend(maxSpend) function. Any caller may invoke it; when m < 1, the hook withdraws up to maxSpend of quote asset from the reserve and executes a market-buy of the token, the proceeds of which are burned. The swap is clamped at the sqrt-price corresponding to N, so the average execution price cannot exceed N. Both R and S fall, the rate of supply contraction strictly dominates the rate of reserve depletion under this clamp, and the floor N rises. The multiple m tends back toward unity from below. Defence is not automatic per block — it is permissionless but requires an external transaction. Operators and MEV bots are expected to maintain a defend keeper post-launch.

swapper (buy or sell) 2% V4 hook if m ≥ 1: route to R if m < 1: buy & burn FIG.01 reserve R wETH only 0xdead burned $STRAT
Figure 1. Routing of the 2% hook fee in the two cases. In both, the reserve-per-token N rises.

The Ratchet

The mechanism we describe satisfies the following invariant: at every swap that touches the pool, NtNt-1. The reserve-per-token is a monotone-increasing function of time. This is the property of a mechanical ratchet, which permits motion in one direction and prohibits it in the reverse direction. We accordingly say that the reserve-per-token is ratcheted upward.

No external authority — no multisig, no governance vote, no owner key — can release the reserve. The reserve contract is permanently bound to a single outflow: market purchases of $STRAT for burn, executed only when m < 1.

Tokenomics

Initial supply

1,000,000,000 STRAT seed

Tax (buy / sell)

2% / 2%

Mint authority

Hook accretive only

Quote asset

wETH uniswap v4

Initial reserve

0 grows from fees

Team allocation

0 none, ever

Implementation

The token contract is a standard ERC-20 with an initial mint of one billion tokens — used to seed the V4 LP. All subsequent issuance comes through the hook's permissionless mint() function and is gated by the accretive check above. The hook is the sole minter, set as an immutable address at construction; no other authority can ever issue STRAT. The reserve contract is a minimal vault that accepts wrapped-ether deposits from a designated hook address. The hook is the only permitted caller of the reserve's burn-router approval path. The pool key is a canonical Uniswap V4 pool with STRAT/wETH, fee 3000, tickSpacing 60, and the hook bound to the afterInitialize, beforeAddLiquidity, beforeSwap, and afterSwap flags. The hook constructor accepts an expected-pool fingerprint (a hash of currency0, currency1, fee, and tickSpacing); afterInitialize rejects any pool whose fingerprint does not match, eliminating the mempool race in which an attacker could initialize a malicious pool against the hook between deployment and seeding.

To prevent single-block manipulation of P, the hook reads from a lagged price anchor updated in afterSwap only when at least thirty seconds have passed since the previous anchor. Flash-loan spot moves cannot move the read until they are sustained across the window. To prevent dilution attacks, liquidity additions whose pool spot is below the current floor are reverted in beforeAddLiquidity.

Conclusion

We have proposed a treasury mechanism that captures the accumulating half of the reflexive loop and structurally excludes its dilutive half. There are no preferred holders, no debt instruments, no corporate overhead, no quarterly obligations. There is only the reserve, the supply, and the hook between them.

The floor only rises.

References

  1. Bitbo. "Strategy (MicroStrategy) Bitcoin Holdings Chart & Purchase History." Live treasury tracker — basis for mNAV multiple analysis.
  2. Coindesk. "Michael Saylor's Strategy sold 32 bitcoin for $2.5 million to fund dividend payments." (June 2026). First disclosed net bitcoin disposal since 2022, explicitly to fund preferred-stock (STRC) dividends.
  3. Nakamoto, S. "Bitcoin: A Peer-to-Peer Electronic Cash System." (2008).
  4. Adams, H. et al. "Uniswap v4 Core." (2024).