Skip to content
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

[P<>K bridge] Allow multiple assets to be transferred between AssetHubs over bridge #4286

Closed
acatangiu opened this issue Apr 25, 2024 · 1 comment
Assignees
Labels
T6-XCM This PR/Issue is related to XCM. T15-bridges This PR/Issue is related to bridges.

Comments

@acatangiu
Copy link
Contributor

To be tested first on Rococo <> Westend, then also deployed to Polkadot <> Kusama.

Main change required is the IsReserve filter on the asset hubs. New filter suggestion:

On AssetHub Polkadot: trust AHK as reserve for all assets native to Kusama:

matches!(id, { 2, GlobalConsensus(Kusama), .. })

This will allow any Kusama-based asset to move into Polkadot.

On AssetHub Kusama: trust AHP as reserve for all assets not native to Kusama:

matches!(id, { 2, GlobalConsensus(ecosystem), .. } if ecosystem != Kusama)

This will allow any non-Kusama asset to come to Kusama through Polkadot. Not just Polkadot assets, but also assets bridged to Polkadot from Ethereum/etc.

@acatangiu acatangiu added T6-XCM This PR/Issue is related to XCM. T15-bridges This PR/Issue is related to bridges. labels Apr 25, 2024
@acatangiu acatangiu moved this to High Priority in Bridges + XCM Apr 25, 2024
@acatangiu acatangiu self-assigned this Jul 29, 2024
@acatangiu
Copy link
Contributor Author

Implemented in #4888 (testnets) and polkadot-fellows/runtimes#421 (live networks).

@acatangiu acatangiu changed the title Allow multiple assets to be transferred between AssetHubs over bridge [P<>K bridge] Allow multiple assets to be transferred between AssetHubs over bridge Oct 14, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
T6-XCM This PR/Issue is related to XCM. T15-bridges This PR/Issue is related to bridges.
Projects
Status: Done
Development

No branches or pull requests

1 participant