Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.getpara.com/llms.txt

Use this file to discover all available pages before exploring further.

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