Platform

Overview

How It Works

Beneficiary Identity

Policy Corridors

Deterministic Finality

Architecture

Security Model

Governance

Integration

Solutions

Corridors Overview

Institutional Overview

Pricing

All Scenarios

Humanitarian Impact Fund

Assurance

Technical Assurance

Verify Receipt

Receipt Example

Developers

Documentation

APIs & Bridges

Architecture Docs

Glossary

BID API

Company

About

Team

Partners

Roadmap

Investors

Contact

Blog

All Documentation

Schedule Consultation
← Back to Patent Claims
Patent Claim 29 All Patents →

Bridge Authority Wrapper Tokens

Cross-Chain Token Minting Without L1 Engine Modification

Patent Claim JIL Sovereign February 2026 Claim 29 of 36

01Executive Summary

JIL Sovereign implements cross-chain wrapper tokens (jBTC, jETH, jUSDC) using a bridge authority account pattern that requires only the existing PaymentTx transaction type on the L1 ledger. This eliminates the need for any modifications to the Rust consensus engine, achieving full token wrapping and unwrapping functionality through a pre-funded authority account and standard payment operations.

Minting is accomplished by sending a PaymentTx from the bridge authority account to the user's account, while burning is accomplished by the user sending a PaymentTx back to the bridge authority. The bridge authority account is pre-funded with the maximum supply of each wrapper asset, and the bridge relayer holds the Ed25519 private key that authorizes mint transactions.

Core Innovation: Full cross-chain token wrapping functionality without modifying the L1 consensus engine. By reframing minting as a payment from a pre-funded authority account and burning as a payment back to that account, the system achieves the same economic result as native mint/burn operations using only the existing PaymentTx primitive. This dramatically reduces the security surface area and audit complexity of the bridge.

02Problem Statement

Cross-chain bridges typically require native mint and burn operations in the destination chain's consensus layer. Adding these primitives to a production blockchain engine introduces significant risk: new consensus rules must be validated by all nodes, new transaction types expand the attack surface, and any bug in mint logic could result in unlimited token creation.

2.1 The Bridge Implementation Dilemma

  • Native Mint/Burn: Requires modifying the Rust L1 engine to support new transaction types, expanding the consensus attack surface and requiring a hard fork for deployment.
  • Smart Contract Minting: Requires a smart contract execution environment on the L1, which may not exist or may introduce its own security risks.
  • Wrapped Token Standards: Standards like WETH on Ethereum use deposit/withdraw contracts, but these assume a Turing-complete execution environment.

2.2 Why Existing Approaches Fail

ApproachL1 Changes RequiredSecurity RiskLimitation
Native Mint/Burn TxNew consensus rulesHigh - mint bug = infinite supplyHard fork required for deployment
Smart ContractEVM/WASM runtimeMedium - contract vulnerabilitiesRequires execution environment
Custodial IOUNoneCounterparty riskNot trustless - centralized custody
Atomic SwapHTLC supportLowNo persistent wrapper tokens
The Gap: No production bridge achieves trustless wrapper token functionality on a UTXO-style or payment-only L1 without modifying the consensus engine. JIL Sovereign's bridge authority pattern solves this by treating the authority account as a virtual mint/burn facility, using standard payment transactions that the existing consensus engine already validates.

03Technical Architecture

The bridge authority pattern operates with three components: a pre-funded authority account on the JIL L1, a bridge relayer service that holds the authority's signing key, and the existing PaymentTx validation logic in the Rust consensus engine.

3.1 Wrapper Token Registry

JIL AssetOriginal ChainOriginal TokenDecimalsContract Address
jBTCEthereumWBTC80x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599
jETHEthereumETH (native)180x0000000000000000000000000000000000000000
jUSDCEthereumUSDC60xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48

3.2 Authority Account Model

The bridge authority account (bridge_authority) is pre-funded with the maximum supply of each wrapper asset at genesis or via the development faucet. This account's Ed25519 private key is held exclusively by the bridge relayer service. When a user deposits BTC on the external chain, the relayer signs a PaymentTx transferring the equivalent jBTC from the bridge authority to the user. The total minted across all users can never exceed the pre-funded amount, providing a hard supply cap without consensus-level enforcement.

3.3 Transaction Flow Comparison

OperationTraditional BridgeJIL Bridge AuthorityL1 Tx Type
Mint (Wrap)MintTx(asset, amount, to)PaymentTx(bridge_authority, user, amount)PaymentTx
Burn (Unwrap)BurnTx(asset, amount, from)PaymentTx(user, bridge_authority, amount)PaymentTx
Supply CheckContract.totalSupply()maxSupply - bridge_authority.balanceQuery

04Implementation

4.1 Deposit to Mint Flow

  1. External deposit detected: Bridge watcher monitors the external chain for deposits to the bridge contract address and submits deposit records to the bridge relayer.
  2. Confirmation tracking: The relayer tracks block confirmations on the external chain (e.g., 6 confirmations for Bitcoin, 12 for Ethereum) before considering the deposit confirmed.
  3. Auto-mint trigger: Once the deposit reaches the required confirmation threshold, the relayer automatically constructs and signs a PaymentTx from bridge_authority to the user's JIL L1 account for the equivalent wrapper asset amount.
  4. Ledger recording: The PaymentTx is submitted to the L1 ledger, validated by consensus (14-of-20 validators), and the user's account balance increases by the wrapper token amount.
  5. Status update: The deposit record transitions to "minted" status and the wrapper token's total minted counter is incremented in the bridge database.

