Cube

What is Synthetic Assets?

Learn what synthetic assets are in DeFi, how they track external prices using collateral and oracles, and why their main risks come from the mechanism.

What is Synthetic Assets? hero image

Introduction

Synthetic assets are on-chain tokens or positions designed to track the value of something else. That “something else” might be a currency, a commodity, a stock, an index, or even a more abstract payoff. The central promise is simple: a blockchain cannot directly custody Apple stock or a barrel of oil in the way it custodies a native token, yet it can still create a market whose value moves like those assets. That is why synthetic assets matter in DeFi. They extend blockchains from being systems for transferring native crypto into systems for constructing financial exposure.

The interesting puzzle is that a synthetic asset works without being the asset it imitates. If a token tracks gold, but is not redeemable for gold, why should anyone price it like gold? If a synthetic dollar is not a bank deposit, why should it stay near one dollar? The answer is not branding or interface design. It is the mechanism tying together reference prices, collateral, and enforcement. Once you see that, synthetic assets stop looking like magical token wrappers and start looking like programmable derivatives.

That framing also explains why the category is both useful and fragile. Synthetic assets can give users access, composability, and capital mobility that would be difficult in traditional finance. But they also inherit the weaknesses of the machinery underneath them: bad oracle data, insufficient collateral, weak liquidation design, broken incentives, or legal constraints on what kinds of exposure a protocol can safely offer. In DeFi, the synthetic itself is usually the visible part. The real system is the risk engine behind it.

What does 'exposure without ownership' mean for synthetic assets?

A useful first distinction is between owning an asset and having economic exposure to an asset. If you own a share of stock, you have a legal claim to that share and whatever rights come with it. If you hold a synthetic version, you usually do not own the underlying security or commodity. Instead, you hold a position whose value is engineered to move with that underlying reference.

That makes a synthetic asset much closer to a derivative than to a wrapped token. A wrapped token typically represents an underlying asset locked somewhere else and is redeemable against it. A synthetic asset usually does not work by moving the real asset on-chain and issuing a receipt. It works by constructing a new on-chain claim whose price behavior is targeted to match an external reference. The distinction matters because the main question becomes not “where is the underlying stored?” but “what keeps this derivative aligned with the reference price?”

This is why secondary sources often define synthetic assets as tokenized derivatives that track the price movements of underlying assets on-chain. That wording is precise. “Tokenized” tells you the position is represented and transferable on-chain. “Derivative” tells you its value is derived from something else rather than from direct ownership. The mechanism can vary, but the economic structure is the same: the protocol is manufacturing exposure.

A synthetic dollar is the simplest example. Suppose a protocol issues a token intended to equal 1 USD. The token does not need a dollar bill in a vault to be useful as a synthetic dollar. What it needs is a credible mechanism that makes deviations from 1 USD expensive or short-lived. Some systems do that with collateral-backed debt positions. Some do it with market-making and arbitrage. Some try algorithmic balancing. The exact design differs, but the target is the same: maintain a tradable instrument whose value tracks an external reference.

How are synthetic assets created on-chain?

ModelCollateralCapital efficiencyPeg relianceBest for
Overcollateralized mintingLocked crypto collateralLowCollateral + arbitrageHigh-solvency exposure
Algorithmic seigniorageLittle or no collateralHighArbitrage incentivesLow-cost pegs (risky)
Market-making / AMM-backedLiquidity reservesMediumContinuous liquidityComposable tradability
Perpetuals / margin marketsMargin & fundingMediumMarket funding & liquidationsProfessional trading
Redeemable wrapped tokensUnderlying asset custodyLowDirect redemptionNative asset representation
Figure 215.1: Synthetic asset creation models compared

Most synthetic-asset systems follow the same broad pattern. First, the protocol defines a reference asset or payoff. Then it obtains price information about that reference through an oracle. Finally, it allows users to create, trade, and sometimes redeem or burn the synthetic under rules enforced by smart contracts.

The easiest way to understand the mechanism is through the most common design: overcollateralized minting. A user deposits collateral into a protocol and receives newly minted synthetic assets against that collateral. The user has effectively opened a debt position. The synthetic token they receive can now circulate, while their collateral stays locked to absorb adverse price moves.

