Crypto news report · source clearly identified
ERC‑8392 proposes a unified status interface for tokenized stocks and real‑world assets
Ethereum developer Eric Conner has introduced ERC‑8392, a standard that lets smart contracts query market sessions, trading halts, valuation updates and redemption availability for tokenized assets, addressing the mismatch between continuous blockchain trading and limited traditional market hours.

Ethereum developer Eric Conner has put forward ERC‑8392, a draft standard that defines a common on‑chain interface for checking the operational status of tokenized assets such as stocks and other real‑world securities.
Why a status interface is needed
Tokenized stocks can be transferred or traded at any hour on a blockchain, while the underlying reference markets (e.g., the NYSE) are only open for about 32.5 hours each week. When the exchange is closed, price feeds may become stale, or they may fail altogether due to oracle issues, trading halts, or corporate events. Although the on‑chain data may look identical in each case, smart contracts need to react differently—for example, tolerating a stale price during a scheduled closure but suspending liquidations when a data feed has failed.
Core components of ERC‑8392
The draft introduces an IAssetStatus interface that covers four status categories:
- Market‑status: Indicates whether the reference venue is in regular trading, an extended session, an auction, or closed, and reports interruptions such as asset‑level or venue‑wide halts.
- Valuation‑status: Distinguishes expected lack of price updates (e.g., weekend closures) from genuine delays or unavailability of oracle data.
- Issuance‑status and Redemption‑status: Show whether new tokens can be minted or existing tokens redeemed, reflecting net‑asset‑value cut‑offs, subscription windows, or temporary pauses.
- Each category includes an UNKNOWN default to avoid misinterpreting empty storage as a healthy state.
Optional extensions can provide additional details, such as the ISO 10383 market identifier code for the reference exchange, enabling contracts to align on‑chain status with public exchange calendars.
How the interface is used
ERC‑8392 does not prescribe actions; it merely standardizes the queries a contract can make. Applications can then decide how to respond:
- Lending platforms might lower loan‑to‑value ratios when a market is closed, but continue operating if they have alternative pricing sources.
- Wallets could display warnings when valuations are delayed or redemption is unavailable.
- Protocols can track how often assets experience halts or delayed valuations for risk‑management purposes.
Relation to existing standards and ecosystem
The proposal is designed to coexist with other token standards. Stock‑split logic remains under ERC‑8056, while transfer restrictions are covered by ERC‑7943 or ERC‑3643. Current implementations use disparate methods: Ondo offers an off‑chain status API, Robinhood Chain tokens expose a proprietary oraclePaused() function, and many assets only provide a generic paused() flag.
Market context
Tokenized‑stock activity is expanding. Recent data shows the combined trading volume of tokenized stocks on Uniswap (Robinhood Chain) surpassed $1 billion, and the overall tokenized‑stock market is estimated at roughly $2.7 billion, up from $80 million a year earlier. Major issuers include Ondo, Binance’s bStocks, and Kraken‑backed xStocks.
Next steps
ERC‑8392 is still in draft form and open for technical review on Ethereum Magicians. Eric Conner is seeking feedback from issuers, lending‑market teams, and market‑structure experts. A reference implementation with a Foundry test suite is being prepared.
Source & attribution
News Source
- Publisher
- crypto.news
- Original date
- August 24, 2026, 6:13 PM
- Original headline
- ERC-8391 proposes asset status checks for tokenized stocks