This repository has been archived by the owner on Nov 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 379
Polkadot Collectives chain spec #1603
Merged
paritytech-processbot
merged 11 commits into
master
from
muharem-polkadot-collectives-genesis-chain-spec
Sep 29, 2022
Merged
Changes from 10 commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
cc000da
initial chain spec template
muharem 7e6fc16
boot nodes, para ids, name
muharem 66998ac
para id 1001
muharem c0aeb79
update boot nodes
muharem 84d8646
add collators accounts and session keys
muharem 266ae75
add p2p into wss boot nodes pathes
muharem b3d4656
replace aura raw private keys by ss58
muharem 3ac5600
remove collectives spec
muharem 60df522
rename collectives genesis spec into collectives
muharem bbb1f59
Revert "rename collectives genesis spec into collectives"
muharem d2a0a93
insert wasm into spec
muharem 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
102 changes: 102 additions & 0 deletions
102
parachains/chain-specs/collectives-polkadot-genesis.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,102 @@ | ||
{ | ||
"name": "Collectives", | ||
"id": "collectives_polkadot", | ||
"chainType": "Live", | ||
"bootNodes": [ | ||
"/dns/polkadot-collectives-collator-ew6-0.polkadot.io/tcp/30334/p2p/12D3KooWKgrivNBkMswNNNYqUkhEBvnyRzt6TLPQ2shu4eoPuuRi", | ||
"/dns/polkadot-collectives-collator-ew6-1.polkadot.io/tcp/30334/p2p/12D3KooWQen2oX7hWqhUiJ4sxj7WA4Qa3WoAmz6rQbmYPCYjeCk9", | ||
"/dns/polkadot-collectives-collator-uw1-0.polkadot.io/tcp/30334/p2p/12D3KooWJXwJS1d2UcdkKd8a6vM4TFB79gvtHtsp4bm4c8fYdpY7", | ||
"/dns/polkadot-collectives-collator-uw1-1.polkadot.io/tcp/30334/p2p/12D3KooWRjdypZdMT9rjajYM2L2P5mYaxPGErP9ExGBsY3PBdYDy", | ||
"/dns/polkadot-collectives-connect-ew6-0.polkadot.io/tcp/30334/p2p/12D3KooWLDZT5gAjMtC8fojiCwiz17SC61oeX2C7GWBCqqf9TwVD", | ||
"/dns/polkadot-collectives-connect-ew6-1.polkadot.io/tcp/30334/p2p/12D3KooWC9BwKMDyRUTXsE7teSmoKMgbyxqAp3zi2MTGRJR5nhCL", | ||
"/dns/polkadot-collectives-connect-uw1-0.polkadot.io/tcp/30334/p2p/12D3KooWPrJ9VTn3GEs2e7GQs4zoEFiTFcjXFNbQ2iDxFDQAbstQ", | ||
"/dns/polkadot-collectives-connect-uw1-1.polkadot.io/tcp/30334/p2p/12D3KooWGFYW6hJYn3pkpJawyMk6souXh7sznK8yvPmVQ7ktfHbV", | ||
"/dns/polkadot-collectives-connect-ew6-0.polkadot.io/tcp/443/wss/p2p/12D3KooWLDZT5gAjMtC8fojiCwiz17SC61oeX2C7GWBCqqf9TwVD", | ||
"/dns/polkadot-collectives-connect-ew6-1.polkadot.io/tcp/443/wss/p2p/12D3KooWC9BwKMDyRUTXsE7teSmoKMgbyxqAp3zi2MTGRJR5nhCL", | ||
"/dns/polkadot-collectives-connect-uw1-0.polkadot.io/tcp/443/wss/p2p/12D3KooWPrJ9VTn3GEs2e7GQs4zoEFiTFcjXFNbQ2iDxFDQAbstQ", | ||
"/dns/polkadot-collectives-connect-uw1-1.polkadot.io/tcp/443/wss/p2p/12D3KooWGFYW6hJYn3pkpJawyMk6souXh7sznK8yvPmVQ7ktfHbV" | ||
gilescope marked this conversation as resolved.
Show resolved
Hide resolved
|
||
], | ||
"telemetryEndpoints": null, | ||
"protocolId": null, | ||
"properties": { | ||
"ss58Format": 0, | ||
"tokenDecimals": 10, | ||
"tokenSymbol": "DOT" | ||
}, | ||
"relay_chain": "polkadot", | ||
"para_id": 1001, | ||
gilescope marked this conversation as resolved.
Show resolved
Hide resolved
|
||
"codeSubstitutes": {}, | ||
"genesis": { | ||
"runtime": { | ||
"system": { | ||
"code": "" // TODO inject when the rest is ready, otherwise this file is not reviewable on github | ||
}, | ||
"parachainSystem": null, | ||
"parachainInfo": { | ||
"parachainId": 1001 | ||
}, | ||
"balances": { | ||
"balances": [] | ||
}, | ||
"collatorSelection": { | ||
"invulnerables": [ | ||
"1NvWYSswSt5v95m5z9JycedzTXEWJ9Zcgbu5BMnGAwiWUC9", | ||
"12n87jggYnvxvdHJaEiTAKZF7ZniJqxafYoKzEqfJCUDvJXP", | ||
"13KNn7JmkSzxwrKZwTBUchTBZLVohPswv2jTPbmbyBHcHoN8", | ||
"15SDaRyFoteK12K4oZFzCTUSsFckLYgaAjRwTAdsqvrziBtu" | ||
], | ||
"candidacyBond": 16000000000, | ||
muharem marked this conversation as resolved.
Show resolved
Hide resolved
|
||
"desiredCandidates": 0 | ||
muharem marked this conversation as resolved.
Show resolved
Hide resolved
|
||
}, | ||
"session": { | ||
"keys": [ | ||
[ | ||
"1NvWYSswSt5v95m5z9JycedzTXEWJ9Zcgbu5BMnGAwiWUC9", | ||
"1NvWYSswSt5v95m5z9JycedzTXEWJ9Zcgbu5BMnGAwiWUC9", | ||
{ | ||
"aura": "5HoudDVmev8gct3rWm7rB1wuAMqgUAfjm8j1Ja8TW46R4za3" | ||
} | ||
], | ||
[ | ||
"12n87jggYnvxvdHJaEiTAKZF7ZniJqxafYoKzEqfJCUDvJXP", | ||
"12n87jggYnvxvdHJaEiTAKZF7ZniJqxafYoKzEqfJCUDvJXP", | ||
{ | ||
"aura": "5CzM49boG39JkwR6pYQtFWqFhe2p7P51yV4mtMxGcQUUWQdu" | ||
} | ||
], | ||
[ | ||
"13KNn7JmkSzxwrKZwTBUchTBZLVohPswv2jTPbmbyBHcHoN8", | ||
"13KNn7JmkSzxwrKZwTBUchTBZLVohPswv2jTPbmbyBHcHoN8", | ||
{ | ||
"aura": "5CdFKn2fUX8sCVstC1buyoHKMA4VN1GNjmG7nJ1ot9BiQZsx" | ||
} | ||
], | ||
[ | ||
"15SDaRyFoteK12K4oZFzCTUSsFckLYgaAjRwTAdsqvrziBtu", | ||
"15SDaRyFoteK12K4oZFzCTUSsFckLYgaAjRwTAdsqvrziBtu", | ||
{ | ||
"aura": "5EEmq9QMQs8GciAQD5dixp482kAtAo181MorcJCEPyLrY1Go" | ||
} | ||
] | ||
] | ||
}, | ||
"aura": { | ||
"authorities": [] | ||
}, | ||
"auraExt": null, | ||
"polkadotXcm": { | ||
"safeXcmVersion": 2 | ||
}, | ||
"alliance": { | ||
"founders": [], | ||
"fellows": [], | ||
"allies": [], | ||
"phantom": null | ||
}, | ||
"allianceMotion": { | ||
"phantom": null, | ||
"members": [] | ||
} | ||
} | ||
} | ||
} |
This file was deleted.
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.
When spec finalized, it will replace
parachains/chain-specs/collectives-polkadot.json
file.