lib.rs 45.2 KB
Newer Older
Shawn Tabrizi's avatar
Shawn Tabrizi committed
1
// Copyright 2017-2020 Parity Technologies (UK) Ltd.
Gav's avatar
Gav committed
2
3
4
5
6
7
8
9
10
11
12
13
14
// This file is part of Polkadot.

// Polkadot is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.

// Polkadot is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.

// You should have received a copy of the GNU General Public License
15
// along with Polkadot. If not, see <http://www.gnu.org/licenses/>.
Gav's avatar
Gav committed
16

17
//! The Polkadot runtime. This can be compiled with `#[no_std]`, ready for Wasm.
Gav's avatar
Gav committed
18
19

#![cfg_attr(not(feature = "std"), no_std)]
20
21
// `construct_runtime!` does a lot of recursion and requires us to increase the limit to 256.
#![recursion_limit="256"]
Gav Wood's avatar
Gav Wood committed
22

23
use sp_std::prelude::*;
24
use sp_core::u32_trait::{_1, _2, _3, _4, _5};
25
use codec::{Encode, Decode};
26
use primitives::v1::{
27
28
29
	AccountId, AccountIndex, Balance, BlockNumber, Hash, Nonce, Signature, Moment, ValidatorId,
	ValidatorIndex, CoreState, Id, CandidateEvent, ValidationData, OccupiedCoreAssumption,
	CommittedCandidateReceipt, PersistedValidationData, GroupRotationInfo, ValidationCode,
30
};
31
use runtime_common::{
32
	claims, SlowAdjustingFeeUpdate,
33
	impls::{CurrencyToVoteHandler, ToAuthor},
34
	NegativeImbalance, BlockHashCount, MaximumBlockWeight, AvailableBlockRatio,
35
	MaximumBlockLength, BlockExecutionWeight, ExtrinsicBaseWeight, RocksDbWeight,
36
	MaximumExtrinsicWeight, ParachainSessionKeyPlaceholder,
37
};
38
use sp_runtime::{
39
	create_runtime_str, generic, impl_opaque_keys, ModuleId,
40
	ApplyExtrinsicResult, KeyTypeId, Percent, Permill, Perbill,
Gavin Wood's avatar
Gavin Wood committed
41
	transaction_validity::{TransactionValidity, TransactionSource, TransactionPriority},
42
	curve::PiecewiseLinear,
43
	traits::{
Gavin Wood's avatar
Gavin Wood committed
44
45
		BlakeTwo256, Block as BlockT, OpaqueKeys, ConvertInto, IdentityLookup,
		Extrinsic as ExtrinsicT, SaturatedConversion, Verify,
46
	},
Gav Wood's avatar
Gav Wood committed
47
};
48
49
#[cfg(feature = "runtime-benchmarks")]
use sp_runtime::RuntimeString;
50
51
use sp_version::RuntimeVersion;
use pallet_grandpa::{AuthorityId as GrandpaId, fg_primitives};
52
#[cfg(any(feature = "std", test))]
53
use sp_version::NativeVersion;
54
55
use sp_core::OpaqueMetadata;
use sp_staking::SessionIndex;
56
use frame_support::{
57
58
	parameter_types, construct_runtime, debug, RuntimeDebug,
	traits::{KeyOwnerProofSystem, SplitTwoWays, Randomness, LockIdentifier, Filter, InstanceFilter},
59
	weights::Weight,
Gavin Wood's avatar
Gavin Wood committed
60
};
61
62
use frame_system::{EnsureRoot, EnsureOneOf};
use pallet_im_online::sr25519::AuthorityId as ImOnlineId;
Gavin Wood's avatar
Gavin Wood committed
63
use authority_discovery_primitives::AuthorityId as AuthorityDiscoveryId;
64
65
use pallet_transaction_payment_rpc_runtime_api::RuntimeDispatchInfo;
use pallet_session::{historical as session_historical};
66
use static_assertions::const_assert;
67

Gav Wood's avatar
Gav Wood committed
68
#[cfg(feature = "std")]
69
pub use pallet_staking::StakerStatus;
70
#[cfg(any(feature = "std", test))]
71
pub use sp_runtime::BuildStorage;
72
73
pub use pallet_timestamp::Call as TimestampCall;
pub use pallet_balances::Call as BalancesCall;
74
75
76

/// Constant values used within the runtime.
pub mod constants;
77
use constants::{time::*, currency::*, fee::*};
78

79
80
81
// Weights used in the runtime.
mod weights;

82
83
84
85
// Make the WASM binary available.
#[cfg(feature = "std")]
include!(concat!(env!("OUT_DIR"), "/wasm_binary.rs"));

86
87
88
89
/// Runtime version (Kusama).
pub const VERSION: RuntimeVersion = RuntimeVersion {
	spec_name: create_runtime_str!("kusama"),
	impl_name: create_runtime_str!("parity-kusama"),
90
	authoring_version: 2,
91
	spec_version: 2025,
92
	impl_version: 0,
93
	#[cfg(not(feature = "disable-runtime-api"))]
94
	apis: RUNTIME_API_VERSIONS,
95
	#[cfg(feature = "disable-runtime-api")]
96
97
	apis: version::create_apis_vec![[]],
	transaction_version: 3,
98
};
Arkadiy Paronyan's avatar
Arkadiy Paronyan committed
99

100
101
102
103
104
105
106
107
108
/// Native version.
#[cfg(any(feature = "std", test))]
pub fn native_version() -> NativeVersion {
	NativeVersion {
		runtime_version: VERSION,
		can_author_with: Default::default(),
	}
}

