Protocol Overview
MetaLedger Chain mainnet launched in Q2 2024 following successful alpha testing with 10 studio partners. The protocol is currently processing 1.8M+ transactions per day with 99.99% uptime. This documentation reflects the current production specification.
MetaLedger Chain is a purpose-built EVM-compatible Layer 2 designed for the specific transaction patterns, asset volumes, and UX requirements of modern Web3 games. Unlike general-purpose chains adapted for gaming use cases, MetaLedger's consensus mechanism, fee structure, account abstraction layer, and NFT primitives were designed from first principles around gaming workloads.
The protocol serves three distinct user classes simultaneously: game studios deploying smart contracts and managing economy parameters; players owning and trading assets; and the broader DeFi ecosystem that provides liquidity infrastructure to in-game markets. The architecture ensures that all three can participate without creating negative externalities for each other.
Chain Architecture
MetaLedger Chain is built on an optimistic rollup architecture with a 7-day challenge window, publishing state roots to Ethereum mainnet as the canonical settlement layer. Key protocol parameters:
Core Metrics
- Consensus: Optimistic rollup with decentralised sequencer set (12 operators at launch, governed by MLL stakers)
- Finality: Soft finality in <100ms; hard finality on Ethereum in ~12 minutes
- Throughput: 50,000 TPS peak; 8,000 TPS average under current load
- Transaction fees: Average $0.001 per transaction; sponsored transactions available via Paymaster
- Block time: 250ms
- EVM version: Cancun-equivalent with custom gaming precompiles
Gaming Precompiles
MetaLedger Chain includes three custom precompiled contracts that are not available on standard EVM chains:
- BatchMint (0x0A01): Mint up to 10,000 NFTs in a single transaction at the cost of approximately 200 gas per item — compared to 50,000+ gas per item on standard ERC-721
- DynamicMetadata (0x0A02): On-chain metadata mutation with atomic state consistency — enabling character progression, durability mechanics, and seasonal events without IPFS round-trips
- RoyaltyEnforce (0x0A03): Protocol-level royalty enforcement that runs as a required hook on every token transfer — not an advisory standard but a consensus-layer requirement
Cross-Chain Bridge Infrastructure
MetaLedger supports trustless asset movement to and from nine external chains: Ethereum, Solana, Polygon, Avalanche, BNB Chain, Arbitrum, Optimism, Base, and zkSync. Each bridge connection is independently audited and carries a separate insurance coverage mandate.
Bridge Security Model
MetaLedger bridges use a 3-of-5 multisig with hardware-secured key ceremonies for bridge operator rotations. In-transit assets are backed by a $5M insurance fund maintained in a diversified stablecoin reserve. Security assumptions:
- Optimistic verification: 2-hour challenge window for cross-chain messages
- No single operator can complete a bridge transaction unilaterally
- All bridge contracts are upgradeable via timelock with a 7-day delay and community veto right
- Real-time monitoring with automated circuit breakers that pause outbound bridges if anomalous volume is detected
NFT Economy Primitives
MetaLedger's NFT layer extends ERC-721 and ERC-1155 with three additional standards developed specifically for game economies:
MetaLedger Asset Manifest (MAM)
MAM encodes assets as capability declarations rather than static JSON. A MAM-compliant asset declares what it can do (equipped as weapon, traded, bridged, fused, burned), what it is compatible with (studio registry identifiers), and its full provenance chain from mint through every subsequent transfer. Any MAM-aware game client can render the asset correctly without custom integration work.
Fractional Ownership (ERC-MLL-2)
Rare assets can be fractionalised into up to 10,000 fungible shares. Fractional ownership enables high-value asset participation for retail players, secondary market price discovery, and DeFi collateralisation of game assets. Re-fusion of all shares into the original NFT is permissioned by the studio.
Marketplace APIs
The MetaLedger Marketplace API is a REST + WebSocket interface that studios embed into their game clients to enable in-game asset trading. The API handles order book management, smart order routing, royalty enforcement, and settlement — studios provide only the UI.
Key Endpoints
POST /v1/listings— Create a new listing with price, expiry, and royalty configurationGET /v1/listings?collection=&chain=— Retrieve active listings with filtering and sortingPOST /v1/orders/buy— Execute a purchase with atomic settlement guaranteeGET /v1/collections/:id/floor— Real-time floor price feed powered by AMM pricing modelWS /v1/events— WebSocket stream of all marketplace events for a given collection
Wallet SDK
MetaLedger Wallet SDK implements EIP-4337 Account Abstraction to deliver a Web2-equivalent onboarding experience for game players. Players authenticate with email, social login, or passkey — a smart contract wallet is provisioned automatically in the background.
Studios report an average integration time of 4–6 hours for Wallet SDK. Most studios are serving players with MetaLedger wallets within the same business day they begin integration.
- Authentication methods: Email OTP, Google OAuth, Apple Sign-In, passkey (WebAuthn), and seed phrase (advanced)
- Gas sponsorship: Studio Paymaster covers all gas for new wallets for the first 90 days by default
- Session keys: Players approve a session key for up to 8 hours, enabling in-game transactions without per-action approval popups
- Recovery: Social recovery via 3-of-5 trusted contacts, no seed phrase required