4.2 Unwrap to Burn Flow

  1. User initiates unwrap: User requests an unwrap through the wallet API, specifying the wrapper asset, amount, and external chain destination address.
  2. Passkey challenge: The wallet API generates a WebAuthn passkey challenge for the user to sign the burn transaction (PaymentTx from user to bridge_authority).
  3. Transaction submission: The signed PaymentTx is submitted to the L1 ledger, transferring the wrapper tokens from the user back to the bridge authority account.
  4. Withdrawal recording: A withdrawal record is created on the bridge relayer, triggering the validator signature collection process.
  5. Release execution: Once 14-of-20 validator signatures are collected (BFT threshold), the equivalent amount is released on the external chain to the user's destination address.

4.3 Proof of Reserves

The bridge relayer exposes a /v1/reserves endpoint that reports the total minted vs. total deposited for each wrapper asset. Because the bridge authority account balance is publicly queryable on the L1 ledger, anyone can independently verify that total_minted = max_supply - bridge_authority_balance and cross-reference against external chain deposit records.

05Integration with JIL Ecosystem

5.1 Wallet API

The wallet API provides user-facing endpoints for the complete wrap/unwrap lifecycle: listing available wrapper tokens, getting deposit quotes with confirmation estimates, initiating unwrap with passkey authentication, and tracking unwrap progress through to external chain release.

5.2 DEX Trading

Wrapper tokens (jBTC, jETH, jUSDC) are tradeable on the DEX v5 retail lane and RFQ system. Pre-seeded trading pairs include jBTC/jUSDC and jETH/jUSDC, enabling users to trade wrapped external assets against each other using the batch auction clearing engine.

5.3 Settlement Consumer

Wrapper token transfers settle through the P2P zone-authorized settlement architecture. Each transfer is routed to the appropriate compliance zone topic on RedPanda, where the authorized validator processes settlement including compliance checks, ledger commits, and proof generation.

5.4 Protection Coverage

Wrapper token balances are included in the user's total protected value for protection coverage calculations. A Premium tier user holding jBTC worth $200K and JIL tokens worth $50K has $250K+ total protected value, all covered under the automatic protection coverage.

Engineering Simplicity: The bridge authority pattern required zero changes to the Rust L1 engine (jil5600-core), zero new consensus rules, and zero hard forks. The entire wrapper token system was implemented as a service-layer feature using only the existing PaymentTx primitive, reducing audit scope and deployment risk to near zero.

06Prior Art Differentiation

SystemWrapping MethodL1 ChangesSupply ControlJIL Advantage
WBTC (Ethereum)ERC20 mint/burn contractNone (EVM native)Custodian-controlledJIL is non-custodial with validator BFT
tBTC (Threshold)Threshold signing + mintNone (EVM native)Threshold groupJIL needs no smart contract runtime
Cosmos IBCIBC transfer moduleIBC module requiredEscrow accountJIL uses only PaymentTx - no new modules
Solana WormholeProgram mint/burnNone (Solana native)Guardian setJIL avoids smart contract vulnerabilities
Avalanche BridgeChainBridge + mintARC20 supportRelayer setJIL pre-funds authority for hard supply cap
Key Differentiator: JIL Sovereign is the only bridge that achieves trustless wrapper token functionality on a payment-only L1 without any consensus engine modifications, smart contract execution, or new transaction types. The bridge authority account pattern transforms a limitation (no native mint/burn) into a security advantage (smaller attack surface, hard supply cap, simpler audit).

07Implementation Roadmap

Phase 1
Months 1 - 3

Core Bridge

Deploy bridge authority account with jBTC, jETH, jUSDC wrapper registrations. Implement deposit detection and auto-mint flow. Build passkey-authenticated unwrap flow. Deploy proof-of-reserves endpoint for public verification.

Phase 2
Months 4 - 6

Multi-Chain Support

Extend deposit watchers to additional external chains (Solana, Polygon, Arbitrum). Add wrapper tokens for additional assets (jSOL, jMATIC). Implement multi-chain confirmation tracking with chain-specific thresholds.

Phase 3
Months 7 - 9

Validator BFT Release

Full 14-of-20 validator signature collection for external chain releases. Distributed key management for bridge authority signing. Cross-zone settlement for wrapper token transfers. Real-time reserves dashboard.

Phase 4
Months 10 - 12

Production Hardening

Third-party bridge security audit. Automated rebalancing of bridge authority reserves. Emergency pause mechanism for bridge operations. Insurance integration for bridge-related loss events.

08Patent Claim

Claim 29: A system for cross-chain token wrapping and unwrapping on a blockchain ledger that supports only payment transactions, comprising: a bridge authority account pre-funded with a maximum supply of each wrapper asset on the destination ledger; a minting operation implemented as a standard payment transaction from the bridge authority account to a user account, signed by the bridge relayer holding the authority account's private key, triggered upon confirmed deposit of the corresponding asset on an external chain; a burning operation implemented as a standard payment transaction from a user account to the bridge authority account, authenticated by the user's passkey, followed by collection of validator signatures at a Byzantine fault tolerance threshold and release of the corresponding asset on the external chain; a wrapper token registry mapping each wrapped asset identifier to its original chain, original token address, and decimal precision; and a proof-of-reserves mechanism wherein the total minted supply is verifiable as the difference between the pre-funded maximum supply and the current bridge authority account balance on the public ledger.