109
/// Avoid processing transactions from slots and parachain registrar.
110
111
pub struct BaseFilter;
impl Filter<Call> for BaseFilter {
112
113
	fn filter(_: &Call) -> bool {
		true
114
115
116
	}
}

Gavin Wood's avatar
Gavin Wood committed
117
118
119
type MoreThanHalfCouncil = EnsureOneOf<
	AccountId,
	EnsureRoot<AccountId>,
120
	pallet_collective::EnsureProportionMoreThan<_1, _2, AccountId, CouncilCollective>
Gavin Wood's avatar
Gavin Wood committed
121
122
>;

123
parameter_types! {
124
	pub const Version: RuntimeVersion = VERSION;
125
126
}

127
impl frame_system::Trait for Runtime {
128
	type BaseCallFilter = BaseFilter;
129
	type Origin = Origin;
130
	type Call = Call;
Gav Wood's avatar
Gav Wood committed
131
	type Index = Nonce;
132
133
134
135
	type BlockNumber = BlockNumber;
	type Hash = Hash;
	type Hashing = BlakeTwo256;
	type AccountId = AccountId;
136
	type Lookup = IdentityLookup<Self::AccountId>;
137
	type Header = generic::Header<BlockNumber, BlakeTwo256>;
Gav's avatar
Gav committed
138
	type Event = Event;
139
	type BlockHashCount = BlockHashCount;
140
	type MaximumBlockWeight = MaximumBlockWeight;
141
	type DbWeight = RocksDbWeight;
142
143
	type BlockExecutionWeight = BlockExecutionWeight;
	type ExtrinsicBaseWeight = ExtrinsicBaseWeight;
Tomasz Drwięga's avatar
Tomasz Drwięga committed
144
	type MaximumExtrinsicWeight = MaximumExtrinsicWeight;
145
146
	type MaximumBlockLength = MaximumBlockLength;
	type AvailableBlockRatio = AvailableBlockRatio;
147
	type Version = Version;
148
	type PalletInfo = PalletInfo;
149
	type AccountData = pallet_balances::AccountData<Balance>;
150
	type OnNewAccount = ();
151
	type OnKilledAccount = ();
152
	type SystemWeightInfo = weights::frame_system::WeightInfo<Runtime>;
153
154
}

155
156
157
158
parameter_types! {
	pub const MaxScheduledPerBlock: u32 = 50;
}

159
impl pallet_scheduler::Trait for Runtime {
Gavin Wood's avatar
Gavin Wood committed
160
161
	type Event = Event;
	type Origin = Origin;
162
	type PalletsOrigin = OriginCaller;
Gavin Wood's avatar
Gavin Wood committed
163
164
	type Call = Call;
	type MaximumWeight = MaximumBlockWeight;
165
	type ScheduleOrigin = EnsureRoot<AccountId>;
166
	type MaxScheduledPerBlock = MaxScheduledPerBlock;
167
	type WeightInfo = weights::pallet_scheduler::WeightInfo<Runtime>;
Gavin Wood's avatar
Gavin Wood committed
168
169
}

170
parameter_types! {
171
	pub const EpochDuration: u64 = EPOCH_DURATION_IN_BLOCKS as u64;
172
173
174
	pub const ExpectedBlockTime: Moment = MILLISECS_PER_BLOCK;
}

175
impl pallet_babe::Trait for Runtime {
176
177
	type EpochDuration = EpochDuration;
	type ExpectedBlockTime = ExpectedBlockTime;
178
179

	// session module is the trigger
180
	type EpochChangeTrigger = pallet_babe::ExternalTrigger;
181
182
183
184
185

	type KeyOwnerProofSystem = Historical;

	type KeyOwnerProof = <Self::KeyOwnerProofSystem as KeyOwnerProofSystem<(
		KeyTypeId,
186
		pallet_babe::AuthorityId,
187
188
189
190
	)>>::Proof;

	type KeyOwnerIdentification = <Self::KeyOwnerProofSystem as KeyOwnerProofSystem<(
		KeyTypeId,
191
		pallet_babe::AuthorityId,
192
193
194
	)>>::IdentificationTuple;

	type HandleEquivocation =
195
		pallet_babe::EquivocationHandler<Self::KeyOwnerIdentification, Offences>;
196
197

	type WeightInfo = ();
198
199
}

Gavin Wood's avatar
Gavin Wood committed
200
201
202
203
parameter_types! {
	pub const IndexDeposit: Balance = 1 * DOLLARS;
}

204
impl pallet_indices::Trait for Runtime {
Gav Wood's avatar
Gav Wood committed
205
	type AccountIndex = AccountIndex;
206
207
	type Currency = Balances;
	type Deposit = IndexDeposit;
Gav Wood's avatar
Gav Wood committed
208
	type Event = Event;
209
	type WeightInfo = weights::pallet_indices::WeightInfo<Runtime>;
Gav Wood's avatar
Gav Wood committed
210
211
}

Gavin Wood's avatar
Gavin Wood committed
212
parameter_types! {
Gavin Wood's avatar
Gavin Wood committed
213
	pub const ExistentialDeposit: Balance = 1 * CENTS;
214
	pub const MaxLocks: u32 = 50;
Gavin Wood's avatar
Gavin Wood committed
215
216
217
218
219
}

/// Splits fees 80/20 between treasury and block author.
pub type DealWithFees = SplitTwoWays<
	Balance,
220
	NegativeImbalance<Runtime>,
221
	_4, Treasury,   // 4 parts (80%) goes to the treasury.
