1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
#![cfg_attr(not(feature = "std"), no_std)]
pub use pallet::*;
#[frame_support::pallet]
#[allow(clippy::unused_unit)]
pub mod pallet {
use frame_support::{
dispatch::DispatchResult,
pallet_prelude::*,
sp_runtime::traits::{AccountIdConversion, AtLeast32BitUnsigned, Convert, Zero},
traits::Get,
transactional, PalletId,
};
use frame_system::pallet_prelude::*;
use orml_traits::XcmTransfer;
use xcm::{
opaque::v1::{Junction, NetworkId},
v1::MultiLocation,
};
#[pallet::config]
pub trait Config: frame_system::Config {
type Event: From<Event<Self>> + IsType<<Self as frame_system::Config>::Event>;
type AdminOrigin: EnsureOrigin<Self::Origin>;
type Balance: Parameter
+ Member
+ AtLeast32BitUnsigned
+ Default
+ Copy
+ MaybeSerializeDeserialize
+ Into<u128>;
type AssetId: Parameter + Member + Copy + MaybeSerializeDeserialize;
#[pallet::constant]
type PalletId: Get<PalletId>;
#[pallet::constant]
type SelfAssetId: Get<Self::AssetId>;
#[pallet::constant]
type RelayChainAssetId: Get<Self::AssetId>;
type XcmAssetTransfer: XcmTransfer<Self::AccountId, Self::Balance, Self::AssetId>;
type AssetIdConvert: Convert<Self::AssetId, Option<MultiLocation>>;
type AccountId32Convert: Convert<Self::AccountId, [u8; 32]>;
type WeightInfo: WeightInfo;
}
#[pallet::error]
pub enum Error<T> {
InvalidAsset,
}
#[pallet::event]
#[pallet::generate_deposit(pub(super) fn deposit_event)]
pub enum Event<T: Config> {
Withdrawn(T::AssetId, T::AccountId, T::Balance),
}
#[pallet::hooks]
impl<T: Config> Hooks<BlockNumberFor<T>> for Pallet<T> {}
#[pallet::extra_constants]
impl<T: Config> Pallet<T> {
pub fn treasury_account() -> T::AccountId {
T::PalletId::get().into_account()
}
}
#[pallet::pallet]
pub struct Pallet<T>(_);
#[pallet::call]
impl<T: Config> Pallet<T> {
#[pallet::weight(T::WeightInfo::transfer())]
#[transactional]
pub fn transfer(
origin: OriginFor<T>,
asset: T::AssetId,
amount: T::Balance,
recipient: T::AccountId,
) -> DispatchResult {
T::AdminOrigin::ensure_origin(origin)?;
if asset == T::SelfAssetId::get() {
return Err(Error::<T>::InvalidAsset.into());
}
if amount.is_zero() {
return Ok(());
}
T::XcmAssetTransfer::transfer(
Self::treasury_account(),
asset,
amount,
Self::destination(asset, recipient.clone())?,
100_000_000,
)?;
Self::deposit_event(Event::<T>::Withdrawn(asset, recipient, amount));
Ok(())
}
#[pallet::weight(T::WeightInfo::transfer_relaychain_asset())]
#[transactional]
pub fn transfer_relaychain_asset(
origin: OriginFor<T>,
amount: T::Balance,
recipient: T::AccountId,
) -> DispatchResult {
T::AdminOrigin::ensure_origin(origin)?;
if amount.is_zero() {
return Ok(());
}
let asset = T::RelayChainAssetId::get();
T::XcmAssetTransfer::transfer(
Self::treasury_account(),
asset,
amount,
Self::destination(asset, recipient.clone())?,
100_000_000,
)?;
Self::deposit_event(Event::<T>::Withdrawn(asset, recipient, amount));
Ok(())
}
}
impl<T: Config> Pallet<T> {
fn destination(asset: T::AssetId, recipient: T::AccountId) -> Result<MultiLocation, DispatchError> {
let mut dest: MultiLocation = T::AssetIdConvert::convert(asset).ok_or(Error::<T>::InvalidAsset)?;
let id = T::AccountId32Convert::convert(recipient);
dest.push_interior(Junction::AccountId32 { network: NetworkId::Any, id })
.map_err(|_| Error::<T>::InvalidAsset)?;
Ok(dest)
}
}
pub trait WeightInfo {
fn transfer() -> Weight;
fn transfer_relaychain_asset() -> Weight;
}
impl WeightInfo for () {
fn transfer() -> Weight {
Default::default()
}
fn transfer_relaychain_asset() -> Weight {
Default::default()
}
}
}