Skip to main content
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.io

Step 2: Add Paxeer Network

Add Paxeer Network to your MetaMask with these settings:
Open MetaMask, go to SettingsNetworksAdd Network, and enter:
FieldValue
Network NamePaxeer Network
RPC URLhttps://public-rpc.paxeer.app/rpc
Chain ID229
Currency SymbolPAX
Block Explorerhttps://scan.paxeer.app

Network Details

{
  "networkName": "Paxeer Network",
  "rpcUrl": "https://public-rpc.paxeer.app/rpc",
  "chainId": 229,
  "currencySymbol": "PAX",
  "blockExplorer": "https://scan.paxeer.app"
}

Step 3: Connect with wagmi

Use wagmi to connect to Paxeer Network in your React app:
wagmi-config.ts
import { createConfig, http } from 'wagmi'
import { defineChain } from 'viem'

const paxeer = defineChain({
  id: 229,
  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://scan.paxeer.app',
    },
  },
})

export const config = createConfig({
  chains: [paxeer],
  transports: {
    [paxeer.id]: http(),
  },
})
Make sure to wrap your app with WagmiProvider and pass the config.

Step 4: Start Building

You’re all set! Now you can:
1

Deploy Smart Contracts

Use Hardhat, Foundry, or Remix to deploy your contracts

Smart Contracts Guide

Learn how to deploy contracts on Paxeer Network
2

Interact with the Blockchain

Read and write data using our JSON-RPC API

API Reference

Explore all available RPC methods
3

Build User Interfaces

Create dApps using wagmi, viem, or ethers.js

Code Examples

Check out our integration examples

Next Steps

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