Imagine a trader wants exposure to a synthetic stock token. They deposit crypto collateral worth more than the value of the synthetic they plan to mint. The protocol checks an oracle price for both the collateral and the referenced asset, computes whether the position is safely collateralized, and if so mints the synthetic token. If the referenced asset rises or the collateral falls, the position becomes riskier. If the collateral ratio drops too far, the protocol can force liquidation or require additional collateral. That is the fundamental enforcement loop.

This is why synthetic assets and collateralized debt positions are so closely related. In many systems, the synthetic is literally born as debt. The protocol is not saying “here is the underlying asset.” It is saying “here is a tokenized liability whose solvency depends on the collateral you posted.” Maker’s DAI, while usually discussed as a stablecoin, is a good example of the broader pattern: users lock collateral and mint a synthetic dollar-like asset against it. The same basic structure can be used for many non-dollar references.

The tradeoff appears immediately. Overcollateralization improves solvency because there is a buffer against volatility. But it also makes the system capital-inefficient. If a protocol requires far more collateral than the value of what is minted, users get synthetic exposure at the cost of tying up excess capital. Synthetix is a canonical example of this design choice: the protocol has historically used high collateralization ratios for minted synths. That improves safety against price shocks in the collateral but makes the system expensive to use as a pure exposure tool.

Why do synthetic assets require oracles?

Oracle typeUpdate speedManipulation riskBest when
Off-chain aggregated feedsPeriodic (secs–mins)Low–MediumLiquid off-chain markets
High-frequency push feeds (Pyth)Sub-secondMediumFast liquid markets
Optimistic / dispute oracles (UMA)Slow (challenge period)Economically securedCustom or rare assertions
On-chain DEX / TWAPDelayed averageHigh (single-tx)Liquid on-chain prices
Figure 215.2: Oracle types and trade-offs for synthetics

A synthetic asset can only track an off-chain reference if the chain can learn that reference somehow. That is the oracle problem. A smart contract cannot directly observe the price of Tesla stock, the USD/KRW exchange rate, or even a broad market index. It needs external data brought on-chain in a form the contract can trust enough to act on.

This is not an implementation detail. It is the boundary of the whole idea. Without a credible oracle, a synthetic asset has no anchor. The protocol might still have collateral and trading logic, but it no longer knows what price it is trying to track, when a position is undercollateralized, or whether minting and redemption are fair.

Chainlink’s documentation describes data feeds as data aggregated from many data sources by a decentralized set of independent node operators, while also noting that some feeds are exceptions and may rely on a single source or calculated values. That caveat matters more than it might first appear. For a synthetic asset, which feed you use is inseparable from the product’s risk profile. A decentralized aggregated feed and a thin, calculated, or single-source feed do not provide the same security even if both expose the same nominal price pair.

Pyth emphasizes a different oracle tradeoff: fast, deterministic on-chain price delivery across many chains. That matters for systems where liquidation speed and market responsiveness are critical. But high frequency does not remove the need to think about source quality, update semantics, or what happens under network stress. UMA takes yet another path with its optimistic oracle, where data can be proposed and disputed rather than continuously posted as a feed. That model is useful when the thing being asserted is not just a standard market price but some broader verifiable truth relevant to a derivative’s settlement.

The key point is that oracle design shapes synthetic-asset design. If price updates are slow, liquidations may lag. If the oracle can be manipulated, the synthetic can be mispriced. If the protocol depends on disputes, settlement may be slower but more flexible. There is no synthetic asset independent of its oracle assumptions.

How do synthetic assets maintain a peg or track reference prices?

MechanismImmediate effectRequiresCommon failure
Mint-burn arbitrageSupply adjustsActive arbitrageursOracle or execution failure
Collateral enforcement & liquidationsLoss absorptionFast, reliable liquidationsAuction or mempool failure
Market-making / AMMsProvide liquidityIncentivized LPsThin liquidity
Algorithmic stabilizersIncentive reflexParticipant confidenceLoss of confidence
Figure 215.3: Price-alignment mechanisms for synthetic assets

A synthetic asset does not automatically trade at its reference price just because the protocol says it should. Market price and target price are different things. The protocol can define the target; only incentives and mechanics can narrow the gap.

There are two broad forces that maintain alignment. The first is redeemability or mint-burn arbitrage. If users can mint a synthetic when it is overpriced and sell it, or buy it when underpriced and redeem or burn it, then traders have an incentive to push the market back toward the target. The second is collateral enforcement, which makes the synthetic credible enough that arbitrageurs trust the trade. If the market believes collateral can vanish or liquidations will fail, arbitrage weakens exactly when it is most needed.

