StableMoney.Dev

Technical reference for engineers building with stablecoins

USDeSyntheticRank #3

Ethena USDe

Ethena Labs

Market cap (static): ~$6B

EIP standards (ERC-20, permit, proxies…)

Overview

Third-largest stablecoin and most technically novel. Achieves dollar peg via delta-neutral hedge — users deposit ETH/BTC collateral while the protocol opens an equal short perpetual futures position. Yield flows from funding rates and ETH staking to sUSDe holders.

Features

Engineering-oriented breakdown of capabilities: standards, who they matter for, integration rationale, per-feature risks, and vetted external references (specs, docs, verified source).

Protocol repo: github.com/ethena-labsPrimary Ethereum verified source: Etherscan
FeatureStandardsAudienceWhy it mattersRisk / caveatReferences
Delta-neutral peg mechanism
stability
BothPeg is engineering/economics of hedge + collateral, not bank redemption — model risk from derivatives and custodial workflows.Stress in funding, basis, or exchange connectivity can break peg assumptions on secondary markets.
ERC-4626 vault — sUSDe
yield
UsersUSDe accrues yield in vault shares — integrate with standard ERC-4626 preview/deposit/withdraw interfaces.Cooldowns and slashing-like events are protocol-specific; read StakedUSDe constraints.
Funding rate yield
yield
UserYield is not a fixed APY — driven by perp funding; systems displaying yield need live or conservative estimates.Negative funding can erode returns or stress hedges; CEX dependency matters.
ETH staking layer yield
yield
UserLST yield stacks with funding — understand which LSTs are accepted and oracle treatment.LST depeg or slashing flows to protocol risk.
Off-exchange settlement custody
compliance
CorporateCollateral movement uses institutional settlement rails — relevant for risk teams mapping counterparty exposure.Counterparty and operational failure modes are off-chain; not visible in token contract alone.
LayerZero OFT cross-chain
cross chain
  • LayerZero OFT
BothCross-chain USDe uses OFT — integrate LayerZero endpoints and peer configs like other OFT assets.Endpoint misconfiguration can cause loss of fungibility across chains.
Permissioned mint/redeem
compliance
CorporatePrimary mint/redeem may be allowlisted — most DeFi users interact via AMM secondary markets instead.KYC gates change who can arb peg; liquidity path risk for retail.
EIP-712 signed mint orders
authorization
UserMint path uses typed structured data signatures — wallets must implement correct EIP-712 domain for Ethena contracts.Signature bugs are high severity; test on testnets with official domains.

EIP / ERC support matrix

Standards support for USDe. Click an EIP to jump to the global deep-dive section.

StandardStatusNotes
ERC-20
Fungible token standard
ImplementedTreat USDe like any ERC-20 for DEX and lending integrations; custody and mint paths are protocol-specific.
EIP-712
Typed structured data signing
ImplementedBuilders of mint widgets must implement the minting order schema from Ethena’s contracts — not generic transferWithAuthorization.
EIP-2612
Permit — gasless ERC-20 approval
ImplementedEnables single-transaction DeFi flows when paired with permit-aware routers and paymasters.
EIP-3009
transferWithAuthorization
Not implementedPayment relayers that depend on EIP-3009 must use permit + transferFrom composition or a wrapper.
EIP-1967
Standard proxy storage slots
ImplementedIntegrators must pin the proxy address and monitor implementation changes in audit releases.
EIP-1822
UUPS — universal upgradeable proxy
UnknownUUPS vs transparent proxy changes who can brick upgrades — verify before forking.
ERC-4626
Tokenized yield vault standard
ImplementedERC-4626-aware aggregators can price and route sUSDe like other vault shares; account for cooldown when quoting user exits.
EIP-1271
Signature validation for smart contracts
Not implementedContract wallets may need middleware or EOAs for permit signing unless future upgrades add validation hooks.

Technical notes

Core contracts — EthenaMinting.sol (mint/redeem with EIP-712 signed orders), StakedUSDe.sol (ERC-4626 vault with 7-day unstaking cooldown), USDe.sol (ERC-20 plus EIP-2612 permit). Mint flow: user signs EIP-712 order → relayer submits → atomic collateral swap → USDe minted in same block. Off-exchange settlement custodians: Copper ClearLoop, Ceffu (Binance institutional), Fireblocks. October 2025 flash crash caused brief $0.65 price on thin Binance order book — on-chain Curve pool maintained peg throughout.

Reserves & peg

Reserves
stETH, ETH, BTC, USDC, USDtb plus offsetting short perpetual positions on Binance, Bybit, OKX, Deribit
Collateral
Crypto + derivatives hedge
Peg mechanism
Soft — delta-neutral math maintains backing, no guaranteed 1:1 redemption
Auditor
Quantstamp, Cyfrin (smart contract audits)

Ecosystem

DeFi integration
Major Curve pools (USDe/USDC, USDe/DAI), Aave collateral, Pendle yield-stripping
Yield
sUSDe ~5–20% APY variable (funding-rate dependent)

Risk factors

highFunding rate can go negativemediumCEX counterparty riskhighExtreme gap-down liquidationmediumNot classified as payment stablecoin under GENIUS Act
Official documentationOfficial GitHub

Networks & contracts

Deployments by chain — primary rows are highlighted. Always verify addresses against issuer docs before mainnet integrations.

NetworkStandardContractExplorer
EthereumPrimary
ERC-20
0x4c9EDD5852cd905f086C759E8383e09bff1E68B3
View
ArbitrumSecondary
LayerZero OFT
See Ethena docs for OFT address

Via LayerZero OFT

BNB ChainSecondary
LayerZero OFT
See Ethena docs for OFT address

Via LayerZero OFT, Binance Earn integration

Engineering deep dive

Integration notes

USDe is not a bank-token redeemable 1:1 for USD in your wallet—understand sUSDe accrual, cooldowns, and that peg comes from hedging infrastructure, not a simple reserve account.

Risk surface

Funding and exchange-counterparty assumptions matter for any product built on top; stress-test for negative funding and exchange stress scenarios.