Skip to Content
Native FeaturesFuture Features

Future Features

These features are planned for future TOS Network releases.

Feature specifications may change during development. Check release notes for updates.

P2 Priority Features

Cross-Chain Bridge

Target: Mainnet 6 months

Native cross-chain messaging and asset bridging.

Planned Capabilities:

  • Multi-signature validation
  • Cross-chain message verification
  • Asset locking/minting

Supported Chains (Planned):

  • Ethereum
  • BSC
  • Bitcoin (via HTLC)
  • Solana
// Planned API pub mod CrossChainSyscall { /// Verify cross-chain message fn verify_cross_chain_msg( source_chain: ChainId, message: CrossChainMessage, proof: MultisigProof, ) -> Result<(), CrossChainError>; /// Lock assets for bridging fn bridge_lock( asset: Asset, target_chain: ChainId, target_address: Vec<u8>, ) -> Result<Hash, CrossChainError>; }

Oracle Integration

Target: Mainnet 6 months

Native price feeds and external data integration.

Planned Capabilities:

  • Decentralized price aggregation
  • Outlier detection and filtering
  • Price subscription callbacks
  • Historical price queries
// Planned API pub mod OracleSyscall { /// Get current price fn get_price( base_asset: Hash, quote_asset: Hash, ) -> Result<PriceData, OracleError>; /// Subscribe to price updates fn subscribe_price( pair: (Hash, Hash), callback_contract: Address, threshold_bps: u16, // Min change to trigger ) -> Result<u64, OracleError>; /// Get historical price fn get_price_at( pair: (Hash, Hash), timestamp: u64, ) -> Result<PriceData, OracleError>; } pub struct PriceData { pub price: u64, // Price with 8 decimals pub timestamp: u64, // Last update time pub confidence: u16, // Data quality (basis points) pub sources: u8, // Number of data sources }

Comparison:

FeatureChainlinkTOS Native
Query cost$0.10$0.001
Update frequencyVariableBlock-level
Integration complexityHighLow
Requires external tokenYes (LINK)No

Feature Roadmap

Q1 2026

  • Atomic Swap (P1)
  • Enhanced MEV Protection

Q2 2026

  • Cross-Chain Bridge (P2)

Q3 2026

  • Oracle Integration (P2)
  • Advanced Governance

2027

  • Layer 2 scaling
  • ZK rollup support
  • Advanced privacy features

Contributing

Interested in contributing to TOS Network development?


Stay Updated

  • Follow development on GitHub
  • Join the Discord community
  • Subscribe to the newsletter
  • Check release notes for new features
Last updated on