-
Notifications
You must be signed in to change notification settings - Fork 680
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
allow governance body on parachain to have sovereign account #1291
Conversation
Anyone want to hit the merge button? It won't kill you. |
This still requires an audit before we can merge/release. |
ok. that’s fine. is there a label to indicate that? |
Not that I know of; someone from devops should look into this, perhaps @the-right-joyce? |
labels are not any longer used for the auditing process. Instead PRs should be added to the security audit board as mentioned here I see that your PR was archived though, will check with SRLabs and come back to you |
@KiChjang it was already audited, we can merge |
@@ -68,6 +68,8 @@ pub type SovereignAccountOf = ( | |||
ChildParachainConvertsVia<ParaId, AccountId>, | |||
// We can directly alias an `AccountId32` into a local account. | |||
AccountId32Aliases<ThisNetwork, AccountId>, | |||
// Allow governance body to be used as a sovereign account. | |||
HashedDescription<AccountId, DescribeFamily<DescribeBodyTerminal>>, |
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.
@mustermeiszer here
We imported the runtimes into this repo at tag [`v1.1.0-rc2`](https://github.com/paritytech/polkadot-sdk/commits/v1.1.0-rc2/) but still merged stuff until they got removed in [#1731](paritytech/polkadot-sdk#1731). This re-applies all changes in that commit range [`v1.1.0-rc2..bf90cb0b`](paritytech/polkadot-sdk@v1.1.0-rc2...bf90cb0) checked in the SDK with `git log v1.1.0-rc2..bf90cb0b -- polkadot/runtime/`. Closes #112 Most changes got applied as part of #56, but two were missing: - paritytech/polkadot-sdk#1303 - <s>https://github.com/paritytech/polkadot-sdk/pull/1476</s> (reverted) <s>One [open Q](#67 (comment)) since there was a difference between [#1291](paritytech/polkadot-sdk#1291) and #67.</s> --------- Signed-off-by: Oliver Tale-Yazdi <[email protected]> Co-authored-by: fellowship-merge-bot[bot] <151052383+fellowship-merge-bot[bot]@users.noreply.github.com> Co-authored-by: Bastian Köcher <[email protected]> Co-authored-by: joe petrowski <[email protected]>
* relay balance metrics * convert balance to "main" tokens in balance metrics * add balances widgets to maintenance dashboard
* relay balance metrics * convert balance to "main" tokens in balance metrics * add balances widgets to maintenance dashboard
* relay balance metrics * convert balance to "main" tokens in balance metrics * add balances widgets to maintenance dashboard
* relay balance metrics * convert balance to "main" tokens in balance metrics * add balances widgets to maintenance dashboard
* relay balance metrics * convert balance to "main" tokens in balance metrics * add balances widgets to maintenance dashboard
* relay balance metrics * convert balance to "main" tokens in balance metrics * add balances widgets to maintenance dashboard
* relay balance metrics * convert balance to "main" tokens in balance metrics * add balances widgets to maintenance dashboard
* relay balance metrics * convert balance to "main" tokens in balance metrics * add balances widgets to maintenance dashboard
* relay balance metrics * convert balance to "main" tokens in balance metrics * add balances widgets to maintenance dashboard
* relay balance metrics * convert balance to "main" tokens in balance metrics * add balances widgets to maintenance dashboard
* relay balance metrics * convert balance to "main" tokens in balance metrics * add balances widgets to maintenance dashboard
* relay balance metrics * convert balance to "main" tokens in balance metrics * add balances widgets to maintenance dashboard
* relay balance metrics * convert balance to "main" tokens in balance metrics * add balances widgets to maintenance dashboard
The goal is to allow Fellowship on Collective chain to have a sovereign account on Polkadot so that we can add it as an identity registrar. This will allow Fellows origin to be able to provide judgements for Fellowship members.
This currently allow any body on any parachain including non system parachains to have sovereign account. I cannot think of any reason why that may be an issue but let me know if I should change it to filter only system parachains.
This is the testing script.
Original PR: paritytech/polkadot#7518