Skip to main content

Welcome to Pons Network

Pons Network is a decentralized cross-chain execution layer.
Bridge any asset, execute any action - all with a single signature.
Drop Pons in, focus on your logic. We handle the rest.

What is Pons?

Traditional cross-chain bridging requires users to:

  • Sign multiple transactions
  • Switch networks manually
  • Have gas tokens on the destination chain
  • Wait and complete each step themselves

Pons changes this. With Pons:

  • Users sign once on the source chain
  • No network switching required
  • Fees paid in your chosen token (no gas tokens needed)
  • Decentralized operators complete the rest automatically

For Developers

GuideDescription
SDK QuickstartGet cross-chain execution working in 5 minutes
Integration GuideFull step-by-step walkthrough
API ReferenceComplete SDK documentation

Understanding Pons

TopicDescription
The ProblemWhy traditional bridging fails users
The SolutionHow Pons solves cross-chain UX
ArchitectureHow the network works internally
Smart AccountsSecurity design and fund protection
EconomicsGame theory and incentive alignment

For Operators

Want to earn fees by running network infrastructure?

GuideDescription
Operators OverviewEconomics and getting started
Run an IndexerRelay assets to Smart Accounts
Run a ResolverExecute user actions

The Flow

Installation

npm install @pons-network/pons.js viem

Quick Example

import { PonsClient, Chain, calculateFeesSync } from '@pons-network/pons.js';
import { parseUnits } from 'viem';

// Initialize
const pons = await PonsClient.create({
from: Chain.SEPOLIA,
to: Chain.ARC_TESTNET,
sourceRpcUrl: 'YOUR_RPC',
destinationRpcUrl: 'YOUR_RPC',
});

// Calculate fees (dynamic like gas)
const fees = calculateFeesSync(parseUnits('15', 6));

// Execute cross-chain
await pons.execute({
amount: fees.burnAmount,
action: yourAction,
}, walletClient);

Key Features

FeatureDescription
One SignatureUsers sign once, done
No Network SwitchingStay on source chain
No Gas TokensFees paid in your chosen token
Dynamic FeesLike Ethereum gas
PermissionlessAnyone can run operators
DecentralizedNo single point of failure
Any AssetBridge tokens, execute complex actions

Supported Chains

ChainNetworkStatus
Ethereum SepoliaTestnetLive
Arc NetworkTestnetLive
Ethereum MainnetMainnetComing Soon

Ready to build? Start with the SDK →