wagmihub
  • πŸ‘‹Introduction
  • 🚩Problem
  • πŸ’‘Solution
  • βš™οΈFeatures
  • πŸͺ™Token
    • πŸ“ŠTokenomics
    • ⏳Vesting Schedule
    • πŸ› οΈToken Utility
  • ⛓️WAGMI Chain
    • Resources for EVM Development
    • Adding WAGMI Chain
    • Adding WAGMI Chain to MetaMask
    • Hardhat Config for WAGMI chain
    • Wagmi Config for WAGMI chain
    • Do I need WAGMI for gas?
    • Deploy smart contracts
    • Developing the UI
    • Add Network Button Example
    • FAQ
    • Support
  • πŸ—ΊοΈRoadmap
  • πŸ’ΌBusiness model
  • πŸ‘₯Socials
  • πŸ‘¨β€πŸ’»Team
  • 🀝Partners
  • πŸ“œLegal Notice
Powered by GitBook
On this page
  1. WAGMI Chain

Hardhat Config for WAGMI chain

  • 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"
          }
        }
      ]
     }
    };
PreviousAdding WAGMI Chain to MetaMaskNextWagmi Config for WAGMI chain

Last updated 3 months ago

⛓️