polkadot-fellows / RFCs

Proposals for change to standards administered by the Fellowship.
https://polkadot-fellows.github.io/RFCs/
Creative Commons Zero v1.0 Universal
111 stars 51 forks source link

Governance parachain fallback #41

Closed burdges closed 9 months ago

burdges commented 9 months ago

I think https://github.com/polkadot-fellows/RFCs/pull/32 makes sense for Kusama as written, but we've always envisioned Polkadot holding up even when finality stalls, just using longest chain. Approvals depends upon grandpa however, so parachains become completely insecure under longest chain, so even system parachains like governance cannot be trusted.

@AlistairStewart and I have discussed a few fallback models for this, but one simple-ish model goes like:

We do not imho require this complexity to deploy on Kusama, but we'd ideally do something along these lines before Polkadot, and supersedes https://github.com/paritytech/polkadot-sdk/issues/1963

bkchr commented 9 months ago

We already talked about this, we can just keep the governance configured on the relay chain. Just as some fallback when something breaks. We probably only need a way to proof the holding of coins for voting. To make this secure we may should have a way to keep the latest finalized parachain state to use this as the proofing point.

burdges commented 9 months ago

You mean: There are only voting and locks in the governance chain state, and they do not live forever. We'll need to reference staked accounts elsewhere anyways from the locks. We can therefore run a vote on the relay chain state too, if we can reference the locks elsewhere, or not use the locks. And the relay chain can send the result back as a message.

Yeah okay this sound fine. And the extra generality of what I wrote above sounds not worth the trouble.