Consider a synthetic dollar minted against collateral. If the token trades above 1 USD, someone can deposit collateral, mint the synthetic at the protocol’s internal accounting price, sell it above peg, and profit. That increases supply and pushes market price down. If it trades below peg, users may buy it cheaply and use it to close debt or redeem value, reducing supply and pushing price up. That is the mechanism. But notice the hidden assumptions: oracle prices must be correct, transaction execution must be possible, and users must believe the protocol’s accounting claims are actually enforceable.

This is why algorithmic synthetic designs are controversial. They often depend even more heavily on arbitrage incentives, with less explicit backing. In calm conditions, those incentives can appear elegant. In stress, they can fail together. The survey evidence is blunt here: algorithmic pegging mechanisms are inherently vulnerable because they rely on independent actors to perform stabilizing arbitrage and on reliable price information being continuously available. If either condition breaks, the peg can spiral away instead of self-correcting.

The Terra/UST collapse is the clearest warning. Whatever the exact triggers and sequence of market actions, the core lesson is not chain-specific: a system that promises stability through reflexive incentives rather than robust collateral can unwind violently once confidence falls faster than arbitrage can absorb deviations. In such systems, the stabilizing trade is only attractive while market participants believe others will keep participating. When that belief fails, the mechanism can reverse direction and accelerate collapse.

How does minting a synthetic stock token work (example walkthrough)?

Suppose a protocol offers a token that tracks the price of a public equity. A user posts 150 dollars worth of crypto collateral to mint 100 dollars of the synthetic stock token. The ratio is intentionally above 100% because the protocol expects both the collateral and the reference asset to move. At the moment of minting, the user has not acquired the stock itself. They have created an on-chain liability secured by collateral.

Now imagine the stock price rises by 20%. The synthetic supply that user created now represents 120 dollars of exposure, while the collateral may still be near 150 dollars or may have fallen if crypto markets are weak. The protocol recomputes the collateral ratio using oracle prices. If the ratio falls below the required threshold, the position becomes liquidatable. Liquidators can repay or absorb the synthetic debt in exchange for discounted collateral, restoring system solvency.

Notice what is happening economically. The protocol is not trying to make every synthetic token directly redeemable for a stock share. It is trying to ensure that the system as a whole remains solvent enough that the synthetic token remains credible as a tracking instrument. Solvency, not physical redemption, is the anchor.

Mirror used a version of this pattern for its mAssets on Terra: users opened positions and deposited collateral to mint mirrored assets designed to track real-world prices. Mirror also paired those assets against UST on Terraswap, which provided market liquidity but introduced another layer of dependency. The synthetic depended not only on its own collateral logic but also on the stability of UST and the health of the Terra ecosystem. That is a recurring DeFi theme: once systems compose, each layer inherits the others’ failure modes.

What operational and infrastructure risks threaten synthetic assets?

The most common misunderstanding about synthetic assets is that the main risk is the underlying asset moving. In reality, the greater risks are often in the plumbing that translates market moves into protocol actions.

Oracle failure is the clearest example. Synthetix documented an incident where one API intermittently reported the Korean won price at roughly 1000x the true rate. Because redundancy had degraded and the oracle averaged only the remaining sources, the bad price propagated into the exchange-rate contract. A bot detected the discrepancy and exploited it rapidly, generating enormous paper profits before the system was halted. The lesson is not just “oracles can fail.” It is that synthetic protocols can be attacked at machine speed whenever their pricing boundary becomes inconsistent with reality.

Even using off-chain feeds does not eliminate manipulation risk if those feeds ultimately depend on manipulable on-chain markets, or if the feed construction itself is weak. And using on-chain spot prices directly can be worse. As security researchers have emphasized, reading a DEX spot price during the middle of a transaction is often unsafe because the attacker can manipulate that price within the same transaction. For a synthetic protocol, that can mean underpriced minting, bad liquidations, or extraction from the system through temporary but exploitable state distortions.

Liquidation design is another hidden fault line. A collateralized synthetic is only as strong as its ability to resolve undercollateralized positions under stress. MakerDAO’s Black Thursday showed that even a mature CDP system can fail operationally when auctions, network congestion, and bot infrastructure interact badly. In that episode, mempool manipulation and weak keeper behavior contributed to liquidation auctions clearing in pathological ways. The synthetic idea itself was not the direct bug. The problem was that the system’s emergency machinery did not function well under extreme conditions.

