generated from kurtosis-tech/package-template-repo
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: implement allocation of ports inside dive cli instead of passin…
…g in config
- Loading branch information
riyasng12
committed
Jan 16, 2024
1 parent
a2512ce
commit 4d4185c
Showing
11 changed files
with
79 additions
and
76 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
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
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,14 +1,6 @@ | ||
{ | ||
"chain_id": "archway-node-0", | ||
"key": "archway-node-0-key", | ||
"private_grpc": 9090, | ||
"private_http": 9091, | ||
"private_tcp": 26656, | ||
"private_rpc": 26657, | ||
"public_grpc": 9090, | ||
"public_http": 9091, | ||
"public_tcp": 26656, | ||
"public_rpc": 4564, | ||
"password": "password" | ||
} | ||
|
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 |
---|---|---|
@@ -1,14 +1,6 @@ | ||
{ | ||
"chain_id": "archway-node-1", | ||
"key": "archway-node-1-key", | ||
"private_grpc": 9090, | ||
"private_http": 9091, | ||
"private_tcp": 26656, | ||
"private_rpc": 26657, | ||
"public_grpc": 9080, | ||
"public_http": 9092, | ||
"public_tcp": 26659, | ||
"public_rpc": 4566, | ||
"password": "password" | ||
} | ||
|
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
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
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,9 +1,5 @@ | ||
{ | ||
"chain_id":"test-chain2", | ||
"key":"test-key", | ||
"password":"clock post desk civil pottery foster expand merit dash seminar song memory figure uniform spice circle try happy obvious trash crime hybrid hood cushion", | ||
"public_grpc":8033, | ||
"public_tcp":26634, | ||
"public_http":1315, | ||
"public_rpc":26696 | ||
} | ||
"password":"clock post desk civil pottery foster expand merit dash seminar song memory figure uniform spice circle try happy obvious trash crime hybrid hood cushion" | ||
} |
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 |
---|---|---|
@@ -1,9 +1,5 @@ | ||
{ | ||
"chain_id":"test-chain3", | ||
"key":"test-key", | ||
"password":"clock post desk civil pottery foster expand merit dash seminar song memory figure uniform spice circle try happy obvious trash crime hybrid hood cushion", | ||
"public_grpc":8043, | ||
"public_tcp":26642, | ||
"public_http":1389, | ||
"public_rpc":26638 | ||
} | ||
"password":"clock post desk civil pottery foster expand merit dash seminar song memory figure uniform spice circle try happy obvious trash crime hybrid hood cushion" | ||
} |
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,39 @@ | ||
{ | ||
"chain_type": "local", | ||
"relaychain": { | ||
"name": "rococo-local", | ||
"nodes": [ | ||
{ | ||
"name": "alice", | ||
"node_type": "validator", | ||
"prometheus": false | ||
}, | ||
{ | ||
"name": "bob", | ||
"node_type": "full", | ||
"prometheus": true | ||
|
||
} | ||
] | ||
}, | ||
|
||
"parachains": [ | ||
{ | ||
"name":"acala", | ||
"nodes": [ | ||
{ | ||
"name": "alice", | ||
"node_type": "collator", | ||
"prometheus": false | ||
|
||
}, | ||
{ | ||
"name": "bob", | ||
"node_type": "full", | ||
"prometheus": true | ||
} | ||
] | ||
} | ||
], | ||
"explorer": true | ||
} |