LogoLogo
TwitterWebsiteTestnet
  • Introduction
    • About B3X
  • World Market
    • Introduction
    • Problems with Current Markets
      • DeFi's Never-Ending Cold Start Problem
      • Limited Utility for Existing Assets
      • CeFi Dominates with 100x Volume
      • Outdated DeFi Perps Offerings
      • Consistent Battle for Liquidity
      • Stablecoins with No Use-case
      • Unfair LP Treatment
      • No Settlement Venue is Best
  • Introducing: The World Market
    • Solving the Crypto UX Nightmare
    • Purposeful Stablecoins
    • Unlimited Open Interest
    • Enabling Deep Liquidity
    • LPs as 1st Class Citizens
    • First-Principle Orderbook Design
  • World Modules
    • Delta-Neutral Stablecoin
    • Yield-Bearing Stablecoin
    • Long-Only Vault
    • Short-Only Vault
    • Long vs Short Vault
    • Lending
    • Funding Rate Collector
  • Future: Supercharged DeFi
    • User-Centric Intent, Action, and Execution Marketplace
    • Yield Trading
    • Simplified Market Experience
    • LPs as First-Class Citizens: Mini DAOs
    • Building Distribution for all — Chains, Protocols and Users
    • Resolving Cold-start Problem
    • Launching New Markets
    • Building Solutions with Derivatives as a First Principle
    • Bootstrapping TVL Growth: Unlocking DeFi’s True Potential
    • Boosting Token Utility
    • Meaningful Second-order Incentives
    • Boosting Economical Security of DeFi protocols
  • Our Call to Action
  • Technical Specs
    • Architectural Design
    • Pricing Mechanism
    • Risk Management
      • Risk Factors
      • Price Protection
      • Auto Deleverage
      • Liquidation
    • Settlement Design
    • Asset Management
    • Market Management
  • Fees
  • Testnet
    • World Market (Rise)
  • World Fund
    • Introduction
    • The Problem
    • Architecture
      • User Layer
      • Human-driven Application Layer
      • AI-driven Application Layer
      • Infrastructure Layer
    • Core Components
      • Fund Builder
      • Quant Agent
      • Strategy Framework
    • Decentralized Architecture
    • Execution Layer
    • Conclusion
    • References
    • Original Whitepaper PDF
  • Economics
    • World Market
    • World Fund
  • External Links
    • Website
    • Twitter
    • Discord
Powered by GitBook
On this page

Was this helpful?

Export as PDF
  1. Technical Specs

Asset Management

Any market requires one or more assets to be whitelisted for its successful creation. A non-whitelisted asset cannot be used for market creation. The protocol uses a two-step process to reduce the protocol’s security and systematic risk. All the logical implementation of handling asset-related parameters is stored in the Asset Manager. All asset-related parameters are available to be configured at the time when the user requests whitelisting of an asset by calling requestAddAsset(), which takes several asset-related parameters. Upon receipt of such request, the protocol validates the request and handles the addition of the assets based on risk parameters.

Some of the key parameters for an asset, for example, ETH requested to be whitelisted are:

Shortable: Allow anyone to short ETH.

Longable: Allow anyone to long ETH.

Stable: Allow anyone to use ETH as a stablecoin asset in the protocol.

Longable: Allow anyone to long ETH.: Allow anyone to use ETH as a collateral for trading.

Reference: Allow anyone to use ETH as a reference asset.

SwapEnabled: Allow anyone to swap for or to ETH.

LeverageTradingEnabled: Allow anyone to open ETH trades. Works only if Reference, Shortable and Longable are true for ETH.

DecentralizedSourcesEnabled: Allow ETH to have decentralized pricing source such as Chainlink, Pyth etc. for price discovery.

CentralizedSourcesEnabled: Allow ETH to have real world pricing sources such as Binance, Bybit, etc for price

For each asset, the Asset Manager will create an object of type CryptoAssetProps or TimedMarketAssetProps after performing mandatory checks actions both on-chain and off-chain, such as validating price feeds, chainids of the addresses and asset parameters. Upon passing all the valid checks, the asset will be whitelisted in the protocol to be used as a market asset.

As decentralized finance continuous to grow, we will see influx of unique assets emerging which can also be whitelisted in the protocol to create a market.

PreviousSettlement DesignNextMarket Management

Last updated 15 days ago

Was this helpful?