222
	_1, ToAuthor<Runtime>,   // 1 part (20%) goes to the block author.
Gavin Wood's avatar
Gavin Wood committed
223
224
>;

225
impl pallet_balances::Trait for Runtime {
Gav's avatar
Gav committed
226
	type Balance = Balance;
227
	type DustRemoval = ();
Gavin Wood's avatar
Gavin Wood committed
228
	type Event = Event;
Gavin Wood's avatar
Gavin Wood committed
229
	type ExistentialDeposit = ExistentialDeposit;
230
	type AccountStore = System;
231
	type MaxLocks = MaxLocks;
232
	type WeightInfo = weights::pallet_balances::WeightInfo<Runtime>;
233
234
235
236
237
238
}

parameter_types! {
	pub const TransactionByteFee: Balance = 10 * MILLICENTS;
}

239
impl pallet_transaction_payment::Trait for Runtime {
240
241
	type Currency = Balances;
	type OnTransactionPayment = DealWithFees;
Gavin Wood's avatar
Gavin Wood committed
242
	type TransactionByteFee = TransactionByteFee;
243
	type WeightToFee = WeightToFee;
244
	type FeeMultiplierUpdate = SlowAdjustingFeeUpdate<Self>;
Gav's avatar
Gav committed
245
246
}

247
parameter_types! {
248
	pub const MinimumPeriod: u64 = SLOT_DURATION / 2;
249
}
250
impl pallet_timestamp::Trait for Runtime {
251
	type Moment = u64;
252
	type OnTimestampSet = Babe;
253
	type MinimumPeriod = MinimumPeriod;
254
	type WeightInfo = weights::pallet_timestamp::WeightInfo<Runtime>;
255
256
}

Gavin Wood's avatar
Gavin Wood committed
257
parameter_types! {
258
	pub const UncleGenerations: u32 = 0;
Gavin Wood's avatar
Gavin Wood committed
259
260
261
}

// TODO: substrate#2986 implement this properly
262
263
impl pallet_authorship::Trait for Runtime {
	type FindAuthor = pallet_session::FindAccountFromAuthorIndex<Self, Babe>;
Gavin Wood's avatar
Gavin Wood committed
264
265
	type UncleGenerations = UncleGenerations;
	type FilterUncle = ();
Gavin Wood's avatar
Gavin Wood committed
266
	type EventHandler = (Staking, ImOnline);
Gavin Wood's avatar
Gavin Wood committed
267
268
}

269
270
271
272
273
274
parameter_types! {
	pub const Period: BlockNumber = 10 * MINUTES;
	pub const Offset: BlockNumber = 0;
}

impl_opaque_keys! {
275
	pub struct SessionKeys {
Gavin Wood's avatar
Gavin Wood committed
276
277
278
		pub grandpa: Grandpa,
		pub babe: Babe,
		pub im_online: ImOnline,
279
		pub parachain_validator: ParachainSessionKeyPlaceholder<Runtime>,
Gavin Wood's avatar
Gavin Wood committed
280
		pub authority_discovery: AuthorityDiscovery,
281
	}
282
283
}

thiolliere's avatar
thiolliere committed
284
285
286
287
parameter_types! {
	pub const DisabledValidatorsThreshold: Perbill = Perbill::from_percent(17);
}

288
impl pallet_session::Trait for Runtime {
Gav's avatar
Gav committed
289
	type Event = Event;
290
	type ValidatorId = AccountId;
291
	type ValidatorIdOf = pallet_staking::StashOf<Self>;
Gavin Wood's avatar
Gavin Wood committed
292
	type ShouldEndSession = Babe;
293
	type NextSessionRotation = Babe;
294
	type SessionManager = pallet_session::historical::NoteHistoricalRoot<Self, Staking>;
Gavin Wood's avatar
Gavin Wood committed
295
296
	type SessionHandler = <SessionKeys as OpaqueKeys>::KeyTypeIdProviders;
	type Keys = SessionKeys;
thiolliere's avatar
thiolliere committed
297
	type DisabledValidatorsThreshold = DisabledValidatorsThreshold;
298
	type WeightInfo = weights::pallet_session::WeightInfo<Runtime>;
299
300
}

301
302
303
impl pallet_session::historical::Trait for Runtime {
	type FullIdentification = pallet_staking::Exposure<AccountId, Balance>;
	type FullIdentificationOf = pallet_staking::ExposureOf<Runtime>;
304
305
}

306
307
308
// TODO #6469: This shouldn't be static, but a lazily cached value, not built unless needed, and
// re-built in case input parameters have changed. The `ideal_stake` should be determined by the
// amount of parachain slots being bid on: this should be around `(75 - 25.min(slots / 4))%`.
309
pallet_staking_reward_curve::build! {
thiolliere's avatar
thiolliere committed
310
311
312
	const REWARD_CURVE: PiecewiseLinear<'static> = curve!(
		min_inflation: 0_025_000,
		max_inflation: 0_100_000,
313
314
315
		// 3:2:1 staked : parachains : float.
		// while there's no parachains, then this is 75% staked : 25% float.
		ideal_stake: 0_750_000,
thiolliere's avatar
thiolliere committed
316
317
318
319
320
321
		falloff: 0_050_000,
		max_piece_count: 40,
		test_precision: 0_005_000,
	);
}

