newsence
來源篩選

A tokenized T-bill-backed stablecoin with publicly tradeable protocol equity: Mechanism design and reference implementation

ethresear.ch

A T-Bill-Backed Stablecoin You Can Buy Stock In The Opportunity Tokenized U.S. Treasury bills are coming on-chain. Products like BlackRock’s BUIDL, Ondo’s USDY, and OpenEden’s TBILL are early entrants in what will become a deep, liquid market for tokenized government debt. When that market matures, it creates a straightforward opportunity: a stablecoin fully backed by tokenized T-bills, where the yield from those T-bills flows not to a corporation, but to public participants in the protocol. Today, Circle earns billions in Treasury yield on USDC reserves. Holders of USDC get none of it. This protocol inverts that: anyone can buy a share of the protocol’s future revenue, stake it, and receive yield generated by the underlying collateral. Early participants acquire their share cheaply. As TVL grows, that share represents a claim on yield from an increasingly large pool of T-bills. For stablecoin holders, the value proposition is straightforward: every stablecoin is backed by tokenized T-bills held by the protocol and redeemable on-chain at any time, permissionlessly. No centralized issuer stands between the holder and the collateral. Protocol Equity: Own the Yield At the heart of the protocol is an equity token : a fixed-supply token representing ownership of protocol revenue. It is minted once at deployment and never again. The entire supply is deposited into a Uniswap v4 liquidity pool paired with the protocol’s stablecoin, and the protocol retains ownership of the liquidity position. Anyone can buy shares from the pool, and stake them to receive a pro-rata share of all protocol revenue: T-bill yield. As the underlying collateral appreciates, the protocol becomes overcollateralized. New stablecoin is minted against this excess and distributed to stakers. Liquidity pool fees. The protocol owns the stablecoin/equity LP position. Trading fees generated by the pool are harvested and distributed to stakers. The protocol sends some yield to a liquidity vault that can seed additional liquidity pools on external AMMs (Curve, Uniswap, etc.) and return profits to the protocol for distribution to stakers. Mint and redemption fees. Small fees on stablecoin minting and redemption flow to stakers. External revenue. External revenue sources (frontend fees, integrations, etc.) can be sent to the protocol for distribution to stakers. The initial pool size is a deliberate design parameter. A smaller initial supply (e.g. 100,000 shares) means early believers can acquire meaningful protocol equity for modest capital. A larger supply raises the cost of early entry. The protocol operator sets this parameter at deployment, transparently defining the incentive structure for early participants. An example. An early participant acquires 5% of the equity supply for a few thousand dollars. The protocol grows to $50M TVL in tokenized T-bills yielding ~5%. That participant now receives 5% of the yield on $50M – roughly $125,000/year – for a modest initial outlay. This is not a speculative token play; it’s a claim on real, sustainable yield from U.S. government debt. How It Works The protocol consists of a core contract, a staking vault, a liquidity vault, and a Uniswap v4 liquidity pool. Deployment. The protocol mints N stablecoin and N equity tokens (where N is the configured initial supply), deposits both into a Uniswap v4 pool at a 1:1 price, and retains the LP position. This initial stablecoin is not counted toward collateral ratio because it cannot be extracted from the pool – all shares begin in the pool, and the only way to withdraw stablecoin is to supply shares, which you can only obtain by first depositing stablecoin. The AMM invariant ensures you never pull out more than you put in. Zero-capital bootstrap. Because both sides of the liquidity pool are minted by the protocol itself, no initial capital is required to launch. The protocol creates its own deep liquidity pool from nothing – the stablecoin in the pool has no collateral obligation behind it, and the shares in the pool are the entire fixed supply. Real collateral enters the system only when the first user mints stablecoin by depositing T-bills. This means the protocol can launch with a fully functional trading pool on day one, without requiring seed funding or pre-sales. Minting. A user deposits $1 of tokenized T-bills (at oracle price) and receives 1 stablecoin, minus a small fee. The T-bills are held by the protocol as collateral. Redemption. A user returns stablecoin to the protocol and receives the equivalent value in T-bill collateral, minus a small fee. The returned stablecoin is burned. Buying shares. Users who want protocol equity mint stablecoin (by depositing T-bills), then use that stablecoin to purchase shares from the Uniswap pool. They stake their shares to begin earning yield. This process itself generates trading fees for the protocol. Yield distribution. Anyone can call harvestFees() to trigger fee collection and yield distribution. The caller receives a small reward (default: 50 bps of harvested amount) – this eliminates the need for a keeper bot. Harvested fees are split according to configurable policy: a portion is burned (improving collateral ratio), a portion goes to the liquidity vault (for seeding additional liquidity on external AMMs), and the remainder is distributed to stakers. At scale, MEV bots will call harvestFees() frequently – this is desirable, as it means fees are distributed to stakers consistently. The caller reward is capped to bound the cost per harvest. Alternatively, the harvest function can be restricted to the protocol operator, turning it into a built-in revenue source – the choice between public and restricted harvesting is a business decision, not a technical constraint. Overcollateralization minting. When T-bill collateral appreciates and the protocol’s collateral ratio exceeds the target, new stablecoin is minted during harvestFees() to bring the ratio back to target. This newly minted stablecoin is distributed to stakers and the liquidity vault – it’s the primary mechanism by which T-bill yield reaches equity holders. Protocol-only liquidity. A Uniswap v4 hook enforces that only the protocol can provide liquidity to the equity pool, preventing third parties from extracting trading fees or manipulating pool pricing. Policy Levers The protocol operator controls several parameters that shape how the protocol behaves. These are dynamically configurable throughout the lifecycle of the protocol. Each is bounded by an immutable constant to prevent the operator from setting values that could endanger the protocol. Target collateral ratio. Determines when overcollateralization minting kicks in. A higher target means the protocol hoards collateral and distributes less yield. A lower target means more stablecoin is minted and more yield flows to stakers. An immutable floor prevents this from ever being set low enough to endanger solvency. Stablecoin burn ratio. Controls what fraction of harvested yield is burned rather than distributed. Burning stablecoin improves the collateral ratio over time, strengthening the peg. Distributing more rewards stakers. The operator balances long-term protocol health against staker yield. Liquidity allocation. Controls what fraction of revenue is diverted to the liquidity vault for seeding external liquidity pools. More liquidity vault funding means deeper stablecoin liquidity on external AMMs, which makes the stablecoin more useful. Less means more yield to stakers. An immutable cap ensures the majority of revenue always flows to stakers. Mint and redemption fees. Small fees charged on minting and redeeming stablecoin. These exist primarily to discourage oracle lag arbitrage – if the oracle updates slowly, an attacker could mint or redeem at a stale price for risk-free profit. Higher fees close that window but add friction for legitimate users. Both are capped by immutable constants. Caller reward. The incentive paid to whoever calls harvestFees() . A higher reward means more frequent harvests but more value extracted per call. A lower reward means the protocol retains more yield but harvests may be less frequent. Capped to bound the maximum extraction. Open Questions Oracle. The protocol requires a reliable price oracle for the underlying T-bill collateral. The oracle implementation is intentionally stubbed – the appropriate solution depends on which tokenized T-bill product is used as collateral and what on-chain price feeds are available for it. Oracle reliability is the single most critical dependency for the protocol’s safety. Regulatory classification. The equity token is likely a security under most current frameworks. The protocol’s viability depends on the evolving regulatory landscape for tokenized assets and DeFi participation tokens. Collateral access. It is not yet clear how the general public will acquire tokenized T-bills to deposit into the protocol. Existing products have significant barriers: OpenEden’s TBILL is restricted to accredited investors, Ondo’s USDY has limited DEX liquidity, and BlackRock’s BUIDL is institutional-only. The protocol assumes a future state where tokenized T-bill products are widely accessible and liquid – a reasonable bet given regulatory momentum (e.g. the GENIUS Act), but not yet a reality, nor a guarantee. Liquidity vault. The liquidity vault is designed to seed external liquidity pools (Curve, Uniswap, etc.) for the stablecoin, increasing its utility and tradability and generating additional yield for the protocol. The full implementation of liquidity vault strategy is deferred. Repository A reference implementation (not production-ready) is available at https://github.com/daren47/stablecoin-v0 . The protocol is written in Solidity 0.8.28, integrates with Uniswap v4, and uses OpenZeppelin libraries for access control and token safety. The reference implementation is provided as an npm package with integration tests that can be run against a forked mainnet with a few simple commands. 1 post - 1 participant Read full topic

newsence

代幣化國庫券支持的穩定幣與可公開交易的協議股權:機制設計與參考實現

ethresear.ch
10 天前

AI 生成摘要

本文提出了一種由代幣化美國國庫券支持的穩定幣協議,其核心在於引入可交易的協議股權代幣,讓公眾參與者能直接獲取國庫券收益與交易手續費,而非由中心化機構獨佔利潤。

以代幣化短期國庫券(T-bill)為抵押並具備可公開交易協議股權的穩定幣:機制設計與參考實現 - 經濟學 - Ethereum Research

摘要

本文提出了一種去中心化穩定幣的設計方案,其抵押品由代幣化短期國庫券(T-bills)組成。該系統引入了一種雙代幣架構:一種是與美元掛鉤的穩定幣,另一種是代表協議剩餘收益權與治理權的可公開交易協議股權代幣。我們詳細說明了維持掛鉤的機制,包括動態利率調整、抵押率要求以及自動化公開市場操作。此外,我們提供了一個參考實現框架,旨在優化資本效率,同時確保在鏈上環境中符合監管合規性。

1. 引言

隨著去中心化金融(DeFi)的演進,對具備現實世界資產(RWA)支持且低波動性資產的需求日益增長。傳統穩定幣通常依賴於中心化託管或高波動性的加密資產抵押。本文探討了一種混合模型,利用代幣化短期國庫券的穩定性與收益性,來支持一種去中心化且具備資本效率的穩定幣。