This is a broader principle: liveness is part of solvency. A protocol may be solvent on paper if liquidations, auctions, or oracle updates happen as intended. But if they fail to execute when the market is moving fastest, insolvency can appear suddenly. That is why auction windows, bot software, gas conditions, and transaction-ordering assumptions are not peripheral engineering details. They are core parts of the financial design.

What are the main uses of synthetic assets in DeFi?

People use synthetic assets because they separate exposure from settlement constraints. If you want dollar exposure without relying on a bank deposit, a synthetic stablecoin is one route. If you want to trade an index, commodity, or equity-like payoff inside DeFi, a synthetic can provide that exposure in a form that integrates with wallets, lending protocols, AMMs, and derivatives venues.

That composability is the real advantage. A synthetic asset is not just something to hold. Because it is on-chain, it can be traded, pooled, posted as collateral, routed through smart contracts, or combined with other positions. This makes synthetic assets especially attractive in environments where access to traditional instruments is fragmented, expensive, or jurisdictionally constrained.

But this same flexibility also means a synthetic asset can stop being “just” a derivative and become infrastructure for other protocols. DAI is again the clearest example: even if users do not think of it as a synthetic asset in everyday conversation, it functions as a synthetic dollar that other DeFi systems rely on for collateral, accounting, and settlement. Once a synthetic becomes a base layer for other protocols, its failure can propagate outward.

Why are synthetic assets difficult to regulate and standardize?

Some synthetic assets are close in economic substance to products that traditional law already treats as swaps, derivatives, or securities-linked instruments. That does not settle every legal question, but it does explain why the category attracts scrutiny. The SEC’s complaint concerning Terraform and Mirror alleged that mAsset transactions functioned as security-based swaps, emphasizing that users posted collateral to gain exposure to securities price movements without owning the securities themselves. Whatever one thinks of that legal theory in every detail, the economic logic is not surprising: synthetic exposure often resembles familiar derivatives even when implemented with smart contracts.

This also explains why front ends or protocol teams sometimes narrow product offerings even if the contracts are technically capable of more. The design space of synthetic assets is larger than the set of products that can be offered, marketed, or governed without legal and operational friction.

At the same time, it would be a mistake to reduce synthetic assets to a legal category. Technically, the same core mechanism appears across many chains and architectures. Ethereum hosts familiar examples such as Maker, Synthetix, and UMA-based derivatives. Terra historically hosted Mirror. Oracle infrastructure now spans EVM chains, Solana, Aptos, Starknet, and others through networks such as Chainlink and Pyth. The pattern is not chain-specific. Whenever a blockchain can lock collateral, read reference data, and enforce margin rules, it can host synthetic exposure.

What fundamental design questions must every synthetic asset answer?

The fundamental part of a synthetic asset is simple: an on-chain position whose value is defined by reference to something else. To make that position work, every system must answer three questions.

First, what is the reference value and how is it measured? That is the oracle question.

Second, who absorbs losses when the reference moves against the position? That is the collateral and liquidation question.

Third, why should market price stay near target price? That is the arbitrage and market-structure question.

Everything else is a design choice layered on top. Whether the collateral is a native governance token, a basket of crypto assets, or a stablecoin is a choice. Whether updates come from a push-based oracle network, pull-based feed, optimistic assertion, or on-chain TWAP is a choice. Whether the synthetic is a freely circulating token, an internal accounting unit, or exposure embedded in a perpetual market is a choice. Those choices matter enormously in practice, but they are implementations of the same underlying problem.

This is also where many failures come from: a protocol treats one of these questions as already solved when it is only partially solved. A synthetic may have good collateral design but weak oracle assumptions. Or strong oracle infrastructure but poor liquidation liveness. Or robust solvency but thin secondary-market liquidity, so deviations from peg persist because arbitrage is too costly. A synthetic asset works only when all three answers hold together at once.

Conclusion

Synthetic assets let blockchains do something unusual: create tradable exposure without transferring the underlying asset itself. That is why they matter. They turn DeFi from a system for native tokens into a system for programmable derivatives.

But the important truth is easy to miss: a synthetic asset is only as real as its enforcement machinery. If the oracle is wrong, if collateral is inadequate, or if liquidations fail, the “asset” stops being a reliable mirror and becomes just another risky token. Remember it this way: synthetics are not about imitation; they are about credible replication of price exposure.