322
parameter_types! {
Gavin Wood's avatar
Gavin Wood committed
323
	// Six sessions in an era (6 hours).
324
	pub const SessionsPerEra: SessionIndex = 6;
Gavin Wood's avatar
Gavin Wood committed
325
	// 28 eras for unbonding (7 days).
326
	pub const BondingDuration: pallet_staking::EraIndex = 28;
327
	// 27 eras in which slashes can be cancelled (slightly less than 7 days).
328
	pub const SlashDeferDuration: pallet_staking::EraIndex = 27;
thiolliere's avatar
thiolliere committed
329
	pub const RewardCurve: &'static PiecewiseLinear<'static> = &REWARD_CURVE;
330
	pub const MaxNominatorRewardedPerValidator: u32 = 256;
331
332
	// quarter of the last session will be for election.
	pub const ElectionLookahead: BlockNumber = EPOCH_DURATION_IN_BLOCKS / 4;
333
334
	pub const MaxIterations: u32 = 10;
	pub MinSolutionScoreBump: Perbill = Perbill::from_rational_approximation(5u32, 10_000);
335
}
336

Gavin Wood's avatar
Gavin Wood committed
337
338
339
type SlashCancelOrigin = EnsureOneOf<
	AccountId,
	EnsureRoot<AccountId>,
340
	pallet_collective::EnsureProportionAtLeast<_1, _2, AccountId, CouncilCollective>
Gavin Wood's avatar
Gavin Wood committed
341
342
>;

343
impl pallet_staking::Trait for Runtime {
Gavin Wood's avatar
Gavin Wood committed
344
	type Currency = Balances;
345
	type UnixTime = Timestamp;
346
	type CurrencyToVote = CurrencyToVoteHandler<Self>;
Gavin Wood's avatar
Gavin Wood committed
347
	type RewardRemainder = Treasury;
Gav's avatar
Gav committed
348
	type Event = Event;
349
	type Slash = Treasury;
350
	type Reward = ();
351
352
	type SessionsPerEra = SessionsPerEra;
	type BondingDuration = BondingDuration;
Gavin Wood's avatar
Gavin Wood committed
353
	type SlashDeferDuration = SlashDeferDuration;
Gavin Wood's avatar
Gavin Wood committed
354
355
	// A majority of the council or root can cancel the slash.
	type SlashCancelOrigin = SlashCancelOrigin;
356
	type SessionInterface = Self;
thiolliere's avatar
thiolliere committed
357
	type RewardCurve = RewardCurve;
Gavin Wood's avatar
Gavin Wood committed
358
	type MaxNominatorRewardedPerValidator = MaxNominatorRewardedPerValidator;
359
360
361
	type NextNewSession = Session;
	type ElectionLookahead = ElectionLookahead;
	type Call = Call;
362
	type UnsignedPriority = StakingUnsignedPriority;
363
	type MaxIterations = MaxIterations;
364
	type MinSolutionScoreBump = MinSolutionScoreBump;
365
	type WeightInfo = weights::pallet_staking::WeightInfo<Runtime>;
366
367
}

368
parameter_types! {
369
370
	pub const LaunchPeriod: BlockNumber = 7 * DAYS;
	pub const VotingPeriod: BlockNumber = 7 * DAYS;
371
	pub const FastTrackVotingPeriod: BlockNumber = 3 * HOURS;
Gavin Wood's avatar
Gavin Wood committed
372
	pub const MinimumDeposit: Balance = 1 * DOLLARS;
373
374
	pub const EnactmentPeriod: BlockNumber = 8 * DAYS;
	pub const CooloffPeriod: BlockNumber = 7 * DAYS;
Gavin Wood's avatar
Gavin Wood committed
375
	// One cent: $10,000 / MB
Gavin Wood's avatar
Gavin Wood committed
376
	pub const PreimageByteDeposit: Balance = 10 * MILLICENTS;
377
	pub const InstantAllowed: bool = true;
378
	pub const MaxVotes: u32 = 100;
379
	pub const MaxProposals: u32 = 100;
380
381
}

382
impl pallet_democracy::Trait for Runtime {
383
384
	type Proposal = Call;
	type Event = Event;
385
	type Currency = Balances;
386
387
388
389
	type EnactmentPeriod = EnactmentPeriod;
	type LaunchPeriod = LaunchPeriod;
	type VotingPeriod = VotingPeriod;
	type MinimumDeposit = MinimumDeposit;
390
	/// A straight majority of the council can decide what their next motion is.
391
	type ExternalOrigin = pallet_collective::EnsureProportionAtLeast<_1, _2, AccountId, CouncilCollective>;
392
	/// A majority can have the next scheduled referendum be a straight majority-carries vote.
393
	type ExternalMajorityOrigin = pallet_collective::EnsureProportionAtLeast<_1, _2, AccountId, CouncilCollective>;
394
395
	/// A unanimous council can have the next scheduled referendum be a straight default-carries
	/// (NTB) vote.
396
	type ExternalDefaultOrigin = pallet_collective::EnsureProportionAtLeast<_1, _1, AccountId, CouncilCollective>;
397
398
	/// Two thirds of the technical committee can have an ExternalMajority/ExternalDefault vote
	/// be tabled immediately and with a shorter voting/enactment period.
399
400
	type FastTrackOrigin = pallet_collective::EnsureProportionAtLeast<_2, _3, AccountId, TechnicalCollective>;
	type InstantOrigin = pallet_collective::EnsureProportionAtLeast<_1, _1, AccountId, TechnicalCollective>;
401
402
	type InstantAllowed = InstantAllowed;
	type FastTrackVotingPeriod = FastTrackVotingPeriod;
403
	// To cancel a proposal which has been passed, 2/3 of the council must agree to it.
404
405
406
407
408
409
410
411
412
413
414
415
416
	type CancellationOrigin = EnsureOneOf<
		AccountId,
		EnsureRoot<AccountId>,
		pallet_collective::EnsureProportionAtLeast<_2, _3, AccountId, CouncilCollective>,
	>;
	// To cancel a proposal before it has been passed, the technical committee must be unanimous or
	// Root must agree.
	type CancelProposalOrigin = EnsureOneOf<
		AccountId,
		EnsureRoot<AccountId>,
		pallet_collective::EnsureProportionAtLeast<_1, _1, AccountId, TechnicalCollective>,
	>;
	type BlacklistOrigin = EnsureRoot<AccountId>;
417
418
	// Any single technical committee member may veto a coming council proposal, however they can
	// only do it once and it lasts only for the cooloff period.
419
	type VetoOrigin = pallet_collective::EnsureMember<AccountId, TechnicalCollective>;
420
	type CooloffPeriod = CooloffPeriod;
Gavin Wood's avatar
Gavin Wood committed
421
422
	type PreimageByteDeposit = PreimageByteDeposit;
	type Slash = Treasury;
Gavin Wood's avatar
Gavin Wood committed
423
	type Scheduler = Scheduler;
424
	type PalletsOrigin = OriginCaller;
425
	type MaxVotes = MaxVotes;
426
	type OperationalPreimageOrigin = pallet_collective::EnsureMember<AccountId, CouncilCollective>;
427
428
	type WeightInfo = weights::pallet_democracy::WeightInfo<Runtime>;
	type MaxProposals = MaxProposals;
429
}
430

431
432
parameter_types! {
	pub const CouncilMotionDuration: BlockNumber = 3 * DAYS;
433
	pub const CouncilMaxProposals: u32 = 100;
434
	pub const CouncilMaxMembers: u32 = 100;
435
436
}

437
438
type CouncilCollective = pallet_collective::Instance1;
impl pallet_collective::Trait<CouncilCollective> for Runtime {
439
440
441
	type Origin = Origin;
	type Proposal = Call;
	type Event = Event;
442
	type MotionDuration = CouncilMotionDuration;
443
	type MaxProposals = CouncilMaxProposals;
444
	type MaxMembers = CouncilMaxMembers;
Wei Tang's avatar
Wei Tang committed
445
	type DefaultVote = pallet_collective::PrimeDefaultVote;
446
	type WeightInfo = weights::pallet_collective::WeightInfo<Runtime>;
447
448
}

Gavin Wood's avatar
Gavin Wood committed
449
parameter_types! {
Gavin Wood's avatar
Gavin Wood committed
450
451
	pub const CandidacyBond: Balance = 1 * DOLLARS;
	pub const VotingBond: Balance = 5 * CENTS;
Gavin Wood's avatar
Gavin Wood committed
452
453
	/// Daily council elections.
	pub const TermDuration: BlockNumber = 24 * HOURS;
454
455
	pub const DesiredMembers: u32 = 19;
	pub const DesiredRunnersUp: u32 = 19;
456
	pub const ElectionsPhragmenModuleId: LockIdentifier = *b"phrelect";
457
}
458
459
// Make sure that there are no more than MaxMembers members elected via phragmen.
const_assert!(DesiredMembers::get() <= CouncilMaxMembers::get());
460

461
impl pallet_elections_phragmen::Trait for Runtime {
462
	type Event = Event;
463
464
	type Currency = Balances;
	type ChangeMembers = Council;
465
	type InitializeMembers = Council;
466
	type CurrencyToVote = CurrencyToVoteHandler<Self>;
Gavin Wood's avatar
Gavin Wood committed
467
468
	type CandidacyBond = CandidacyBond;
	type VotingBond = VotingBond;
469
470
471
	type LoserCandidate = Treasury;
	type BadReport = Treasury;
	type KickedMember = Treasury;
Gavin Wood's avatar
Gavin Wood committed
472
473
474
	type DesiredMembers = DesiredMembers;
	type DesiredRunnersUp = DesiredRunnersUp;
	type TermDuration = TermDuration;
475
	type ModuleId = ElectionsPhragmenModuleId;
476
	type WeightInfo = weights::pallet_elections_phragmen::WeightInfo<Runtime>;
477
478
}

479
480
parameter_types! {
	pub const TechnicalMotionDuration: BlockNumber = 3 * DAYS;
481
	pub const TechnicalMaxProposals: u32 = 100;
482
	pub const TechnicalMaxMembers: u32 = 100;
483
484
}

485
486
type TechnicalCollective = pallet_collective::Instance2;
impl pallet_collective::Trait<TechnicalCollective> for Runtime {
487
488
489
	type Origin = Origin;
	type Proposal = Call;
	type Event = Event;
490
	type MotionDuration = TechnicalMotionDuration;
491
	type MaxProposals = TechnicalMaxProposals;
492
	type MaxMembers = TechnicalMaxMembers;
Wei Tang's avatar
Wei Tang committed
493
	type DefaultVote = pallet_collective::PrimeDefaultVote;
494
	type WeightInfo = weights::pallet_collective::WeightInfo<Runtime>;
495
496
}

497
impl pallet_membership::Trait<pallet_membership::Instance1> for Runtime {
498
	type Event = Event;
Gavin Wood's avatar
Gavin Wood committed
499
500
501
502
503
	type AddOrigin = MoreThanHalfCouncil;
	type RemoveOrigin = MoreThanHalfCouncil;
	type SwapOrigin = MoreThanHalfCouncil;
	type ResetOrigin = MoreThanHalfCouncil;
	type PrimeOrigin = MoreThanHalfCouncil;
504
505
506
507
	type MembershipInitialized = TechnicalCommittee;
	type MembershipChanged = TechnicalCommittee;
}

