LogoLogo
WhitepaperMultiSwapHelp CenterWebsite
Ferrum Network - Whitepaper
Ferrum Network - Whitepaper
  • Welcome to the Ferrum Network
  • πŸ‘‹Introduction
    • πŸ“Overview
      • 🏁Ferrum Network Mission
      • 🌎Market Opportunity
      • βš–οΈProblem and the Solution
      • πŸ—ΊοΈ10,000 Foot View – A gateway to the multichain future
  • πŸ› οΈArchitecture
    • βš’οΈCore Tech
      • πŸ“Overview
      • ❓Why Polkadot?
      • βš™οΈRUST Programming Language
      • πŸ› οΈSubstrate Framework
      • ⛓️Ferrum Runtime
      • 🀝Quantum Portal
        • πŸ“Overview
        • ⛏️Quantum Portal Miner (QPM)
        • πŸ“Quantum Portal Validator (QPV)
        • βš™οΈQuantum Portal Smart Contracts (QPSC)
        • 🧱Quantum Portal Blocks (QPB)
        • πŸ”Quantum Portal Multichain Explorer (QPME)
        • Ferrum Testnet Node
      • βš–οΈValue-Constrained PoS Rollup (VCPR)
      • πŸ‘₯Multi-Chain Validators Staking
    • 🧱Standards
      • βš–οΈBIS - Blockchain Interoperability Standards
      • πŸ“BIP - Blockchain Interoperability Proposals
    • Security
      • Securing the Network
      • Securing the Rollup
    • Glossary & Acronyms
      • Glossary
  • πŸ’‘Use Cases
    • Multichain Token
    • Bridging Value
    • Multichain Staking
    • Build Once, Deploy Everywhere
  • πŸͺ™Tokenomics
    • Token Utility
    • Monetary Policy
    • Token Categories
  • βš–οΈGovernance
    • Ferrum Network DAO
      • πŸ“Overview
      • βž•Voting Eligibility and Process
      • ✍️Proposal Creation
        • πŸ“Steps
Powered by GitBook
On this page
  • Ferrum Network's Key Technologies
  • Offchain Workers
  • Substrate Frontier
Edit on GitHub
  1. Architecture
  2. Core Tech

Ferrum Runtime

Chain maximalism is so 2017! It's time to build a multi-chain future together.

PreviousSubstrate FrameworkNextQuantum Portal

Last updated 2 years ago

The core Ferrum runtime specifies the state transition function and behavior of the Ferrum Network. Ferrum Runtime is built using. By utilizing FRAME and relevant substrate pallets, we are able to take advantage of the work done by industry pioneers and focus on building our use case solutions instead of reinventing the wheel for basic runtime operations. We utilize a set of standard pallets and have created custom pallets to fit our use cases where applicable. We compile the runtime into a native and binary. Utilizing the security of the relay chain the binaries are executed in Ferrum's node environment.

List of a few Substrate Frame Pallets utilized by Ferrum's runtime:

  • Balances β€” Support for accounts, balances, and transfers

  • EVM β€” Rust-based EVM implementation based on SputnikVM used for state transition logic for Ferrum Network-based smart contracts

  • Ethereum β€” Provides emulation of Ethereum block processing for the EVM

  • RPC-Ethereum β€” Web3 RPC implementation in Substrate

  • Council β€” Includes governance mechanics around the council and proposals

  • Democracy β€” Functionality for public stake-weighted token holder voting

  • Executive β€” Orchestration layer that dispatches calls to other runtime modules

  • Indices β€” Support for user-friendly short names for account addresses

  • System β€” Provides low-level types, storage, and blockchain functions

  • Treasury β€” On-chain treasury that can be used to fund public goods such as a parachain slot

  • Aura - used to select block producers and validators for the network consensus.

Ferrum Network's Key Technologies

The Ferrum network makes use of two cutting-edge technologies in the Substrate ecosystem to enable the functionality of our crosschain node.

Offchain Workers

The blockchain runtime has to always remain deterministic; this has inherent limitations like the runtime cannot execute any non-deterministic tasks like an external API call. To overcome this, we use the substrate off-chain worker, Off-chain workers allow your Substrate node to offload tasks that take too long or too many CPU / memory resources to compute or have a non-deterministic result. In particular, there are a set of helpers allowing the fetching of HTTP requests and parsing for JSON. It also provides storage that is specific to the particular Substrate node and not shared across the network. Off-chain workers can also submit either signed or unsigned transactions back on-chain.

Substrate Frontier

Frontier is Substrate's Ethereum compatibility layer. It allows you to run unmodified Ethereum dApps.

The goal of the Ethereum compatibility layer is to be able to:

  • Run a normal web3 application via the compatibility layer, using local nodes, where an extra bridge binary is acceptable.

  • Be able to import state from Ethereum mainnet.

Using substrate frontier allows the Ferrum node to utilize all the security aspects of the substrate and Polkadot ecosystem while still remaining fully compatible with any EVM chain. This allows developers to migrate their smart contracts from any evm chain to the Ferrum Network without any change.

πŸ› οΈ
βš’οΈ
⛓️
the substrate FRAME pallets
Wasm