difftreelog
Add grandpa keys to testnet deploy script
in: master
2 files changed
.gitignorediffbeforeafterboth8chain-data*/8chain-data*/9910einstein_key_file10einstein_key_file11*store_key.json11*store_key*.jsondeploy-testnet.shdiffbeforeafterboth--- a/deploy-testnet.sh
+++ b/deploy-testnet.sh
@@ -13,13 +13,20 @@
### Build and run Einstein node (bootnode) and Newton node
docker-compose -f docker-compose-testnet.yml up -d --build
-### Deploy store keys
+### Deploy aura store keys
# Einstein
curl http://localhost:9935 -H "Content-Type:application/json;charset=utf-8" -d "@./einstein_store_key.json"
# Newton
curl http://localhost:9936 -H "Content-Type:application/json;charset=utf-8" -d "@./newton_store_key.json"
+### Deploy standpa store keys
+# Einstein
+curl http://localhost:9935 -H "Content-Type:application/json;charset=utf-8" -d "@./einstein_store_key_grandpa.json"
+
+# Newton
+curl http://localhost:9936 -H "Content-Type:application/json;charset=utf-8" -d "@./newton_store_key_grandpa.json"
+
### Stop and restart nodes so that they start finalizing
docker-compose -f docker-compose-testnet.yml down
docker-compose -f docker-compose-testnet.yml up -d