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

Deploy smart contracts

To deploy smart contracts, first, choose your favorite dev environment for writing them:

PreviousDo I need WAGMI for gas?NextDeveloping the UI

Last updated 3 months ago

  • Hardhat

  • Foundry

  • Truffle

  • Remix

If you’re new to smart contract development, please take a look at the resources .

Also, you can read more about it in , which uses this . Use to setup the local environment and play with contract examples from the docs above:

  • npx create-aurora-app@latest contract <project-name>

After the project is initialized, just add the WAGMI chain to the hardhat.config.js file in your project directory, as .

To deploy the chosen contract, go to the corresponding folder, e.g., for the Counter contract it is:

  • cd <your-project>/hardhat/incrementer-example/

And then use this command:

  • make deploy NETWORK=wagmi

⛓️
here
Aurora documentation
repo
create-aurora-app npx package
described above