diff --git a/README.md b/README.md index 88d5a0a..5bbaf76 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ $ ./scripts/blockchain.sh After that, it's possible to deploy Swarm smart contracts ```sh -$ npm run migrate:chequebook +$ npm run migrate:contracts ``` Before you start the Bee nodes with the deployed Swap Factory, you have to fund your overlay addresses of your Bee nodes for the successful start. diff --git a/package.json b/package.json index acd508a..7b9020c 100644 --- a/package.json +++ b/package.json @@ -3,8 +3,8 @@ "version": "0.0.1", "description": "Setup Swarm Test Blockchain and arbitrary numbered Bee nodes", "scripts": { - "compile:chequebook": "truffle compile", - "migrate:chequebook": "truffle migrate", + "compile:contracts": "truffle compile", + "migrate:contracts": "truffle migrate", "supply": "truffle exec src/supply.js", "build:env": "./scripts/build-environment.sh", "publish:env": "./scripts/publish-environment.sh", diff --git a/scripts/build-environment.sh b/scripts/build-environment.sh index 4899cb3..289498f 100755 --- a/scripts/build-environment.sh +++ b/scripts/build-environment.sh @@ -4,7 +4,7 @@ MY_PATH=$( cd "$MY_PATH" && pwd ) "$MY_PATH/network.sh" "$MY_PATH/blockchain.sh" -npm run migrate:chequebook +npm run migrate:contracts npm run supply "$MY_PATH/blockchain-docker-build.sh" "$MY_PATH/bee-docker-build.sh"