@citydao/parcel-contracts v0.0.6
Parcel Contracts
Setup
Node
- Install nvm(Node Version Manager)
- cdto the project directory and execute the following:- nvm install nvm use npm install
IDE Setup
This project uses EditorConfig for IDE configuration.
See .editorconfig for settings.
Many popular IDEs and editors support this out of the box or with a plugin.
Development
Prettier
This project uses Prettier, so please run it before checking in:
npm run prettySee .prettierrc for settings.
Some IDEs and editors have plugins for running Prettier.
Linting
This project uses ESLint. Check linting before checking in:
npm run lintSee tslint.json for settings.
Many IDEs and editors support TSLint.
Testing
This project uses Mocha, Chai, and Waffle for testing. Run tests before checking in.
npm testBuilding
npm run buildVerification
Set up a .secrets.json file that looks similar to example.secrets.json:
After deploying your contract, you can verify it by running the following.
Rinkeby
npx hardhat verify --network rinkeby CONTRACT_ADDRESSFor a proxy contract, you'll need to pass the arguments to the proxy contract, and pass the contract as well:
npx hardhat verify --network rinkeby \
  --contract contracts/common/UpgradeableProxy.sol:UpgradeableProxy \
  --constructor-args examples/parcelNFTConstructorParams.js \
  CONTRACT_ADDRESSMainnet
npx hardhat verify --network rinkeby CONTRACT_ADDRESSnpx hardhat verify --network mainnet \
  --contract contracts/common/UpgradeableProxy.sol:UpgradeableProxy \
  --constructor-args examples/parcelNFTConstructorParams.js \
  CONTRACT_ADDRESSSee hardhat-etherscan for more examples