Skip to main content

Atomence -- Cross-Chain Settlement Layer

U.S. Patent Application 63/998,160 (Filed March 6, 2026)

Atomence is Vexidus's cross-chain settlement layer for outbound exits. While VexBridge handles inbound token migration (depositing tokens from other chains into Vexidus), Atomence handles outbound settlement (exiting tokens back to their origin chains).


Why Not Just Reverse the Bridge?

VexBridge uses a burn-and-mint model -- tokens on the source chain are burned or rendered stateless, then canonical equivalents are minted on Vexidus. Reversing this process presents fundamental challenges:

ProblemImpact
No vault to withdraw fromVexBridge has no locked assets -- tokens were burned, not deposited
Cross-chain finality delaysWaiting for origin chain confirmation adds minutes to hours of latency
Gas cost on origin chainEvery exit requires an on-chain transaction on the destination (Ethereum gas, Solana fees)
Liquidity fragmentationEach bridge direction needs independent liquidity and verification infrastructure

Atomence solves this by introducing market makers who hold inventory on both sides and settle exits from their own reserves.


How It Works

User wants to exit 1 SOL from Vexidus back to Solana:

1. USER → Atomence: "I want to exit 1 SOL to [Solana address]"
2. ATOMENCE → Matches to best Market Maker (lowest spread, sufficient inventory)
3. MM → Sends 1 SOL on Solana directly to user's Solana address
4. MM → Submits Solana TX hash as settlement proof
5. ATOMENCE → Verifies TX on-chain (confirms recipient + amount via Solana RPC)
6. SETTLED → Fees split, inventory updated, user has SOL on Solana

No vault. No escrow smart contract. No wrapped tokens. The market maker settles from their own inventory, and the proof is verified directly on the origin chain.


Market Maker Tiers

Market makers register by staking VXS, which determines their tier and capabilities:

TierVXS StakeMax SpreadPriorityDescription
Tier 110,000 VXS50 bpsStandardIndividual market makers
Tier 250,000 VXS30 bpsPreferredProfessional desks
Tier 3500,000 VXS20 bpsHighestInstitutional market makers

Higher tiers get priority matching on larger orders and tighter maximum spread bands.


Settlement Verification

Atomence verifies every settlement directly on the origin chain -- no trust assumptions:

ChainVerification Method
SolanaRPC getTransaction -- confirms recipient address and lamport transfer amount
Ethereum / BSC / EVMRPC eth_getTransactionReceipt -- confirms recipient, value, and success status
ERC-20 / SPL TokensTransfer event log parsing (EVM) or token account balance diff (Solana)

Settlement proofs are checked in real-time. If the MM's transaction doesn't match the expected recipient and amount, the settlement is rejected.


Real-Time Features

WebSocket Notifications

Atomence provides a WebSocket hub for real-time updates:

EventRecipientDescription
order:newAll MMsNew exit order available for matching
order:matchedAssigned MMOrder matched, settlement window opens
order:settledMM + UserSettlement verified, fees distributed
order:timed_outMM + UserSettlement window expired
inventory:updateMMPost-settlement inventory balances
inventory:alertMMRebalance warning (inventory skew >80/20)
price:updateAll clients2-second price ticker with live oracle prices

Oracle Pricing

Atomence integrates Pyth Network oracles for real-time pricing of all supported assets. Prices are cached with 500ms freshness and include confidence interval filtering to reject stale or unreliable quotes.


Fee Model

Fees are split 50/50 between the market maker and the protocol:

Exit 1 SOL at $175 (20 bps spread):

User pays: $0.35 total fee
MM receives: $0.175 (incentive to provide liquidity)
Protocol: $0.175 (Vexidus treasury)

Spread is set by the market maker within their tier's maximum. Competition between MMs drives spreads down.


Supported Chains

ChainNative AssetToken SupportStatus
SolanaSOLSPL tokensLive (devnet proven)
EthereumETHERC-20Client built
BNB ChainBNBBEP-20Client built
BitcoinBTC--Planned

Current Status

MilestoneStatus
Foundation + APIComplete
WebSocket real-time hubComplete
Real Solana devnet settlement (0.01 SOL E2E)Proven
Inventory rebalance monitoringComplete
Multi-chain EVM settlementIn progress
Frontend integrationPlanned

Atomence vs Traditional Bridge Exits

DimensionAtomenceTraditional Bridge Exit
Settlement speedSeconds (MM sends immediately)Minutes to hours (finality + relay)
Counterparty riskMM inventory (verified on-chain)Vault/relayer (trust assumptions)
Gas costsSingle origin-chain TXMultiple TXs (unlock + verify + relay)
Liquidity sourceMarket maker reservesLocked vault capital
Proof verificationDirect origin-chain RPCOracle attestation or light client
User experienceRequest → receive (2 steps)Initiate → wait → claim (3+ steps)
Capital efficiencyMMs deploy capital productivelyCapital locked idle in vaults

Relationship to VexBridge

Atomence and VexBridge are complementary:

INBOUND (deposit):   Source Chain  →  VexBridge (burn/limbo)  →  Vexidus (canonical mint)
OUTBOUND (exit): Vexidus → Atomence (MM-matched) → Origin Chain (direct send)

VexBridge handles the cryptographic proof that tokens were destroyed on the source chain. Atomence handles the economic settlement of getting tokens back to users on origin chains. Together, they provide complete cross-chain interoperability without vaults.


API Endpoints

EndpointMethodDescription
/vbamm/assetsGETList supported assets with live prices
/vbamm/price/:ca/:chain_idGETPrice quote for specific asset and chain
/vbamm/orderPOSTSubmit exit order
/vbamm/order/:idGETCheck order status
/vbamm/order/:id/settlePOSTSubmit settlement proof
/vbamm/mm/registerPOSTRegister as market maker
/vbamm/mm/inventoryPOSTUpdate MM inventory
/vbamm/wsWSReal-time WebSocket hub
/vbamm/ws/statsGETWebSocket connection statistics