-
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.
new shell spec for unbricking our parachain (#78)
closes #65 part of #77 * re-genesis all chain specs (Kusama will be reset, westend will be torn down in favor of a fresh rococo deployment) * de-clutter spec generation. added a few improvements from encointer too * bump version to 1.5.13 * this PR shall build the basis of the to-be-reset genesis config for Kusama tested * [x] rococo-local-with-shell and upgrade to full runtime * [x] kusama-local-with-shell (need to wait 60min before producing blocks!!) runtime upgrade only takes seconds after that * [x] launch without relay `--chain integritee-kusama` * paraid correct for parachainInfo.parachainId = 2015 * sudo key correct * sudo balance 10 TEER
- Loading branch information
Showing
27 changed files
with
385 additions
and
401 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
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
43 changes: 43 additions & 0 deletions
43
polkadot-launch/launch-rococo-local-with-shell-rococo-1.4.12.json
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,43 @@ | ||
{ | ||
"relaychain": { | ||
"bin": "../../../bin/polkadot-0.9.17", | ||
"chain": "rococo-local", | ||
"nodes": [ | ||
{ | ||
"name": "alice", | ||
"wsPort": 9999, | ||
"port": 30444 | ||
}, | ||
{ | ||
"name": "bob", | ||
"wsPort": 9988, | ||
"port": 30555 | ||
}, | ||
{ | ||
"name": "charlie", | ||
"wsPort": 9977, | ||
"port": 30666 | ||
} | ||
] | ||
}, | ||
"parachains": [ | ||
{ | ||
"bin": "../../../bin/integritee-collator-1.4.12", | ||
"chain": "shell-rococo-local-dev", | ||
"nodes": [ | ||
{ | ||
"wsPort": 9944, | ||
"rpcPort": 9933, | ||
"port": 31200, | ||
"name": "dave", | ||
"flags": ["--", "--execution=wasm"] | ||
} | ||
] | ||
} | ||
], | ||
"simpleParachains": [ | ||
], | ||
"hrmpChannels": [ | ||
], | ||
"finalization": false | ||
} |
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 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,48 @@ | ||
{ | ||
"relaychain": { | ||
"bin": "../../../bin/polkadot-0.9.17", | ||
"chain": "westend-local", | ||
"nodes": [ | ||
{ | ||
"name": "alice", | ||
"wsPort": 9999, | ||
"port": 30444 | ||
}, | ||
{ | ||
"name": "bob", | ||
"wsPort": 9988, | ||
"port": 30555 | ||
}, | ||
{ | ||
"name": "charlie", | ||
"wsPort": 9977, | ||
"port": 30666 | ||
} | ||
] | ||
}, | ||
"parachains": [ | ||
{ | ||
"bin": "./../target/release/integritee-collator", | ||
"chain": "shell-westend-local-dev", | ||
"nodes": [ | ||
{ | ||
"wsPort": 9944, | ||
"port": 31200, | ||
"name": "dave", | ||
"flags": ["--", "--execution=wasm"] | ||
}, | ||
{ | ||
"wsPort": 9945, | ||
"port": 31201, | ||
"name": "eve", | ||
"flags": ["--", "--execution=wasm"] | ||
} | ||
] | ||
} | ||
], | ||
"simpleParachains": [ | ||
], | ||
"hrmpChannels": [ | ||
], | ||
"finalization": false | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
name = "integritee-collator" | ||
description = "The Integritee parachain collator binary" | ||
# align major.minor revision with the runtimes. bump patch revision ad lib. make this the github release tag | ||
version = "1.4.12" | ||
version = "1.5.13" | ||
authors = ["Integritee AG <[email protected]>"] | ||
homepage = "https://integritee.network/" | ||
repository = "https://github.com/integritee-network/parachain" | ||
|
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
name = 'integritee-runtime' | ||
description = "The Integritee parachain runtime" | ||
# patch revision must match runtime spec_version | ||
version = '1.4.12' | ||
version = '1.5.13' | ||
authors = ["Integritee AG <[email protected]>"] | ||
homepage = "https://integritee.network/" | ||
repository = "https://github.com/integritee-network/parachain" | ||
|
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
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
name = 'shell-runtime' | ||
description = "The Integritee shell parachain runtime" | ||
# major.minor revision must match collator node. patch should match spec_version | ||
version = '1.4.2' | ||
version = '1.5.3' | ||
authors = ["Integritee AG <[email protected]>"] | ||
homepage = "https://integritee.network/" | ||
repository = "https://github.com/integritee-network/parachain" | ||
|
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
Oops, something went wrong.