This repository was archived by the owner on Nov 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
XCM v3: Support for non-fungibles #4950
Merged
Merged
Changes from all commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
c55a133
NFT support and a test
gavofyork b108c4c
New files.
gavofyork cecd812
Integration tests for sending NFTs
gavofyork dabab36
Formatting
gavofyork 9b3343f
Broken Cargo features
gavofyork 88cbcc5
Use 2021 edition
bkchr 81c9ab7
Merge remote-tracking branch 'origin/gav-xcm-v3' into gav-xcm-v3-nfts
gavofyork b2f53bb
Fixes
gavofyork bc73f50
Formatting
gavofyork 4944038
Formatting
gavofyork 96fcf7b
Update xcm/xcm-builder/src/asset_conversion.rs
gavofyork b25fc32
Update xcm/xcm-builder/src/nonfungibles_adapter.rs
gavofyork dd3f881
Update xcm/xcm-executor/src/lib.rs
gavofyork 6159fe9
Merge branch 'gav-xcm-v3' into gav-xcm-v3-nfts
gavofyork 01af01c
Merge branch 'gav-xcm-v3' into gav-xcm-v3-nfts
gavofyork d125329
Fixes
gavofyork 2f6cca4
Fixes
gavofyork 0ace1ed
Fixes
gavofyork 6ed4fd8
Formatting
gavofyork c106456
Fixes
gavofyork File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
I must have missed this in the previous PRs, but since
Junctions
are nowCopy
able, a lot of methods can in fact beconst
nowadays, the most important of which isnew
. This will allowMultiLocation
s to be constructed in a const context, and one of the more interesting things that we can do is to statically assert that everyMultiLocation
constructed by the developer is at its most simplified form, i.e. they do not contain theAncestry
as a prefix.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.
Nice yeah. I wasn't planning on necessarily leaving the
Copy
trait in, but for now it's required due toMultiLocation
being used as anInstance
type in Uniques pallet config.