-
Notifications
You must be signed in to change notification settings - Fork 10
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
XCM configuration on Kreivo. #259
Conversation
type XcmTeleportFilter = Everything; | ||
type XcmReserveTransferFilter = Nothing; | ||
type XcmTeleportFilter = Nothing; | ||
type XcmReserveTransferFilter = Everything; |
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.
For the future , make a test to assure that asset registry is filtering non desired assets.
type XcmTeleportFilter = Everything; | ||
type XcmReserveTransferFilter = Nothing; | ||
type XcmTeleportFilter = Nothing; | ||
type XcmReserveTransferFilter = Everything; |
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.
The asset registry is already taking care of the filter, however we might try implementing some more specific filter. At the moment all parachains are just leaving Everything
and using an asset registry to allow/disallow assets from other parachains
type XcmTeleportFilter = Everything; | ||
type XcmReserveTransferFilter = Nothing; | ||
type XcmTeleportFilter = Nothing; | ||
type XcmReserveTransferFilter = Everything; |
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.
The asset registry is already taking care of the filter, however we might try implementing some more specific filter. At the moment all parachains are just leaving Everything
and using an asset registry to allow/disallow assets from other parachains
This PR adds the following:
Still pending:
DenyThenTry<DenyNativeTokenReserveTransferToStatemine...
)Related #242