You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are some use cases for dispatching message at the target bridge hub. So it's one hop less than our regular path (source_chain -> source_bridge_hub -> target_bridge_hub -> target_chain - assume that target_bridge_hub is the target_chain). We need to support in in v2:
the pallet-xcm-bridge-hub implements MessageDispatch trait. Right now (afaik) it uses the xcm_builder::BridgeBlobDispatcher, which calls the send_xcm. We need to be sure that either send_xcm supports sending to the same chain or we need to use some other dispatcher;
we need some process to open the bridge (open_bridge call of the pallet-xcm-bridge-hub) at the target BH. Relay chain governance?
The text was updated successfully, but these errors were encountered:
There are some use cases for dispatching message at the target bridge hub. So it's one hop less than our regular path (
source_chain
->source_bridge_hub
->target_bridge_hub
->target_chain
- assume thattarget_bridge_hub
is thetarget_chain
). We need to support in in v2:pallet-xcm-bridge-hub
implementsMessageDispatch
trait. Right now (afaik) it uses thexcm_builder::BridgeBlobDispatcher
, which calls thesend_xcm
. We need to be sure that eithersend_xcm
supports sending to the same chain or we need to use some other dispatcher;open_bridge
call of thepallet-xcm-bridge-hub
) at the target BH. Relay chain governance?The text was updated successfully, but these errors were encountered: