This repository has been archived by the owner on Jan 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #33 from walt-id/feat/keri-pre
feat(keri): config and scripts pre-requisites
- Loading branch information
Showing
6 changed files
with
80 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"dt": "2022-01-20T12:57:59.823350+00:00", | ||
"iurls": [ | ||
"http://127.0.0.1:5642/oobi/BBilc4-L3tFUnfM_wJr4S4OJanAv_VmF_dJNN6vkf2Ha", | ||
"http://127.0.0.1:5643/oobi/BLskRTInXnMxWaGqcpSyMgo0nYbalW99cGZESrz3zapM", | ||
"http://127.0.0.1:5644/oobi/BIKKuvBwpmDVA4Ds-EpL5bt9OqPzWPja2LigFYZN2YfX" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"transferable": true, | ||
"wits": [ | ||
"BBilc4-L3tFUnfM_wJr4S4OJanAv_VmF_dJNN6vkf2Ha", | ||
"BLskRTInXnMxWaGqcpSyMgo0nYbalW99cGZESrz3zapM", | ||
"BIKKuvBwpmDVA4Ds-EpL5bt9OqPzWPja2LigFYZN2YfX" | ||
], | ||
"toad": 3, | ||
"icount": 1, | ||
"ncount": 1, | ||
"isith": "1", | ||
"nsith": "1" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"wan": { | ||
"dt": "2022-01-20T12:57:59.823350+00:00", | ||
"curls": ["tcp://127.0.0.1:5632/", "http://127.0.0.1:5642/"] | ||
}, | ||
"dt": "2022-01-20T12:57:59.823350+00:00", | ||
"iurls": [] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"wes": { | ||
"dt": "2022-01-20T12:57:59.823350+00:00", | ||
"curls": ["tcp://127.0.0.1:5634/", "http://127.0.0.1:5644/"] | ||
}, | ||
"dt": "2022-01-20T12:57:59.823350+00:00", | ||
"iurls": [] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"wil": { | ||
"dt": "2022-01-20T12:57:59.823350+00:00", | ||
"curls": ["tcp://127.0.0.1:5633/", "http://127.0.0.1:5643/"] | ||
}, | ||
"dt": "2022-01-20T12:57:59.823350+00:00", | ||
"iurls": [] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
#!/bin/bash | ||
|
||
CONFIG_DIR="config" | ||
|
||
# initiating witnesses | ||
kli init --name wan --salt 0AB3YW5uLXRoZS13aXRuZXNz --nopasscode \ | ||
--config-dir "${CONFIG_DIR}" \ | ||
--config-file main/wan-witness | ||
|
||
kli witness start --name wan --alias wan -T 5632 -H 5642 \ | ||
--config-dir "${CONFIG_DIR}" \ | ||
--config-file wan-witness & | ||
WAN_WITNESS_PID=$! | ||
|
||
|
||
kli init --name wil --salt 0AB3aWxsLXRoZS13aXRuZXNz --nopasscode \ | ||
--config-dir "${CONFIG_DIR}" \ | ||
--config-file main/wil-witness | ||
|
||
|
||
kli witness start --name wil --alias wil -T 5633 -H 5643 \ | ||
--config-dir "${CONFIG_DIR}" \ | ||
--config-file wil-witness & | ||
WIL_WITNESS_PID=$! | ||
|
||
|
||
kli init --name wes --salt 0AB3ZXNzLXRoZS13aXRuZXNz --nopasscode \ | ||
--config-dir "${CONFIG_DIR}" \ | ||
--config-file main/wes-witness | ||
|
||
|
||
kli witness start --name wes --alias wes -T 5634 -H 5644 \ | ||
--config-dir "${CONFIG_DIR}" \ | ||
--config-file wes-witness & | ||
WES_WITNESS_PID=$! |