This is a quickstart template for creating a Next.js application with RainbowKit wallet integration, pre-configured for the XRPL EVM Sidechain Devnet.
- Next.js for efficient React-based web development
- RainbowKit for seamless wallet connection
- Wagmi hooks for Ethereum interactions
- Pre-configured for XRPL EVM Sidechain Devnet
- Basic account information display (network, address, balance)
- Direct link to XRPL EVM Bridge Faucet
- Clone this repository
- Install dependencies:
npm install
oryarn install
- Run the development server:
npm run dev
oryarn dev
- Open http://localhost:3000 in your browser
The template is pre-configured for the XRPL EVM Sidechain Devnet. You can modify the chain configuration in src/pages/_app.tsx
and add more chains as needed. Visit the Rainbowkit documentation to learn how to configure your app.
const xrpl_evm_sidechain_devnet = {
id: 1440002,
name: 'XRPL EVM Sidechain Devnet',
iconUrl: 'https://s2.coinmarketcap.com/static/img/coins/64x64/52.png',
iconBackground: '#fff',
nativeCurrency: { name: 'XRP', symbol: 'XRP', decimals: 18 },
rpcUrls: {
default: { http: ['https://rpc-evm-sidechain.xrpl.org'] },
},
blockExplorers: {
default: { name: 'xrpl-evm-explorer-devnet', url: 'https://evm-sidechain.xrpl.org' },
}
} as const satisfies Chain;
Repo | Link |
---|---|
Deploy your first Solidity contract on the XRPL EVM Sidechain using Hardhat ๐ท | GitHub Repository |
Play with ZK on the XRPL EVM Sidechain โจ | GitHub Repository |
Resources | Link |
---|---|
Docs | https://www.xrplevm.org/ |
Bridge & Faucet | https://bridge.xrplevm.org/ |
MetaMask | https://metamask.io/ |
Solidity | https://docs.soliditylang.org/en/v0.8.26/ |
Hardhat | https://hardhat.org/ |
Remix IDE | https://remix.ethereum.org/ |
Grants | https://xrplgrants.org/ |
Accelerator | https://xrplaccelerator.org/ |
Contributions are welcome! Please feel free to submit a Pull Request.