1.3 Testnet Configuration
To interact with the Avilom Testnet, configure your wallet and dev environment.
Testnet RPC Settings
Network Name: Avilom Testnet
RPC URL: https://rpc-testnet.avilom.net
Chain ID: 77677
Currency Symbol: AVM
Explorer: https://explorer-testnet.avilom.net
MetaMask Setup
Open MetaMask → Networks → Add Network
Enter the above Testnet details
Save and switch to Avilom Testnet
Get Test AVM
Visit faucet-testnet.avilom.net, paste your wallet address, and claim 10,000 AVM.
💡 Confirm the AVM balance appears in your MetaMask.
Hardhat Network Config
Update hardhat.config.js
:
module.exports = {
solidity: "0.8.10",
networks: {
avilomTestnet: {
url: "https://rpc-testnet.avilom.net",
chainId: 77677,
accounts: [process.env.PRIVATE_KEY]
}
},
paths: { artifacts: "./artifacts" }
};
Add your PRIVATE_KEY
to a local .env
file.
Verify Connection
npx hardhat network avilomTestnet accounts
✅ You should see your Testnet wallet and balance.
Last updated