How to evaluate a DeFi lending or collateral market before using it

Before trading or buying tokens tied to a lending or collateral market, verify the protocol’s core risk assumptions and operational behavior. After you finish these checks, you can use Cube Exchange to trade or hedge exposure with greater situational awareness.

  1. Read the protocol docs or inspect the contracts to record the required collateralization ratio, liquidation threshold, and liquidation penalty. Note any divergence between nominal ratios and the historic average on-chain ratios.
  2. Audit the oracle design: list the feed providers, aggregation method, update frequency, and any TWAP or dispute windows. Flag single-source feeds, long TWAP windows, or sparse update cadence.
  3. Test liquidation liveness: check whether liquidations use auctions or keeper-based claims, the auction window length, typical gas used in past liquidations, and any incidents where liquidations stalled.
  4. Map accepted collateral and composability: identify which assets the protocol accepts, their market depth on major venues, and whether the synthetic is used as collateral elsewhere (circular exposure risk).
  5. Review operational history and safeguards: read audit reports, timelock parameters, past oracle or liquidation incidents, and available insurance or emergency modules. Only after these checks, use Cube Exchange to enter, adjust, or hedge your position.

Frequently Asked Questions

How do synthetic assets actually stay close to the external price they’re supposed to track?
+
Protocols rely on two complementary forces: mint/redemption or mint-burn arbitrage that lets traders profit from and therefore correct deviations, and collateral enforcement (liquidations or debt claims) that makes the synthetic credible; both require correct oracle prices and reliable execution to work in practice.
Why are oracles such a central design decision for synthetic-asset systems?
+
Oracles are essential because smart contracts cannot observe off-chain prices themselves; the oracle choice (aggregated feeds, high-frequency feeds, or dispute-based assertions) directly shapes security, responsiveness, and failure modes of the synthetic, so there is no synthetic-asset design independent of its oracle assumptions.
What’s the difference between a wrapped token and a synthetic asset?
+
A wrapped token represents and is redeemable for a specific underlying asset locked elsewhere, whereas a synthetic is a tokenized derivative whose value is engineered to track a reference without transferring or holding the underlying itself.
Why are algorithmic stablecoins or algorithmic pegs considered fragile compared to collateral-backed designs?
+
Algorithmic pegging mechanisms typically depend heavily on arbitrage incentives and continuous reliable price information, so in stressed markets when arbitrageurs withdraw or prices stop being reliably reported the peg can unwind rapidly, as exemplified by the Terra/UST collapse.
If the synthetic is backed by collateral, why do protocols still get hacked or collapse?
+
Most failures come from plumbing: oracle misreports, exploitable feed construction, liquidation liveness issues, and transaction-ordering or mempool manipulation can all enable rapid extraction or uncontrolled insolvency even when the economic model looks solvent on paper.
How does overcollateralization trade off safety and capital efficiency in synthetic-asset designs?
+
Overcollateralization raises safety by providing a volatility buffer and reducing insolvency probability, but it reduces capital efficiency because users must lock more value than the exposure they receive.
Could synthetic assets be treated as securities or regulated derivatives under existing laws?
+
Regulators have argued that some synthetic constructions economically resemble swaps or securities because users post collateral to gain price exposure without owning the underlying, and the SEC’s complaint against Terraform/Mirror explicitly framed mAssets in those terms, so regulatory classification is an active legal risk rather than purely a technical question.
What are the systemic risks when synthetic assets are used as infrastructure by other DeFi protocols?
+
Because synthetics are on-chain tokens, other protocols commonly use them as collateral, liquidity, or accounting primitives, which increases composability but also means a failure in a widely used synthetic can propagate losses across many dependent protocols.
What core design decisions must be made to build a synthetic asset?
+
A designer must answer three core questions: what the reference is and how it’s measured (oracle design), who bears losses when the reference moves (collateral and liquidation rules), and what keeps market price near the target (arbitrage, redeemability, and market structure); every other choice implements one of those answers.
Are on-chain TWAPs (time-weighted average prices) a safe way to feed prices for synthetics, or do they introduce other risks?
+
Time-weighted averages can reduce susceptibility to single-transaction manipulation but sacrifice responsiveness during fast moves, and no oracle approach is free: reporter-backed, TWAP, push-feed, or optimistic/dispute oracles each introduce trade-offs between speed, manipulability, and trust assumptions.

Your Trades, Your Crypto