difftreelog
Add grandpa keys to testnet deploy script
in: master
2 files changed
.gitignorediffbeforeafterboth--- a/.gitignore
+++ b/.gitignore
@@ -8,4 +8,4 @@
chain-data*/
einstein_key_file
-*store_key.json
\ No newline at end of file
+*store_key*.json
\ No newline at end of file
deploy-testnet.shdiffbeforeafterboth13### Build and run Einstein node (bootnode) and Newton node13### Build and run Einstein node (bootnode) and Newton node14docker-compose -f docker-compose-testnet.yml up -d --build14docker-compose -f docker-compose-testnet.yml up -d --build151516### Deploy store keys16### Deploy aura store keys17# Einstein17# Einstein18curl http://localhost:9935 -H "Content-Type:application/json;charset=utf-8" -d "@./einstein_store_key.json"18curl http://localhost:9935 -H "Content-Type:application/json;charset=utf-8" -d "@./einstein_store_key.json"191920# Newton20# Newton21curl http://localhost:9936 -H "Content-Type:application/json;charset=utf-8" -d "@./newton_store_key.json"21curl http://localhost:9936 -H "Content-Type:application/json;charset=utf-8" -d "@./newton_store_key.json"2223### Deploy standpa store keys24# Einstein25curl http://localhost:9935 -H "Content-Type:application/json;charset=utf-8" -d "@./einstein_store_key_grandpa.json"2627# Newton28curl http://localhost:9936 -H "Content-Type:application/json;charset=utf-8" -d "@./newton_store_key_grandpa.json"222923### Stop and restart nodes so that they start finalizing30### Stop and restart nodes so that they start finalizing24docker-compose -f docker-compose-testnet.yml down31docker-compose -f docker-compose-testnet.yml down