Quick Start
Get started with Paxeer Network in just a few minutes
Prerequisites: You'll need MetaMask or another Web3 wallet installed in your browser.
Step 1: Install Web3 Wallet
If you don't have a Web3 wallet yet, install MetaMask from their official website:
https://metamask.ioStep 2: Add Paxeer Network
Add Paxeer Network to your MetaMask with these settings:
Network Details
{
"networkName": "Paxeer Network",
"rpcUrl": "https://public-rpc.paxeer.app/rpc",
"chainId": 125,
"currencySymbol": "PAX",
"blockExplorer": "https://paxscan.paxeer.app"
}Step 3: Connect with wagmi
Use wagmi to connect to Paxeer Network in your React app:
import { createConfig, http } from 'wagmi'
import { defineChain } from 'viem'
const paxeer = defineChain({
id: 125,
name: 'Paxeer Network',
network: 'paxeer',
nativeCurrency: {
decimals: 18,
name: 'Paxeer',
symbol: 'PAX',
},
rpcUrls: {
default: {
http: ['https://public-rpc.paxeer.app/rpc'],
},
},
blockExplorers: {
default: {
name: 'PaxeerScan',
url: 'https://paxscan.paxeer.app',
},
},
})
export const config = createConfig({
chains: [paxeer],
transports: {
[paxeer.id]: http(),
},
})Tip
Make sure to wrap your app with WagmiProvider and pass the config.
Step 4: Start Building
You're all set! Now you can:
Deploy Smart Contracts
Use Hardhat, Foundry, or Remix to deploy your contracts
Smart Contracts Guide
Learn how to deploy contracts on Paxeer Network
Interact with the Blockchain
Read and write data using our JSON-RPC API
API Reference
Explore all available RPC methods
Build User Interfaces
Create dApps using wagmi, viem, or ethers.js
Code Examples
Check out our integration examples
Next Steps
Configuration
Configure Paxeer Network with different libraries
RPC Methods
Test RPC methods in real-time
Network Tools
Explore recommended SDKs and tools
API Explorer
Interactive API testing interface
Need Help?
Check out our API Reference and RPC Methods pages to learn more about interacting with Paxeer Network, or join our community for support.
Join Community
Get help from other developers building on Paxeer
How is this guide?