Skip to content
This repository has been archived by the owner on Feb 17, 2022. It is now read-only.

Latest commit

 

History

History
48 lines (31 loc) · 1.03 KB

CONTRIBUTING.md

File metadata and controls

48 lines (31 loc) · 1.03 KB

Contributing

Picking issues

ISSUES

If you start working on an issue please assign it to yourself.

Creating a new package

npx lerna create @scaffold-eth/<new-package>

Publishing a package

npx lerna publish

Publishing new Ceramic schemas

Edit the data model in packages/schemas and then run the following command in the same directory to generate a new model.json with the updated definitions

yarn build

Redeploying the contracts on Mumbai

yarn deploy --network mumbai

and if you want to clear the state of the contract

yarn deploy --network mumbai --reset

Verify the contract, you'll need an API key from any block explorer, eg for mumbai see signup & get it there https://polygonscan.com/myapikey

npx hardhat verify --network mumbai [CONTRACT_ADDRESS]

After each deployment, and depending on your network, you might need to modify the BLOCK_EXPLORER_API_KEY environment variable.