cert error trying on personal

This commit is contained in:
Dev Bharel 2022-06-22 21:43:28 -05:00
parent 443a90f4fa
commit 9e6b001493
2 changed files with 12 additions and 11 deletions

View File

@ -5,7 +5,8 @@
"main": "starter.js",
"scripts": {
"guardiand": "sh wormhole.sh",
"cleanup": "npx pm2 kill && docker kill guardiand && docker rm guardiand"
"cleanup": "npx pm2 kill && docker kill guardiand && docker rm guardiand",
"test": "sh tests/evm0-evm1.sh"
},
"keywords": [],
"author": "",

View File

@ -1,11 +1,11 @@
node orchestrator.js eth0 deploy
node orchestrator.js eth1 deploy
node orchestrator.js eth0 register_chain eth1
node orchestrator.js eth1 register_chain eth0
node orchestrator.js eth0 send_msg "From: eth0\nMsg: Hello World!"
node orchestrator.js eth1 submit_vaa eth0 latest
node orchestrator.js eth1 send_msg "From: eth1\nMsg: Hello World!"
node orchestrator.js eth0 submit_vaa eth1 latest
node orchestrator.js evm0 deploy
node orchestrator.js evm1 deploy
node orchestrator.js evm0 register_chain evm1
node orchestrator.js evm1 register_chain evm0
node orchestrator.js evm0 send_msg "From: evm0\nMsg: Hello World!"
node orchestrator.js evm1 submit_vaa evm0 latest
node orchestrator.js evm1 send_msg "From: evm1\nMsg: Hello World!"
node orchestrator.js evm0 submit_vaa evm1 latest
sleep 10
node orchestrator.js eth0 get_current_msg
node orchestrator.js eth1 get_current_msg
node orchestrator.js evm0 get_current_msg
node orchestrator.js evm1 get_current_msg