-
Notifications
You must be signed in to change notification settings - Fork 91
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for chain spec modifier commands #909
Open
Fahrrader
wants to merge
12
commits into
paritytech:main
Choose a base branch
from
UniqueNetwork:feat/chain-spec-mutator
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
da03c1b
Add support for chain spec modifier commands
Fahrrader 9a67e5e
Address comments on chain spec modifiers
Fahrrader a4addae
fix: chain spec mutator working file directory + fatal error handling
Fahrrader f504bf1
feat(chain spec mutator): README + examplle
Fahrrader 9f51226
test(chain spec mutator): test components + add to CI
Fahrrader 52cfef4
refactor(chain spec mutator): chain spec parsing error
Fahrrader 6af5c09
style(chain spec mutator): fix lint problems
Fahrrader 3bb1add
test(chain spec mutator): fix improper return
Fahrrader f830ed3
test(chain spec mutator): fix faulty mutator script
Fahrrader 9eb2766
refactor(chainSpec): remove error swallowing
Fahrrader eb87b67
Merge branch 'main' into feat/chain-spec-mutator
Fahrrader 1be03dd
Merge branch 'main' into feat/chain-spec-mutator
Fahrrader File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 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,31 @@ | ||
# examples/0005-chain-spec-mutation-with-chainql.toml | ||
[relaychain] | ||
default_image = "docker.io/parity/polkadot:latest" | ||
default_command = "polkadot" | ||
default_args = [ "-lparachain=debug" ] | ||
|
||
chain = "rococo-local" | ||
|
||
[[relaychain.nodes]] | ||
name = "alice" | ||
validator = true | ||
|
||
[[relaychain.nodes]] | ||
name = "bob" | ||
validator = true | ||
|
||
[[parachains]] | ||
id = 100 | ||
# make sure to have chainql installed (`cargo install chainql`) | ||
# https://github.com/UniqueNetwork/chainql | ||
chain_spec_modifier_commands = [[ | ||
"chainql", | ||
"--tla-code=rawSpec=import '{{'raw'|chainSpec}}'", | ||
"--tla-str=pullFrom=wss://rococo-rockmine-rpc.polkadot.io:443", | ||
"--trace-format=explaining", | ||
"chainqlCopyBalances.jsonnet", | ||
]] | ||
|
||
[[parachains.collator_groups]] | ||
count = 2 | ||
name = "collator" |
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,53 @@ | ||
// Get a live chain's system balances on the URL provided with `pullFrom`, and | ||
// insert them into a raw spec to launch a new chain with. | ||
// | ||
// ### Arguments | ||
// - `rawSpec`: Path to the raw chain spec to modify | ||
// - `pullFrom`: URL of the chain's WS port to get the data from | ||
// | ||
// ### Usage | ||
// `chainql --tla-code=rawSpec="import '/path/to/parachain-spec-raw.json'" --tla-str=pullFrom="wss://some-parachain.node:443" chainqlCopyBalances.jsonnet` | ||
// | ||
// Make sure to to have `chainql` installed: `cargo install chainql` | ||
|
||
function(rawSpec, pullFrom) | ||
// get the latest state of the blockchain | ||
local sourceChainState = cql.chain(pullFrom).latest; | ||
|
||
local | ||
// store all keys under the `Account` storage of the `System` pallet | ||
accounts = sourceChainState.System.Account._preloadKeys, | ||
// get the encoded naming of `pallet_balances::TotalIssuance` for future use | ||
totalIssuanceKey = sourceChainState.Balances._encodeKey.TotalIssuance([]), | ||
; | ||
|
||
// output the raw spec with the following changes | ||
rawSpec { | ||
genesis+: { | ||
raw+: { | ||
// add the following entries to the `top` section | ||
top+: | ||
{ | ||
// encode key and value of every account under `system.account` and add them to the chain spec | ||
[sourceChainState.System._encodeKey.Account([key])]: | ||
sourceChainState.System._encodeValue.Account(accounts[key]) | ||
for key in std.objectFields(accounts) | ||
} + { | ||
// add to the local, already-existing total issuance the issuance of all incoming accounts. | ||
// NOTE: we do not take into consideration for total issuance's funds potential overlap with the testnet's present accounts. | ||
[totalIssuanceKey]: sourceChainState.Balances._encodeValue.TotalIssuance( | ||
// decode the chain-spec's already existing totalIssuance | ||
sourceChainState.Balances._decodeValue.TotalIssuance(super[totalIssuanceKey]) | ||
// iterate over and sum up the total issuance of the incoming accounts | ||
+ std.foldl( | ||
function(issuance, acc) | ||
issuance + acc.data.free + acc.data.reserved | ||
, | ||
std.objectValues(accounts), | ||
std.bigint('0'), | ||
) | ||
) | ||
}, | ||
}, | ||
}, | ||
} |
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Regarding the last commit, I believe we shouldn't let the process go on if a step in chain spec customization has failed. By removing the try-catch structure from
customizePlainRelayChain
, the error would go into thespawn
's try-catch structure where it would print it out, dump the logs and exit the process. This was the way it was done prior to displacement of the relay's plain chain spec customization tochainSpec.ts
, too.