Gavin Wood's avatar
Gavin Wood committed
508
509
parameter_types! {
	pub const ProposalBond: Permill = Permill::from_percent(5);
Gavin Wood's avatar
Gavin Wood committed
510
	pub const ProposalBondMinimum: Balance = 20 * DOLLARS;
511
	pub const SpendPeriod: BlockNumber = 6 * DAYS;
512
	pub const Burn: Permill = Permill::from_perthousand(2);
513
	pub const TreasuryModuleId: ModuleId = ModuleId(*b"py/trsry");
Gavin Wood's avatar
Gavin Wood committed
514
515
516
517

	pub const TipCountdown: BlockNumber = 1 * DAYS;
	pub const TipFindersFee: Percent = Percent::from_percent(20);
	pub const TipReportDepositBase: Balance = 1 * DOLLARS;
518
519
520
521
522
523
524
	pub const DataDepositPerByte: Balance = 1 * CENTS;
	pub const BountyDepositBase: Balance = 1 * DOLLARS;
	pub const BountyDepositPayoutDelay: BlockNumber = 4 * DAYS;
	pub const BountyUpdatePeriod: BlockNumber = 90 * DAYS;
	pub const MaximumReasonLength: u32 = 16384;
	pub const BountyCuratorDeposit: Permill = Permill::from_percent(50);
	pub const BountyValueMinimum: Balance = 2 * DOLLARS;
Gavin Wood's avatar
Gavin Wood committed
525
526
}

Gavin Wood's avatar
Gavin Wood committed
527
528
529
type ApproveOrigin = EnsureOneOf<
	AccountId,
	EnsureRoot<AccountId>,
530
	pallet_collective::EnsureProportionAtLeast<_3, _5, AccountId, CouncilCollective>
Gavin Wood's avatar
Gavin Wood committed
531
532
>;

533
impl pallet_treasury::Trait for Runtime {
534
	type ModuleId = TreasuryModuleId;
Gavin Wood's avatar
Gavin Wood committed
535
	type Currency = Balances;
Gavin Wood's avatar
Gavin Wood committed
536
537
	type ApproveOrigin = ApproveOrigin;
	type RejectOrigin = MoreThanHalfCouncil;
Gavin Wood's avatar
Gavin Wood committed
538
539
540
541
	type Tippers = ElectionsPhragmen;
	type TipCountdown = TipCountdown;
	type TipFindersFee = TipFindersFee;
	type TipReportDepositBase = TipReportDepositBase;
542
	type DataDepositPerByte = DataDepositPerByte;
543
	type Event = Event;
544
	type OnSlash = Treasury;
Gavin Wood's avatar
Gavin Wood committed
545
546
547
548
	type ProposalBond = ProposalBond;
	type ProposalBondMinimum = ProposalBondMinimum;
	type SpendPeriod = SpendPeriod;
	type Burn = Burn;
549
550
551
552
553
554
	type BountyDepositBase = BountyDepositBase;
	type BountyDepositPayoutDelay = BountyDepositPayoutDelay;
	type BountyUpdatePeriod = BountyUpdatePeriod;
	type MaximumReasonLength = MaximumReasonLength;
	type BountyCuratorDeposit = BountyCuratorDeposit;
	type BountyValueMinimum = BountyValueMinimum;
555
	type BurnDestination = Society;
556
	type WeightInfo = weights::pallet_treasury::WeightInfo<Runtime>;
557
}
558

559
parameter_types! {
560
	pub OffencesWeightSoftLimit: Weight = Perbill::from_percent(60) * MaximumBlockWeight::get();
561
562
}

563
impl pallet_offences::Trait for Runtime {
564
	type Event = Event;
565
	type IdentificationTuple = pallet_session::historical::IdentificationTuple<Self>;
566
	type OnOffenceHandler = Staking;
567
	type WeightSoftLimit = OffencesWeightSoftLimit;
568
569
}

570
impl pallet_authority_discovery::Trait for Runtime {}
Gavin Wood's avatar
Gavin Wood committed
571

572
573
574
575
parameter_types! {
	pub const SessionDuration: BlockNumber = EPOCH_DURATION_IN_BLOCKS as _;
}

576
577
578
579
580
parameter_types! {
	pub const StakingUnsignedPriority: TransactionPriority = TransactionPriority::max_value() / 2;
	pub const ImOnlineUnsignedPriority: TransactionPriority = TransactionPriority::max_value();
}

581
impl pallet_im_online::Trait for Runtime {
thiolliere's avatar
thiolliere committed
582
	type AuthorityId = ImOnlineId;
583
	type Event = Event;
584
	type ReportUnresponsiveness = Offences;
585
	type SessionDuration = SessionDuration;
586
	type UnsignedPriority = ImOnlineUnsignedPriority;
587
	type WeightInfo = weights::pallet_im_online::WeightInfo<Runtime>;
588
589
}

590
impl pallet_grandpa::Trait for Runtime {
591
	type Event = Event;
592
593
594
595
596
597
598
599
600
601
602
603
	type Call = Call;

	type KeyOwnerProofSystem = Historical;

	type KeyOwnerProof =
		<Self::KeyOwnerProofSystem as KeyOwnerProofSystem<(KeyTypeId, GrandpaId)>>::Proof;

	type KeyOwnerIdentification = <Self::KeyOwnerProofSystem as KeyOwnerProofSystem<(
		KeyTypeId,
		GrandpaId,
	)>>::IdentificationTuple;

604
	type HandleEquivocation = pallet_grandpa::EquivocationHandler<Self::KeyOwnerIdentification, Offences>;
605
606

