Frontend
wagmi
React hooks for Ethereum. Ideal for wallet connection, contract reads/writes, and handling sessions in Paxeer dApps.
npm install wagmi viem@2.x @tanstack/react-query wagmi documentation → Developer tooling
All standard Ethereum tools work with Paxeer. This hub highlights the stacks we recommend for frontends, contracts, testing, and wallets—plus where to find deeper documentation.
React hooks for Ethereum. Ideal for wallet connection, contract reads/writes, and handling sessions in Paxeer dApps.
npm install wagmi viem@2.x @tanstack/react-query wagmi documentation → Type‑safe, modern TypeScript client for Paxeer RPC. Great for libraries, backends, and headless services.
npm install viem viem documentation → Full Ethereum dev environment for compiling, testing, deploying, and verifying contracts on Paxeer.
npm install --save-dev hardhat Hardhat docs → Blazing‑fast, Rust‑based toolkit for Solidity development, testing, and deployment on Paxeer.
curl -L https://foundry.paradigm.xyz | bash
foundryup Foundry docs → Online Solidity IDE for quick prototyping and deployments via MetaMask on Paxeer.
Open Remix →General‑purpose Ethereum library for reading chain state, sending transactions, and interacting with contracts on Paxeer.
npm install ethers@6 Classic Ethereum JavaScript API for interacting with Paxeer from Node or browser contexts.
npm install web3@4 import Web3 from 'web3';
const web3 = new Web3('https://public-rpc.paxeer.app/rpc');
const balance = await web3.eth.getBalance('0x...');
console.log(web3.utils.fromWei(balance, 'ether')); Use Mocha/Chai with Hardhat or Foundry's Forge to build a solid test harness before you deploy to Paxeer mainnet.
npm install --save-dev mocha chai Official block explorer for Paxeer: inspect transactions, verify contracts, and access explorer APIs.
Open PaxeerScan →Connect Paxeer to MetaMask or WalletConnect using the snippets in the docs tools page.
View wallet examples →Use OpenZeppelin libraries and the latest Solidity compiler to ship audited‑grade contracts.
Smart contract tooling →Explore additional tooling like TypeChain, The Graph, and IPFS for typed contracts, indexing, and storage.
Additional resources →