Skip to main content
Configure custom RPC endpoints and chains for networks using Web3 libraries. This guide uses public testnet RPCs for demonstration and shows minimal setup with predefined and custom chains where applicable.
Wagmi is not available on React Native. Use Ethers.js or Viem for EVM operations.

Configure Custom RPC Endpoints

import { ethers } from "ethers";
import { ParaEthersSigner } from "@getpara/ethers-v6-integration";

const chainId = 11155111;
const rpcUrl = "https://ethereum-sepolia-rpc.publicnode.com";

const provider = new ethers.JsonRpcProvider(rpcUrl, chainId, {
  staticNetwork: true
});

const signer = new ParaEthersSigner(para, provider);

Next Steps