	type WeightInfo = ();
607
608
}

Gavin Wood's avatar
Gavin Wood committed
609
parameter_types! {
610
611
	pub WindowSize: BlockNumber = pallet_finality_tracker::DEFAULT_WINDOW_SIZE.into();
	pub ReportLatency: BlockNumber = pallet_finality_tracker::DEFAULT_REPORT_LATENCY.into();
Gavin Wood's avatar
Gavin Wood committed
612
613
}

614
impl pallet_finality_tracker::Trait for Runtime {
615
	type OnFinalizationStalled = ();
Gavin Wood's avatar
Gavin Wood committed
616
617
618
619
	type WindowSize = WindowSize;
	type ReportLatency = ReportLatency;
}

620
621
/// Submits transaction with the node's public and signature type. Adheres to the signed extension
/// format of the chain.
622
impl<LocalCall> frame_system::offchain::CreateSignedTransaction<LocalCall> for Runtime where
623
624
	Call: From<LocalCall>,
{
625
	fn create_transaction<C: frame_system::offchain::AppCrypto<Self::Public, Self::Signature>>(
626
627
628
		call: Call,
		public: <Signature as Verify>::Signer,
		account: AccountId,
629
		nonce: <Runtime as frame_system::Trait>::Index,
630
	) -> Option<(Call, <UncheckedExtrinsic as ExtrinsicT>::SignaturePayload)> {
631
		// take the biggest period possible.
632
633
634
635
636
637
638
		let period = BlockHashCount::get()
			.checked_next_power_of_two()
			.map(|c| c / 2)
			.unwrap_or(2) as u64;

		let current_block = System::block_number()
			.saturated_into::<u64>()
639
640
			// The `System::block_number` is initialized with `n+1`,
			// so the actual block number is `n`.
641
642
643
			.saturating_sub(1);
		let tip = 0;
		let extra: SignedExtra = (
644
645
646
647
648
649
650
			frame_system::CheckSpecVersion::<Runtime>::new(),
			frame_system::CheckTxVersion::<Runtime>::new(),
			frame_system::CheckGenesis::<Runtime>::new(),
			frame_system::CheckMortality::<Runtime>::from(generic::Era::mortal(period, current_block)),
			frame_system::CheckNonce::<Runtime>::from(nonce),
			frame_system::CheckWeight::<Runtime>::new(),
			pallet_transaction_payment::ChargeTransactionPayment::<Runtime>::from(tip),
651
652
		);
		let raw_payload = SignedPayload::new(call, extra).map_err(|e| {
653
			debug::warn!("Unable to create signed payload: {:?}", e);
654
		}).ok()?;
655
656
657
		let signature = raw_payload.using_encoded(|payload| {
			C::sign(payload, public)
		})?;
658
659
660
		let (call, extra, _) = raw_payload.deconstruct();
		Some((call, (account, signature, extra)))
	}
661
662
}

663
impl frame_system::offchain::SigningTypes for Runtime {
664
665
666
667
	type Public = <Signature as Verify>::Signer;
	type Signature = Signature;
}

668
impl<C> frame_system::offchain::SendTransactionTypes<C> for Runtime where
669
670
671
672
673
674
	Call: From<C>,
{
	type OverarchingCall = Call;
	type Extrinsic = UncheckedExtrinsic;
}

Gavin Wood's avatar
Gavin Wood committed
675
parameter_types! {
676
	pub Prefix: &'static [u8] = b"Pay KSMs to the Kusama account:";
677
678
679
680
}

impl claims::Trait for Runtime {
	type Event = Event;
Gavin Wood's avatar
Gavin Wood committed
681
	type VestingSchedule = Vesting;
682
	type Prefix = Prefix;
683
	type MoveClaimOrigin = pallet_collective::EnsureProportionMoreThan<_1, _2, AccountId, CouncilCollective>;
684
685
}

686
parameter_types! {
687
	// Minimum 100 bytes/KSM deposited (1 CENT/byte)
Gavin Wood's avatar
Gavin Wood committed
688
689
690
	pub const BasicDeposit: Balance = 10 * DOLLARS;       // 258 bytes on-chain
	pub const FieldDeposit: Balance = 250 * CENTS;        // 66 bytes on-chain
	pub const SubAccountDeposit: Balance = 2 * DOLLARS;   // 53 bytes on-chain
Gavin Wood's avatar
Gavin Wood committed
691
692
	pub const MaxSubAccounts: u32 = 100;
	pub const MaxAdditionalFields: u32 = 100;
693
	pub const MaxRegistrars: u32 = 20;
694
695
}

696
impl pallet_identity::Trait for Runtime {
697
698
699
700
701
702
	type Event = Event;
	type Currency = Balances;
	type Slashed = Treasury;
	type BasicDeposit = BasicDeposit;
	type FieldDeposit = FieldDeposit;
	type SubAccountDeposit = SubAccountDeposit;
Gavin Wood's avatar
Gavin Wood committed
703
704
	type MaxSubAccounts = MaxSubAccounts;
	type MaxAdditionalFields = MaxAdditionalFields;
705
	type MaxRegistrars = MaxRegistrars;
Gavin Wood's avatar
Gavin Wood committed
706
707
	type RegistrarOrigin = MoreThanHalfCouncil;
	type ForceOrigin = MoreThanHalfCouncil;
708
	type WeightInfo = weights::pallet_identity::WeightInfo<Runtime>;
709
710
}

