Developer Quickstart
Network Configuration
RISE Testnet Details
Details coming soon (testnet is currently live in private beta - if you'd like access please get in touch via our builder form form or join our Builder Discord)
Getting Started
1. Get Testnet ETH
ETH is required for paying transaction fees (gas) on RISE. For testnet development:
- Use our testnet faucet (coming soon)
- Contact the team through our builder form or join our Builder Discord
2. Configure Your Development Environment
Hardhat
javascript
require("@nomicfoundation/hardhat-verify");
module.exports = {
networks: {
'rise': {
url: process.env.Rise_RPC_URL,
accounts: [process.env.PRIVATE_KEY],
chainId: 11155931
},
}
};
Foundry
bash
forge create ... --rpc-url=RPC_URL
Remix
After compiling your contracts:
- Configure MetaMask with RISE testnet details
- Select "Injected Provider - MetaMask" in deployment environment
- Deploy your contract
Need Help?
- Report issues on our GitHub Issue Tracker
- Join our Builder Discord for developer support
- Contact our team directly through the builder form