1.0.0 • Published 2 years ago

@0xflair/evm-contract-scaffold v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

EVM-based Smart Contract Scaffold

A Typescript Hardhat-based template to develop evm-based smart contracts with all the tooling you need.

Features

  • Uses hardhat-deploy to keep track of deployments (upgradable or normal)
  • Uses typechain to auto-generate typescript bindings for compiled contracts, useful for auto-completion in your frontend dApps
  • Uses semantic-release and commitlint for a streamline CI
  • Uses Github Actions to publish versioned contracts to NPM, along with their Typescript bindings, ABIs (useful for interacting from your dApp) and bytecodes (useful when deploying contracts using ethers.js or web3).
  • Supports multiple chains
  • Gas cost reporter using CoinMarketCap APIs for your contract deployment and each interaction
  • Contract size calculator plugin for Hardhat
  • Automated Etherscan verification for deployed contracts

Getting Started

  1. Clone this repo (or click on "Use Template" button above in Github), then update the .github/CODEOWNERS:

    git clone https://github.com/0xflair/evm-contract-scaffold my-amazing-contracts
    vi my-amazing-contracts/.github/CODEOWNERS
  2. Create a .env file based on .env.example and update the values.

  3. Create your first contract in src/.
  4. Compile the contracts:

    npm run compile

Deploying

When you are ready, let's deploy the contract on the blockchain and have it verified in corresponding block scanner.

  1. Deploy the contracts:

    npm run deploy:rinkeby
  2. Verify the contracts on Etherscan:

    npm run verify:rinkeby

Releasing

If you want your contract to be released as an NPM package you can:

  1. Create a new Automation token in your NPM account.
  2. Add a new secret called NPM_TOKEN in your Github repository > Settings > Secrets > Actions.
  3. Commit anything on main branch then automatically you'll get a new release.

Ensure your main branch is either does not require status checking, or has "bypass" exception for semantic-release-bot so that it can push new tags and releases on the Github repo.

Testing

  1. Write your tests in test/ directory.
  2. Execute them:

    npm run test

License

This repository is under MIT license.