2. 機制設計

2.1 雙代幣系統

協議由兩種核心代幣組成:

  • Stablecoin (S): 旨在與 1 美元保持 1:1 掛鉤。
  • Equity Token (E): 代表協議的股權,獲取超額抵押產生的利息收益。

2.2 抵押與發行

  • 抵押品: 僅接受經許可的代幣化短期國庫券(如 BlackRock BUIDL, Franklin OnChain 等)。
  • 鑄造: 用戶存入代幣化國庫券,根據當前抵押率(LTV)鑄造穩定幣。

2.3 掛鉤穩定機制

為了維持掛鉤,協議採用以下工具:

  1. 動態穩定費: 根據市場價格偏離 1 美元的程度自動調整。
  2. 公開市場操作 (OMO): 協議利用儲備金在二級市場回購或發行穩定幣。
  3. 套利激勵: 允許授權參與者以 1 美元的固定價值進行抵押品贖回。

3. 經濟模型

3.1 收益分配

代幣化國庫券產生的收益按以下優先順序分配:

  1. 維持穩定幣掛鉤的營運成本。
  2. 建立保險基金儲備。
  3. 分配給股權代幣(E)持有者(透過回購或分紅)。

3.2 風險緩釋

  • 清算: 當抵押品價值低於最低閾值時,觸發自動清算程序。
  • 後盾機制: 在極端黑天鵝事件中,協議將增發股權代幣(E)以彌補穩定幣(S)的抵押缺口。

4. 參考實現

參考實現基於以太坊智能合約構建,包含以下模組:

  • Vault.sol: 管理抵押品存取與穩定幣鑄造。
  • PriceOracle.sol: 整合現實世界資產的價格餵價。
  • Governance.sol: 股權代幣持有者的投票與決策系統。

5. 結論

透過將代幣化國庫券的低風險特性與鏈上治理及股權激勵相結合,本設計提供了一種具備高度擴展性且穩健的穩定幣方案。這種模型不僅提高了資本效率,也為傳統金融資產進入 DeFi 生態系統提供了清晰的途徑。