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
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
#![cfg_attr(not(feature = "std"), no_std)]
#![recursion_limit = "256"]
#![allow(clippy::from_over_into)]
use codec::Decode;
use cumulus_primitives_core::ParaId;
pub use frame_support::{
construct_runtime, match_type, ord_parameter_types, parameter_types,
traits::{IsInVec, Randomness},
weights::{
constants::{BlockExecutionWeight, ExtrinsicBaseWeight, RocksDbWeight, WEIGHT_PER_SECOND},
DispatchClass, IdentityFee, Weight,
},
PalletId, StorageValue,
};
use orml_currencies::BasicCurrencyAdapter;
use orml_xcm_support::{IsNativeConcrete, MultiCurrencyAdapter, MultiNativeAsset};
pub use pallet_balances::Call as BalancesCall;
pub use pallet_timestamp::Call as TimestampCall;
use pallet_xcm::XcmPassthrough;
use polkadot_parachain::primitives::Sibling;
use runtime_common::payment::BalanceToAssetBalance;
use sp_api::impl_runtime_apis;
pub use sp_consensus_aura::sr25519::AuthorityId as AuraId;
use sp_core::{crypto::KeyTypeId, OpaqueMetadata};
#[cfg(any(feature = "std", test))]
pub use sp_runtime::BuildStorage;
use sp_runtime::{
create_runtime_str, generic, impl_opaque_keys,
traits::{AccountIdLookup, BlakeTwo256, Block as BlockT, Convert},
transaction_validity::{TransactionSource, TransactionValidity},
ApplyExtrinsicResult,
};
pub use sp_runtime::{Perbill, Permill, Perquintill};
use sp_std::prelude::*;
#[cfg(feature = "std")]
use sp_version::NativeVersion;
use sp_version::RuntimeVersion;
use xcm::v1::{
BodyId, Fungibility, Junction, Junction::*, Junctions, Junctions::*, MultiAsset, MultiLocation, NetworkId,
};
use xcm_builder::{
AccountId32Aliases, AllowKnownQueryResponses, AllowSubscriptionsFrom, AllowTopLevelPaidExecutionFrom,
EnsureXcmOrigin, FixedRateOfFungible, FixedWeightBounds, LocationInverter, ParentIsDefault, RelayChainAsNative,
SiblingParachainAsNative, SiblingParachainConvertsVia, SignedAccountId32AsNative, SignedToAccountId32,
SovereignSignedViaLocation, TakeRevenue, TakeWeightCredit,
};
use xcm_executor::XcmExecutor;
use frame_support::traits::{EqualPrivilegeOnly, Everything, Nothing};
use frame_system::EnsureRoot;
use pallet_committee::EnsureMember;
use primitives::traits::MultiAssetRegistry;
pub use primitives::*;
pub use runtime_common::{constants::*, types::*, weights};
use xcm_calls::{
proxy::{ProxyCallEncoder, ProxyType},
staking::StakingCallEncoder,
PalletCallEncoder, PassthroughCompactEncoder, PassthroughEncoder,
};
#[cfg(feature = "std")]
include!(concat!(env!("OUT_DIR"), "/wasm_binary.rs"));
pub mod opaque {
pub use sp_runtime::OpaqueExtrinsic as UncheckedExtrinsic;
use super::*;
pub type Block = generic::Block<Header, UncheckedExtrinsic>;
pub type SessionHandlers = ();
impl_opaque_keys! {
pub struct SessionKeys {
pub aura: Aura,
}
}
}
pub const VERSION: RuntimeVersion = RuntimeVersion {
spec_name: create_runtime_str!("pint-parachain"),
impl_name: create_runtime_str!("pint-parachain"),
authoring_version: 1,
spec_version: 1,
impl_version: 1,
apis: RUNTIME_API_VERSIONS,
transaction_version: 1,
};
#[cfg(feature = "std")]
pub fn native_version() -> NativeVersion {
NativeVersion { runtime_version: VERSION, can_author_with: Default::default() }
}
parameter_types! {
pub Ancestry: MultiLocation = Junction::Parachain(
ParachainInfo::parachain_id().into()
).into();
pub const RelayNetwork: NetworkId = NetworkId::Polkadot;
pub SelfLocation: MultiLocation = MultiLocation { parents: 1, interior: Junctions::X1(Junction::Parachain(ParachainInfo::parachain_id().into()))};
pub const Version: RuntimeVersion = VERSION;
pub const ProposalSubmissionPeriod: BlockNumber = 10;
pub const VotingPeriod: BlockNumber = 27 * DAYS;
}
impl frame_system::Config for Runtime {
type BaseCallFilter = Everything;
type BlockWeights = RuntimeBlockWeights;
type BlockLength = RuntimeBlockLength;
type AccountId = AccountId;
type Call = Call;
type Lookup = AccountIdLookup<AccountId, ()>;
type Index = Index;
type BlockNumber = BlockNumber;
type Hash = Hash;
type Hashing = BlakeTwo256;
type Header = generic::Header<BlockNumber, BlakeTwo256>;
type Event = Event;
type Origin = Origin;
type BlockHashCount = BlockHashCount;
type DbWeight = RocksDbWeight;
type Version = Version;
type PalletInfo = PalletInfo;
type OnNewAccount = ();
type OnKilledAccount = ();
type AccountData = pallet_balances::AccountData<Balance>;
type SystemWeightInfo = ();
type SS58Prefix = SS58Prefix;
type OnSetCode = cumulus_pallet_parachain_system::ParachainSetCode<Self>;
}
impl pallet_timestamp::Config for Runtime {
type Moment = u64;
type OnTimestampSet = ();
type MinimumPeriod = MinimumPeriod;
type WeightInfo = ();
}
impl pallet_balances::Config for Runtime {
type MaxLocks = MaxLocks;
type Balance = Balance;
type Event = Event;
type DustRemoval = ();
type ExistentialDeposit = ExistentialDeposit;
type AccountStore = System;
type MaxReserves = ();
type ReserveIdentifier = [u8; 8];
type WeightInfo = pallet_balances::weights::SubstrateWeight<Runtime>;
}
impl pallet_transaction_payment::Config for Runtime {
type OnChargeTransaction = pallet_transaction_payment::CurrencyAdapter<Balances, ()>;
type TransactionByteFee = TransactionByteFee;
type OperationalFeeMultiplier = OperationalFeeMultiplier;
type WeightToFee = IdentityFee<Balance>;
type FeeMultiplierUpdate = ();
}
impl pallet_sudo::Config for Runtime {
type Event = Event;
type Call = Call;
}
impl cumulus_pallet_parachain_system::Config for Runtime {
type Event = Event;
type OnValidationData = ();
type SelfParaId = parachain_info::Pallet<Runtime>;
type OutboundXcmpMessageSource = XcmpQueue;
type DmpMessageHandler = DmpQueue;
type ReservedDmpWeight = ReservedDmpWeight;
type XcmpMessageHandler = XcmpQueue;
type ReservedXcmpWeight = ReservedXcmpWeight;
}
impl parachain_info::Config for Runtime {}
impl cumulus_pallet_aura_ext::Config for Runtime {}
pub type LocationToAccountId = (
ParentIsDefault<AccountId>,
SiblingParachainConvertsVia<Sibling, AccountId>,
AccountId32Aliases<RelayNetwork, AccountId>,
);
pub type LocalAssetTransactor = MultiCurrencyAdapter<
Currencies,
UnknownTokens,
IsNativeConcrete<AssetId, AssetIdConvert>,
AccountId,
LocationToAccountId,
AssetId,
AssetIdConvert,
>;
pub type XcmOriginToCallOrigin = (
SovereignSignedViaLocation<LocationToAccountId, Origin>,
RelayChainAsNative<RelayChainOrigin, Origin>,
SiblingParachainAsNative<cumulus_pallet_xcm::Origin, Origin>,
SignedAccountId32AsNative<RelayNetwork, Origin>,
XcmPassthrough<Origin>,
);
match_type! {
pub type ParentOrParentsUnitPlurality: impl Contains<MultiLocation> = {
MultiLocation { parents: 1, interior: Here } |
MultiLocation { parents: 1, interior: X1(Plurality { id: BodyId::Unit, .. }) }
};
}
pub type Barrier = (
TakeWeightCredit,
AllowTopLevelPaidExecutionFrom<Everything>,
AllowKnownQueryResponses<PolkadotXcm>,
AllowSubscriptionsFrom<Everything>,
);
pub struct ToTreasury;
impl TakeRevenue for ToTreasury {
fn take_revenue(revenue: MultiAsset) {
use orml_traits::currency::MultiCurrency;
match revenue.fun.clone() {
Fungibility::Fungible(amount) => {
if let Some(id) = AssetIdConvert::convert(revenue) {
let _ = Currencies::deposit(id, &PintTreasuryAccount::get(), amount);
}
}
_ => {}
}
}
}
pub struct XcmConfig;
impl xcm_executor::Config for XcmConfig {
type Call = Call;
type XcmSender = XcmRouter;
type AssetTransactor = LocalAssetTransactor;
type OriginConverter = XcmOriginToCallOrigin;
type IsReserve = MultiNativeAsset;
type IsTeleporter = ();
type LocationInverter = LocationInverter<Ancestry>;
type Barrier = Barrier;
type Weigher = FixedWeightBounds<UnitWeightCost, Call, MaxInstructions>;
type Trader = FixedRateOfFungible<BasicPerSecond, ToTreasury>;
type ResponseHandler = PolkadotXcm;
type AssetTrap = PolkadotXcm;
type AssetClaims = PolkadotXcm;
type SubscriptionService = PolkadotXcm;
}
pub type LocalOriginToLocation = SignedToAccountId32<Origin, AccountId, RelayNetwork>;
pub type XcmRouter = (
cumulus_primitives_utility::ParentAsUmp<ParachainSystem, PolkadotXcm>,
XcmpQueue,
);
impl pallet_xcm::Config for Runtime {
type Event = Event;
type SendXcmOrigin = EnsureXcmOrigin<Origin, LocalOriginToLocation>;
type XcmRouter = XcmRouter;
type ExecuteXcmOrigin = EnsureXcmOrigin<Origin, LocalOriginToLocation>;
type XcmExecuteFilter = Everything;
type XcmExecutor = XcmExecutor<XcmConfig>;
type XcmTeleportFilter = Nothing;
type XcmReserveTransferFilter = Everything;
type Weigher = FixedWeightBounds<UnitWeightCost, Call, MaxInstructions>;
type LocationInverter = LocationInverter<Ancestry>;
type Origin = Origin;
type Call = Call;
const VERSION_DISCOVERY_QUEUE_SIZE: u32 = 100;
type AdvertisedXcmVersion = pallet_xcm::CurrentXcmVersion;
}
impl cumulus_pallet_xcm::Config for Runtime {
type Event = Event;
type XcmExecutor = XcmExecutor<XcmConfig>;
}
impl cumulus_pallet_xcmp_queue::Config for Runtime {
type Event = Event;
type XcmExecutor = XcmExecutor<XcmConfig>;
type ChannelInfo = ParachainSystem;
type VersionWrapper = PolkadotXcm;
}
impl cumulus_pallet_dmp_queue::Config for Runtime {
type Event = Event;
type XcmExecutor = XcmExecutor<XcmConfig>;
type ExecuteOverweightOrigin = frame_system::EnsureRoot<AccountId>;
}
parameter_types! {
pub const MaxAuthorities: u32 = 32;
}
impl pallet_aura::Config for Runtime {
type AuthorityId = AuraId;
type DisabledValidators = ();
type MaxAuthorities = MaxAuthorities;
}
impl pallet_authorship::Config for Runtime {
type FindAuthor = pallet_session::FindAccountFromAuthorIndex<Self, Aura>;
type UncleGenerations = UncleGenerations;
type FilterUncle = ();
type EventHandler = CollatorSelection;
}
impl pallet_session::Config for Runtime {
type Event = Event;
type ValidatorId = <Self as frame_system::Config>::AccountId;
type ValidatorIdOf = pallet_collator_selection::IdentityCollator;
type ShouldEndSession = pallet_session::PeriodicSessions<Period, Offset>;
type NextSessionRotation = pallet_session::PeriodicSessions<Period, Offset>;
type SessionManager = CollatorSelection;
type SessionHandler = <opaque::SessionKeys as sp_runtime::traits::OpaqueKeys>::KeyTypeIdProviders;
type Keys = opaque::SessionKeys;
type WeightInfo = ();
}
impl pallet_collator_selection::Config for Runtime {
type Event = Event;
type Currency = Balances;
type UpdateOrigin = GovernanceOrigin<AccountId, Runtime>;
type PotId = PotId;
type MaxCandidates = MaxCandidates;
type MinCandidates = MinCandidates;
type MaxInvulnerables = MaxInvulnerables;
type KickThreshold = Period;
type ValidatorId = <Self as frame_system::Config>::AccountId;
type ValidatorIdOf = pallet_collator_selection::IdentityCollator;
type ValidatorRegistration = Session;
type WeightInfo = ();
}
impl pallet_local_treasury::Config for Runtime {
type AdminOrigin = frame_system::EnsureRoot<AccountId>;
type PalletId = TreasuryPalletId;
type Currency = Balances;
type Event = Event;
type WeightInfo = weights::pallet_local_treasury::WeightInfo<Self>;
}
impl pallet_remote_treasury::Config for Runtime {
type Event = Event;
type AdminOrigin = frame_system::EnsureRoot<AccountId>;
type Balance = Balance;
type AssetId = AssetId;
type PalletId = TreasuryPalletId;
type SelfAssetId = PINTAssetId;
type RelayChainAssetId = RelayChainAssetId;
type XcmAssetTransfer = XTokens;
type AssetIdConvert = AssetIdConvert;
type AccountId32Convert = AccountId32Convert;
type WeightInfo = ();
}
impl pallet_saft_registry::Config for Runtime {
type AdminOrigin = CommitteeOrigin<Runtime>;
type AssetRecorder = AssetIndex;
#[cfg(feature = "runtime-benchmarks")]
type AssetRecorderBenchmarks = AssetIndex;
type Balance = Balance;
type AssetId = AssetId;
type Event = Event;
type WeightInfo = weights::pallet_saft_registry::WeightInfo<Runtime>;
}
impl pallet_committee::Config for Runtime {
type Origin = Origin;
type Action = Call;
type ProposalNonce = u32;
type ProposalSubmissionPeriod = ProposalSubmissionPeriod;
type VotingPeriod = VotingPeriod;
type VotingPeriodRange = VotingPeriodRange<Self>;
type MinCouncilVotes = MinCouncilVotes;
type ProposalSubmissionOrigin = EnsureMember<Self>;
type ProposalExecutionOrigin = EnsureMember<Self>;
type ApprovedByCommitteeOrigin = GovernanceOrigin<AccountId, Runtime>;
type Event = Event;
type WeightInfo = weights::pallet_committee::WeightInfo<Runtime>;
}
impl pallet_price_feed::Config for Runtime {
type AdminOrigin = frame_system::EnsureRoot<AccountId>;
type SelfAssetId = PINTAssetId;
type AssetId = AssetId;
type Time = Timestamp;
type Event = Event;
type WeightInfo = weights::pallet_price_feed::WeightInfo<Runtime>;
}
impl pallet_chainlink_feed::Config for Runtime {
type Event = Event;
type FeedId = FeedId;
type Value = Value;
type Currency = Balances;
type PalletId = FeedPalletId;
type MinimumReserve = MinimumReserve;
type StringLimit = StringLimit;
type OracleCountLimit = OracleLimit;
type FeedLimit = FeedLimit;
type OnAnswerHandler = PriceFeed;
type WeightInfo = ();
}
impl pallet_asset_index::Config for Runtime {
type AdminOrigin = CommitteeOrigin<Runtime>;
type IndexToken = Balances;
type Balance = Balance;
type MaxActiveDeposits = MaxActiveDeposits;
type MaxDecimals = MaxDecimals;
type RedemptionFee = RedemptionFee;
type LockupPeriod = LockupPeriod;
type LockupPeriodRange = LockupPeriodRange<Self>;
type IndexTokenLockIdentifier = IndexTokenLockIdentifier;
type MinimumRedemption = MinimumRedemption;
type WithdrawalPeriod = WithdrawalPeriod;
type RemoteAssetManager = RemoteAssetManager;
type AssetId = AssetId;
type SelfAssetId = PINTAssetId;
type Currency = Currencies;
type PriceFeed = PriceFeed;
#[cfg(feature = "runtime-benchmarks")]
type PriceFeedBenchmarks = PriceFeed;
type SaftRegistry = SaftRegistry;
type BaseWithdrawalFee = BaseWithdrawalFee;
type TreasuryPalletId = TreasuryPalletId;
type Event = Event;
type StringLimit = PalletIndexStringLimit;
type WeightInfo = weights::pallet_asset_index::WeightInfo<Self>;
}
impl orml_tokens::Config for Runtime {
type Event = Event;
type Balance = Balance;
type Amount = Amount;
type CurrencyId = AssetId;
type WeightInfo = ();
type ExistentialDeposits = ExistentialDeposits;
type OnDust = orml_tokens::TransferDust<Runtime, PintTreasuryAccount>;
type MaxLocks = MaxLocks;
type DustRemovalWhitelist = DustRemovalWhitelist;
}
impl orml_currencies::Config for Runtime {
type Event = Event;
type MultiCurrency = Tokens;
type NativeCurrency = BasicCurrencyAdapter<Runtime, Balances, Amount, BlockNumber>;
type GetNativeCurrencyId = PINTAssetId;
type WeightInfo = ();
}
impl orml_xtokens::Config for Runtime {
type Event = Event;
type Balance = Balance;
type CurrencyId = AssetId;
type CurrencyIdConvert = AssetIdConvert;
type AccountIdToMultiLocation = AccountId32Convert;
type SelfLocation = SelfLocation;
type XcmExecutor = XcmExecutor<XcmConfig>;
type Weigher = FixedWeightBounds<UnitWeightCost, Call, MaxInstructions>;
type BaseXcmWeight = BaseXcmWeight;
type LocationInverter = LocationInverter<Ancestry>;
}
impl orml_unknown_tokens::Config for Runtime {
type Event = Event;
}
pub struct AssetIdConvert;
impl Convert<AssetId, Option<MultiLocation>> for AssetIdConvert {
fn convert(asset: AssetId) -> Option<MultiLocation> {
AssetIndex::native_asset_location(&asset)
}
}
impl Convert<MultiLocation, Option<AssetId>> for AssetIdConvert {
fn convert(location: MultiLocation) -> Option<AssetId> {
match location {
MultiLocation { parents: 1, interior: Junctions::Here } => return Some(RelayChainAssetId::get()),
MultiLocation {
parents: 1,
interior: Junctions::X2(Junction::Parachain(id), Junction::GeneralKey(key)),
} if ParaId::from(id) == ParachainInfo::parachain_id() => {
if let Ok(asset_id) = AssetId::decode(&mut &key[..]) {
if AssetIndex::is_liquid_asset(&asset_id) {
return Some(asset_id);
}
}
}
_ => {}
}
None
}
}
impl Convert<MultiAsset, Option<AssetId>> for AssetIdConvert {
fn convert(asset: MultiAsset) -> Option<AssetId> {
if let xcm::v1::AssetId::Concrete(location) = asset.id {
Self::convert(location)
} else {
None
}
}
}
pub struct AccountId32Convert;
impl Convert<AccountId, [u8; 32]> for AccountId32Convert {
fn convert(account_id: AccountId) -> [u8; 32] {
account_id.into()
}
}
impl Convert<AccountId, MultiLocation> for AccountId32Convert {
fn convert(account_id: AccountId) -> MultiLocation {
Junction::AccountId32 { network: NetworkId::Any, id: Self::convert(account_id) }.into()
}
}
pub struct PalletProxyEncoder;
impl ProxyCallEncoder<AccountId, ProxyType, BlockNumber> for PalletProxyEncoder {
type AccountIdEncoder = PassthroughEncoder<AccountId, AssetId>;
type ProxyTypeEncoder = PassthroughEncoder<ProxyType, AssetId>;
type BlockNumberEncoder = PassthroughEncoder<BlockNumber, AssetId>;
}
impl PalletCallEncoder for PalletProxyEncoder {
type Context = AssetId;
fn can_encode(_ctx: &Self::Context) -> bool {
true
}
}
type AccountLookupSource = sp_runtime::MultiAddress<AccountId, ()>;
pub struct PalletStakingEncoder;
impl StakingCallEncoder<AccountLookupSource, Balance, AccountId> for PalletStakingEncoder {
type CompactBalanceEncoder = PassthroughCompactEncoder<Balance, AssetId>;
type SourceEncoder = PassthroughEncoder<AccountLookupSource, AssetId>;
type AccountIdEncoder = PassthroughEncoder<AccountId, AssetId>;
}
impl PalletCallEncoder for PalletStakingEncoder {
type Context = AssetId;
fn can_encode(_ctx: &Self::Context) -> bool {
true
}
}
impl pallet_remote_asset_manager::Config for Runtime {
type Balance = Balance;
type AssetId = AssetId;
type AssetIdConvert = AssetIdConvert;
type PalletStakingCallEncoder = PalletStakingEncoder;
type PalletProxyCallEncoder = PalletProxyEncoder;
type MinimumStatemintTransferAmount = MinimumStatemintTransferAmount;
type SelfAssetId = PINTAssetId;
type SelfLocation = SelfLocation;
type SelfParaId = parachain_info::Pallet<Runtime>;
type RelayChainAssetId = RelayChainAssetId;
type AssetUnbondingSlashingSpans = AssetUnbondingSlashingSpans;
type AssetStakingCap = (MinimumRemoteReserveBalance, MinimumBondExtra);
type Assets = Currencies;
type XcmExecutor = XcmExecutor<XcmConfig>;
type XcmAssetTransfer = XTokens;
type AdminOrigin = frame_system::EnsureSigned<AccountId>;
type XcmSender = XcmRouter;
type Event = Event;
type WeightInfo = weights::pallet_remote_asset_manager::WeightInfo<Self>;
}
impl pallet_asset_tx_payment::Config for Runtime {
type Fungibles = Tokens;
type OnChargeAssetTransaction = pallet_asset_tx_payment::FungiblesAdapter<BalanceToAssetBalance<AssetIndex>, ()>;
}
impl pallet_utility::Config for Runtime {
type Event = Event;
type Call = Call;
type PalletsOrigin = OriginCaller;
type WeightInfo = ();
}
parameter_types! {
pub MaximumSchedulerWeight: Weight = Perbill::from_percent(10) * RuntimeBlockWeights::get().max_block;
pub const MaxScheduledPerBlock: u32 = 10;
}
impl pallet_scheduler::Config for Runtime {
type Event = Event;
type Origin = Origin;
type PalletsOrigin = OriginCaller;
type Call = Call;
type MaximumWeight = MaximumSchedulerWeight;
type ScheduleOrigin = EnsureRoot<AccountId>;
type MaxScheduledPerBlock = MaxScheduledPerBlock;
type OriginPrivilegeCmp = EqualPrivilegeOnly;
type WeightInfo = ();
}
impl pallet_treasury::Config for Runtime {
type Currency = Balances;
type ApproveOrigin = GovernanceOrigin<AccountId, Runtime>;
type RejectOrigin = GovernanceOrigin<AccountId, Runtime>;
type Event = Event;
type OnSlash = Treasury;
type ProposalBond = ProposalBond;
type ProposalBondMinimum = ProposalBondMinimum;
type SpendPeriod = SpendPeriod;
type Burn = Burn;
type PalletId = TreasuryPalletId;
type BurnDestination = ();
type WeightInfo = ();
type SpendFunds = ();
type MaxApprovals = MaxApprovals;
}
construct_runtime!(
pub enum Runtime where
Block = Block,
NodeBlock = opaque::Block,
UncheckedExtrinsic = UncheckedExtrinsic,
{
System: frame_system::{Pallet, Call, Config, Storage, Event<T>} = 0,
Timestamp: pallet_timestamp::{Pallet, Call, Storage, Inherent} = 1,
Balances: pallet_balances::{Pallet, Call, Storage, Config<T>, Event<T>} = 2,
TransactionPayment: pallet_transaction_payment::{Pallet, Storage} = 3,
Sudo: pallet_sudo::{Pallet, Call, Config<T>, Storage, Event<T>} = 4,
Utility: pallet_utility::{Pallet, Call, Event} = 5,
Scheduler: pallet_scheduler::{Pallet, Call, Storage, Event<T>} = 6,
AssetTxPayment: pallet_asset_tx_payment::{Pallet} = 10,
Treasury: pallet_treasury::{Pallet, Call, Storage, Config, Event<T>} = 15,
ParachainSystem: cumulus_pallet_parachain_system::{Pallet, Call, Storage, Inherent, Config, Event<T>} = 20,
ParachainInfo: parachain_info::{Pallet, Storage, Config} = 21,
Authorship: pallet_authorship::{Pallet, Call, Storage} = 40,
CollatorSelection: pallet_collator_selection::{Pallet, Call, Storage, Event<T>, Config<T>} = 41,
Session: pallet_session::{Pallet, Call, Storage, Event, Config<T>} = 42,
Aura: pallet_aura::{Pallet, Config<T>} = 43,
AuraExt: cumulus_pallet_aura_ext::{Pallet, Config} = 44,
Tokens: orml_tokens::{Pallet, Storage, Call, Event<T>, Config<T>} = 60,
Currencies: orml_currencies::{Pallet, Call, Event<T>} = 61,
XTokens: orml_xtokens::{Pallet, Storage, Call, Event<T>} = 62,
UnknownTokens: orml_unknown_tokens::{Pallet, Storage, Event} = 63,
AssetIndex: pallet_asset_index::{Pallet, Call, Storage, Event<T>} = 80,
Committee: pallet_committee::{Pallet, Call, Storage, Origin<T>, Event<T>, Config<T>} = 81,
LocalTreasury: pallet_local_treasury::{Pallet, Call, Storage, Event<T>} = 82,
RemoteTreasury: pallet_remote_treasury::{Pallet, Call, Storage, Event<T>} = 83,
SaftRegistry: pallet_saft_registry::{Pallet, Call, Storage, Event<T>} = 84,
RemoteAssetManager: pallet_remote_asset_manager::{Pallet, Call, Storage, Event<T>, Config<T>} = 85,
PriceFeed: pallet_price_feed::{Pallet, Call, Storage, Event<T>} = 86,
ChainlinkFeed: pallet_chainlink_feed::{Pallet, Call, Storage, Event<T>, Config<T>} = 90,
XcmpQueue: cumulus_pallet_xcmp_queue::{Pallet, Call, Storage, Event<T>} = 100,
DmpQueue: cumulus_pallet_dmp_queue::{Pallet, Call, Storage, Event<T>} = 101,
PolkadotXcm: pallet_xcm::{Pallet, Storage, Call, Event<T>, Origin, Config} = 102,
CumulusXcm: cumulus_pallet_xcm::{Pallet, Event<T>, Origin} = 103
}
);
pub type Address = sp_runtime::MultiAddress<AccountId, ()>;
pub type Header = generic::Header<BlockNumber, BlakeTwo256>;
pub type Block = generic::Block<Header, UncheckedExtrinsic>;
pub type SignedBlock = generic::SignedBlock<Block>;
pub type BlockId = generic::BlockId<Block>;
pub type SignedExtra = (
frame_system::CheckSpecVersion<Runtime>,
frame_system::CheckTxVersion<Runtime>,
frame_system::CheckGenesis<Runtime>,
frame_system::CheckEra<Runtime>,
frame_system::CheckNonce<Runtime>,
frame_system::CheckWeight<Runtime>,
pallet_asset_tx_payment::ChargeAssetTxPayment<Runtime>,
);
pub type UncheckedExtrinsic = generic::UncheckedExtrinsic<Address, Call, Signature, SignedExtra>;
pub type CheckedExtrinsic = generic::CheckedExtrinsic<AccountId, Call, SignedExtra>;
pub type Executive =
frame_executive::Executive<Runtime, Block, frame_system::ChainContext<Runtime>, Runtime, AllPallets, ()>;
impl_runtime_apis! {
impl sp_api::Core<Block> for Runtime {
fn version() -> RuntimeVersion {
VERSION
}
fn execute_block(block: Block) {
Executive::execute_block(block)
}
fn initialize_block(header: &<Block as BlockT>::Header) {
Executive::initialize_block(header)
}
}
impl sp_api::Metadata<Block> for Runtime {
fn metadata() -> OpaqueMetadata {
OpaqueMetadata::new(Runtime::metadata().into())
}
}
impl sp_block_builder::BlockBuilder<Block> for Runtime {
fn apply_extrinsic(extrinsic: <Block as BlockT>::Extrinsic) -> ApplyExtrinsicResult {
Executive::apply_extrinsic(extrinsic)
}
fn finalize_block() -> <Block as BlockT>::Header {
Executive::finalize_block()
}
fn inherent_extrinsics(data: sp_inherents::InherentData) -> Vec<<Block as BlockT>::Extrinsic> {
data.create_extrinsics()
}
fn check_inherents(
block: Block,
data: sp_inherents::InherentData,
) -> sp_inherents::CheckInherentsResult {
data.check_extrinsics(&block)
}
}
impl sp_transaction_pool::runtime_api::TaggedTransactionQueue<Block> for Runtime {
fn validate_transaction(
source: TransactionSource,
tx: <Block as BlockT>::Extrinsic,
block_hash: <Block as BlockT>::Hash,
) -> TransactionValidity {
Executive::validate_transaction(source, tx, block_hash)
}
}
impl sp_offchain::OffchainWorkerApi<Block> for Runtime {
fn offchain_worker(header: &<Block as BlockT>::Header) {
Executive::offchain_worker(header)
}
}
impl sp_session::SessionKeys<Block> for Runtime {
fn generate_session_keys(seed: Option<Vec<u8>>) -> Vec<u8> {
opaque::SessionKeys::generate(seed)
}
fn decode_session_keys(
encoded: Vec<u8>,
) -> Option<Vec<(Vec<u8>, KeyTypeId)>> {
opaque::SessionKeys::decode_into_raw_public_keys(&encoded)
}
}
impl sp_consensus_aura::AuraApi<Block, AuraId> for Runtime {
fn slot_duration() -> sp_consensus_aura::SlotDuration {
sp_consensus_aura::SlotDuration::from_millis(Aura::slot_duration())
}
fn authorities() -> Vec<AuraId> {
Aura::authorities().into_inner()
}
}
impl cumulus_primitives_core::CollectCollationInfo<Block> for Runtime {
fn collect_collation_info() -> cumulus_primitives_core::CollationInfo {
ParachainSystem::collect_collation_info()
}
}
impl frame_system_rpc_runtime_api::AccountNonceApi<Block, AccountId, Index> for Runtime {
fn account_nonce(account: AccountId) -> Index {
System::account_nonce(account)
}
}
impl pallet_transaction_payment_rpc_runtime_api::TransactionPaymentApi<Block, Balance> for Runtime {
fn query_info(
uxt: <Block as BlockT>::Extrinsic,
len: u32,
) -> pallet_transaction_payment_rpc_runtime_api::RuntimeDispatchInfo<Balance> {
TransactionPayment::query_info(uxt, len)
}
fn query_fee_details(
uxt: <Block as BlockT>::Extrinsic,
len: u32,
) -> pallet_transaction_payment::FeeDetails<Balance> {
TransactionPayment::query_fee_details(uxt, len)
}
}
impl pallet_asset_index_rpc_runtime_api::AssetIndexApi<
Block,
AccountId,
AssetId,
Balance,
> for Runtime {
fn get_nav() -> primitives::Ratio {
use primitives::traits::NavProvider;
AssetIndex::nav().unwrap_or_default()
}
}
#[cfg(feature = "runtime-benchmarks")]
impl frame_benchmarking::Benchmark<Block> for Runtime {
fn benchmark_metadata(extra: bool) -> (
Vec<frame_benchmarking::BenchmarkList>,
Vec<frame_support::traits::StorageInfo>,
) {
use frame_benchmarking:: {BenchmarkList, list_benchmark, Benchmarking};
use frame_support::traits::StorageInfoTrait;
let mut list = Vec::<BenchmarkList>::new();
list_benchmark!(list, extra, pallet_asset_index, AssetIndex);
list_benchmark!(list, extra, pallet_committee, Committee);
list_benchmark!(list, extra, pallet_local_treasury, LocalTreasury);
list_benchmark!(list, extra, pallet_price_feed, PriceFeed);
list_benchmark!(list, extra, pallet_saft_registry, SaftRegistry);
let storage_info = AllPalletsWithSystem::storage_info();
return (list, storage_info)
}
fn dispatch_benchmark(
config: frame_benchmarking::BenchmarkConfig
) -> Result<Vec<frame_benchmarking::BenchmarkBatch>, sp_runtime::RuntimeString> {
use frame_benchmarking::{Benchmarking, BenchmarkBatch, add_benchmark, TrackedStorageKey};
use frame_system_benchmarking::Pallet as SystemBench;
impl frame_system_benchmarking::Config for Runtime {}
let whitelist: Vec<TrackedStorageKey> = vec![
hex_literal::hex!("26aa394eea5630e07c48ae0c9558cef702a5c1b19ab7a04f536c519aca4983ac").to_vec().into(),
hex_literal::hex!("c2261276cc9d1f8598ea4b6a74b15c2f57c875e4cff74148e4628f264b974c80").to_vec().into(),
hex_literal::hex!("26aa394eea5630e07c48ae0c9558cef7ff553b5a9862a516939d82b3d3d8661a").to_vec().into(),
hex_literal::hex!("26aa394eea5630e07c48ae0c9558cef70a98fdbe9ce6c55837576c60c7af3850").to_vec().into(),
hex_literal::hex!("26aa394eea5630e07c48ae0c9558cef780d41e5e16056765bc8461851072c9d7").to_vec().into(),
];
let mut batches = Vec::<BenchmarkBatch>::new();
let params = (&config, &whitelist);
add_benchmark!(params, batches, frame_system, SystemBench::<Runtime>);
add_benchmark!(params, batches, pallet_balances, Balances);
add_benchmark!(params, batches, pallet_timestamp, Timestamp);
add_benchmark!(params, batches, pallet_asset_index, AssetIndex);
add_benchmark!(params, batches, pallet_committee, Committee);
add_benchmark!(params, batches, pallet_local_treasury, LocalTreasury);
add_benchmark!(params, batches, pallet_price_feed, PriceFeed);
add_benchmark!(params, batches, pallet_saft_registry, SaftRegistry);
if batches.is_empty() { return Err("Benchmark not found for this pallet.".into()) }
Ok(batches)
}
}
}
struct CheckInherents;
impl cumulus_pallet_parachain_system::CheckInherents<Block> for CheckInherents {
fn check_inherents(
block: &Block,
relay_state_proof: &cumulus_pallet_parachain_system::RelayChainStateProof,
) -> sp_inherents::CheckInherentsResult {
let relay_chain_slot =
relay_state_proof.read_slot().expect("Could not read the relay chain slot from the proof");
let inherent_data = cumulus_primitives_timestamp::InherentDataProvider::from_relay_chain_slot_and_duration(
relay_chain_slot,
sp_std::time::Duration::from_secs(6),
)
.create_inherent_data()
.expect("Could not create the timestamp inherent data");
inherent_data.check_extrinsics(block)
}
}
cumulus_pallet_parachain_system::register_validate_block!(
Runtime = Runtime,
BlockExecutor = cumulus_pallet_aura_ext::BlockExecutor::<Runtime, Executive>,
CheckInherents = CheckInherents,
);