Skip to content

Latest commit

 

History

History
41 lines (22 loc) · 697 Bytes

README.md

File metadata and controls

41 lines (22 loc) · 697 Bytes

Starter kit for developing smart contracts

How to install and use

To set up the repository, run the below

git clone https://github.com/AnastasiaMenshikova/starter-kit

cd starter-kit

yarn install

yarn start

Create the .env file and add your own API keys and private key by using .example.env.

To deploy smart contract to testnet use:

yarn deploy --network <NETWORK-NAME>

For testing added static analyzer Slither for Solidity code. Run following command:

yarn slither

If you want to write unit tests for your solidity code and check coverage of tests, run command:

yarn coverage