bbgo_origin/contracts
dependabot[bot] d2d1e46e3b
build(deps): bump minimist from 1.2.5 to 1.2.6 in /contracts
Bumps [minimist](https://github.com/substack/minimist) from 1.2.5 to 1.2.6.
- [Release notes](https://github.com/substack/minimist/releases)
- [Commits](https://github.com/substack/minimist/compare/1.2.5...1.2.6)

---
updated-dependencies:
- dependency-name: minimist
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-08-31 04:51:28 +00:00
..
contracts
flat
migrations
test
.eslintrc.js
.gitignore
.solhint.json
bsc-secret.json
development-secret.json
hardhat.config.js
package-lock.json build(deps): bump minimist from 1.2.5 to 1.2.6 in /contracts 2022-08-31 04:51:28 +00:00
package.json
polygon-secret.json
README.md
truffle-config.js

BBG Contracts


1. Before Start

Create and modify the following files in this directory, the secret key inside the files are dummy ones from truffle dev server:

  • development-secret.json
  • polygon-secret.json
  • bsc-secret.json

2. Prepare the dependencies

npm i
# if you want to develope in localhost, try to run npm run devserver separately
# ex: npm run devserver
# it will give you a set of secrets and account addresses

3. Deploy

Migrate:

npm run migrate:dev
# npm run migrate:polygon
# npm run migrate:polygon-test
# npm run migrate:bsc
# npm run migrate:bsc-test

Lint:

npm run lint
# # fix solidity issue
# npm run lint:sol:fix
# # fix js issue
# npm run lint:js:fix

Test:

npm run test 
truffle run verify ChildMintableERC20 --network polygon
truffle run verify ChildMintableERC20@0x3Afe98235d680e8d7A52e1458a59D60f45F935C0 --network polygon