Installation

Smart Contracts

At the project folder root,

Install Dependencies

> npm install

Compile contracts

> truffle compile

Run tests

> truffle test

Deploy on BSC Testnet

> truffle migrate --network bsc_testnet

Deploy on local network (ganache-cli)

> ganache-cli > truffle migrate --network ganache

Client

At the project folder root,

Navigate into the client folder

> cd client

Install Dependencies

> npm install

To Build React App

> npm run build

To Start App on Development Server

> npm run start

Last updated