711
impl pallet_utility::Trait for Runtime {
712
713
	type Event = Event;
	type Call = Call;
714
	type WeightInfo = weights::pallet_utility::WeightInfo<Runtime>;
715
716
}

Gavin Wood's avatar
Gavin Wood committed
717
parameter_types! {
718
719
	// One storage item; key size is 32; value is size 4+4+16+32 bytes = 56 bytes.
	pub const DepositBase: Balance = deposit(1, 88);
Gavin Wood's avatar
Gavin Wood committed
720
	// Additional storage item size of 32 bytes.
721
	pub const DepositFactor: Balance = deposit(0, 32);
Gavin Wood's avatar
Gavin Wood committed
722
723
724
	pub const MaxSignatories: u16 = 100;
}

725
impl pallet_multisig::Trait for Runtime {
Gavin Wood's avatar
Gavin Wood committed
726
727
728
	type Event = Event;
	type Call = Call;
	type Currency = Balances;
729
730
	type DepositBase = DepositBase;
	type DepositFactor = DepositFactor;
Gavin Wood's avatar
Gavin Wood committed
731
	type MaxSignatories = MaxSignatories;
732
	type WeightInfo = weights::pallet_multisig::WeightInfo<Runtime>;
Gavin Wood's avatar
Gavin Wood committed
733
734
}

735
736
737
738
739
740
741
parameter_types! {
	pub const ConfigDepositBase: Balance = 5 * DOLLARS;
	pub const FriendDepositFactor: Balance = 50 * CENTS;
	pub const MaxFriends: u16 = 9;
	pub const RecoveryDeposit: Balance = 5 * DOLLARS;
}

742
impl pallet_recovery::Trait for Runtime {
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
	type Event = Event;
	type Call = Call;
	type Currency = Balances;
	type ConfigDepositBase = ConfigDepositBase;
	type FriendDepositFactor = FriendDepositFactor;
	type MaxFriends = MaxFriends;
	type RecoveryDeposit = RecoveryDeposit;
}

parameter_types! {
	pub const CandidateDeposit: Balance = 10 * DOLLARS;
	pub const WrongSideDeduction: Balance = 2 * DOLLARS;
	pub const MaxStrikes: u32 = 10;
	pub const RotationPeriod: BlockNumber = 80 * HOURS;
	pub const PeriodSpend: Balance = 500 * DOLLARS;
	pub const MaxLockDuration: BlockNumber = 36 * 30 * DAYS;
	pub const ChallengePeriod: BlockNumber = 7 * DAYS;
760
	pub const SocietyModuleId: ModuleId = ModuleId(*b"py/socie");
761
762
}

763
impl pallet_society::Trait for Runtime {
764
765
766
767
768
769
770
771
772
773
	type Event = Event;
	type Currency = Balances;
	type Randomness = RandomnessCollectiveFlip;
	type CandidateDeposit = CandidateDeposit;
	type WrongSideDeduction = WrongSideDeduction;
	type MaxStrikes = MaxStrikes;
	type PeriodSpend = PeriodSpend;
	type MembershipChanged = ();
	type RotationPeriod = RotationPeriod;
	type MaxLockDuration = MaxLockDuration;
774
775
	type FounderSetOrigin = pallet_collective::EnsureProportionMoreThan<_1, _2, AccountId, CouncilCollective>;
	type SuspensionJudgementOrigin = pallet_society::EnsureFounder<Runtime>;
776
	type ChallengePeriod = ChallengePeriod;
777
	type ModuleId = SocietyModuleId;
778
779
}

780
781
782
783
parameter_types! {
	pub const MinVestedTransfer: Balance = 100 * DOLLARS;
}

784
impl pallet_vesting::Trait for Runtime {
Gavin Wood's avatar
Gavin Wood committed
785
786
787
	type Event = Event;
	type Currency = Balances;
	type BlockNumberToBalance = ConvertInto;
788
	type MinVestedTransfer = MinVestedTransfer;
789
	type WeightInfo = weights::pallet_vesting::WeightInfo<Runtime>;
Gavin Wood's avatar
Gavin Wood committed
790
791
}

792
793
794
795
796
797
parameter_types! {
	// One storage item; key size 32, value size 8; .
	pub const ProxyDepositBase: Balance = deposit(1, 8);
	// Additional storage item size of 33 bytes.
	pub const ProxyDepositFactor: Balance = deposit(0, 33);
	pub const MaxProxies: u16 = 32;
798
799
800
	pub const AnnouncementDepositBase: Balance = deposit(1, 8);
	pub const AnnouncementDepositFactor: Balance = deposit(0, 66);
	pub const MaxPending: u16 = 32;
801
802
803
804
805
806
807
808
809
}

/// The type used to represent the kinds of proxying allowed.
#[derive(Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Encode, Decode, RuntimeDebug)]
pub enum ProxyType {
	Any,
	NonTransfer,
	Governance,
	Staking,
Chevdor's avatar
Chevdor committed
810
	IdentityJudgement,
811
812
813
814
815
816
}
impl Default for ProxyType { fn default() -> Self { Self::Any } }
impl InstanceFilter<Call> for ProxyType {
	fn filter(&self, c: &Call) -> bool {
		match self {
			ProxyType::Any => true,
817
818
819
820
			ProxyType::NonTransfer => matches!(c,
				Call::System(..) |
				Call::Babe(..) |
				Call::Timestamp(..) |
821
822
823
				Call::Indices(pallet_indices::Call::claim(..)) |
				Call::Indices(pallet_indices::Call::free(..)) |
				Call::Indices(pallet_indices::Call::freeze(..)) |
824
825
826
827
828