Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
polkadot-sdk
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
parity
Mirrored projects
polkadot-sdk
Commits
2651dce9
Commit
2651dce9
authored
1 year ago
by
Gavin Wood
Committed by
GitHub
1 year ago
Browse files
Options
Downloads
Patches
Plain Diff
XCM: Utility struct for AccountId conversion (#7321)
* XCM: Utility struct for AccountId conversion * Update conversion.rs
parent
a7673581
Branches
Branches containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
polkadot/xcm/xcm-builder/src/location_conversion.rs
+6
-12
6 additions, 12 deletions
polkadot/xcm/xcm-builder/src/location_conversion.rs
polkadot/xcm/xcm-builder/src/pay.rs
+5
-5
5 additions, 5 deletions
polkadot/xcm/xcm-builder/src/pay.rs
with
11 additions
and
17 deletions
polkadot/xcm/xcm-builder/src/location_conversion.rs
+
6
−
12
View file @
2651dce9
...
...
@@ -237,18 +237,11 @@ impl<Network: Get<Option<NetworkId>>, AccountId: From<[u8; 32]> + Into<[u8; 32]>
/// network (provided by `Network`) and the `AccountId`'s `[u8; 32]` datum for the `id`.
pub
struct
AliasesIntoAccountId32
<
Network
,
AccountId
>
(
PhantomData
<
(
Network
,
AccountId
)
>
);
impl
<
'a
,
Network
:
Get
<
Option
<
NetworkId
>>
,
AccountId
:
Clone
+
Into
<
[
u8
;
32
]
>
+
Clone
>
Convert
<&
'a
AccountId
,
MultiLocation
>
for
AliasesIntoAccountId32
<
Network
,
AccountId
>
sp_runtime
::
traits
::
Convert
<&
'a
AccountId
,
MultiLocation
>
for
AliasesIntoAccountId32
<
Network
,
AccountId
>
{
fn
convert
(
who
:
&
AccountId
)
->
Result
<
MultiLocation
,
&
'a
AccountId
>
{
Ok
(
AccountId32
{
network
:
Network
::
get
(),
id
:
who
.clone
()
.into
()
}
.into
())
}
}
impl
<
Network
:
Get
<
Option
<
NetworkId
>>
,
AccountId
:
Into
<
[
u8
;
32
]
>
+
Clone
>
Convert
<
AccountId
,
MultiLocation
>
for
AliasesIntoAccountId32
<
Network
,
AccountId
>
{
fn
convert
(
who
:
AccountId
)
->
Result
<
MultiLocation
,
AccountId
>
{
Ok
(
AccountId32
{
network
:
Network
::
get
(),
id
:
who
.into
()
}
.into
())
fn
convert
(
who
:
&
AccountId
)
->
MultiLocation
{
AccountId32
{
network
:
Network
::
get
(),
id
:
who
.clone
()
.into
()
}
.into
()
}
}
...
...
@@ -313,7 +306,8 @@ impl<UniversalLocation: Get<InteriorMultiLocation>, AccountId: From<[u8; 32]> +
}
fn
reverse_ref
(
_
:
impl
Borrow
<
AccountId
>
)
->
Result
<
MultiLocation
,
()
>
{
// if this will be needed, we could implement some kind of guessing, if we have configuration for supported networkId+paraId
// if this is ever be needed, we could implement some kind of guessing, if we have
// configuration for supported networkId+paraId
Err
(())
}
}
...
...
This diff is collapsed.
Click to expand it.
polkadot/xcm/xcm-builder/src/pay.rs
+
5
−
5
View file @
2651dce9
...
...
@@ -28,8 +28,11 @@ use xcm_executor::traits::{QueryHandler, QueryResponseStatus};
/// Implementation of the `frame_support::traits::tokens::Pay` trait, to allow
/// for XCM-based payments of a given `Balance` of some asset ID existing on some chain under
/// ownership of some `Interior` location of the local chain to a particular `Beneficiary`. The
/// `AssetKind` value can be converted into both the XCM `AssetId` (via and `Into` bound) and the
/// the destination chain's location, via the `AssetKindToLocatableAsset` type parameter.
/// `AssetKind` value is not itself bounded (to avoid the issue of needing to wrap some preexisting
/// datatype), however a converter type `AssetKindToLocatableAsset` must be provided in order to
/// translate it into a `LocatableAsset`, which comprises both an XCM `MultiLocation` describing
/// the XCM endpoint on which the asset to be paid resides and an XCM `AssetId` to identify the
/// specific asset at that endpoint.
///
/// This relies on the XCM `TransferAsset` instruction. A trait `BeneficiaryRefToLocation` must be
/// provided in order to convert the `Beneficiary` reference into a location usable by
...
...
@@ -200,6 +203,3 @@ impl<Location: Get<MultiLocation>, AssetKind: Into<AssetId>> Convert<AssetKind,
LocatableAssetId
{
asset_id
:
value
.into
(),
location
:
Location
::
get
()
}
}
}
#[test]
fn
it_builds
()
{}
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment