module.exports = { solidity: "0.8.20", /* here we add the network */ networks: { wagmi: { url: 'https://rpc-0x4e454164.aurora-cloud.dev/', accounts: [`0x${YOUR_PRIVATE_KEY}`], chainId: 1313161572, gasPrice: 100000000000000 } }, /* this part allows to verify contracts via explorer */ etherscan: { apiKey: { wagmi: "any string will suffice here", }, customChains: [ { network: "wagmi", chainId: 1313161567, urls: { apiURL: "https://explorer.wagmi.aurora.dev/api", browserURL: "https://explorer.wagmi.aurora.dev" } } ] } };
Last updated 2 months ago