Pallet
The bridge parachains pallet is a light client for one or several parachains of the bridged relay chain. It serves as a source of finalized parachain headers and is used when you need to build a bridge with a parachain.
pallet_bridge_parachains needs to be implemented for our Runtime.
The pallet requires bridge GRANDPA pallet to be deployed at the same chain - it is used to verify storage proofs, generated at the bridged relay chain.
We already have pallet_bridge_grandpa implementation
Notes
- Probably very straightforward, similar to
relay-headers
- new command should be added to
laos-relay -> relay-parachains
- there is
register-parachain command in substrate-relay, I don't think it's necessary to implement it but, it might be (need to check)
Context
Pallet
pallet_bridge_parachainsneeds to be implemented for our Runtime.We already have
pallet_bridge_grandpaimplementationNotes
relay-headerslaos-relay->relay-parachainsregister-parachaincommand insubstrate-relay, I don't think it's necessary to implement it but, it might be (need to check)Context