lib.rs 49.3 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
// `construct_runtime!` does a lot of recursion and requires us to increase the limit to 256.
21
#![recursion_limit = "256"]
Gav Wood's avatar
Gav Wood committed
22

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

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

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

81
82
83
// Weights used in the runtime.
mod weights;

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

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

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

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

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

125
parameter_types! {
126
	pub const Version: RuntimeVersion = VERSION;
127
	pub const SS58Prefix: u8 = 2;
128
129
}

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

155
parameter_types! {
156
157
	pub MaximumSchedulerWeight: Weight = Perbill::from_percent(80) *
		BlockWeights::get().max_block;
158
159
160
	pub const MaxScheduledPerBlock: u32 = 50;
}

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

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

177
impl pallet_babe::Config for Runtime {
178
179
	type EpochDuration = EpochDuration;
	type ExpectedBlockTime = ExpectedBlockTime;
180
181

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

	type KeyOwnerProofSystem = Historical;

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

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

	type HandleEquivocation =
197
		pallet_babe::EquivocationHandler<Self::KeyOwnerIdentification, Offences>;
198
199

	type WeightInfo = ();
200
201
}

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

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

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

219
impl pallet_balances::Config for Runtime {
Gav's avatar
Gav committed
220
	type Balance = Balance;
221
	type DustRemoval = ();
Gavin Wood's avatar
Gavin Wood committed
222
	type Event = Event;
Gavin Wood's avatar
Gavin Wood committed
223
	type ExistentialDeposit = ExistentialDeposit;
224
	type AccountStore = System;
225
	type MaxLocks = MaxLocks;
226
	type WeightInfo = weights::pallet_balances::WeightInfo<Runtime>;
227
228
229
230
231
232
}

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

233
impl pallet_transaction_payment::Config for Runtime {
Albrecht's avatar
Albrecht committed
234
	type OnChargeTransaction = CurrencyAdapter<Balances, DealWithFees<Self>>;
Gavin Wood's avatar
Gavin Wood committed
235
	type TransactionByteFee = TransactionByteFee;
236
	type WeightToFee = WeightToFee;
237
	type FeeMultiplierUpdate = SlowAdjustingFeeUpdate<Self>;
Gav's avatar
Gav committed
238
239
}

240
parameter_types! {
241
	pub const MinimumPeriod: u64 = SLOT_DURATION / 2;
242
}
243
impl pallet_timestamp::Config for Runtime {
244
	type Moment = u64;
245
	type OnTimestampSet = Babe;
246
	type MinimumPeriod = MinimumPeriod;
247
	type WeightInfo = weights::pallet_timestamp::WeightInfo<Runtime>;
248
249
}

Gavin Wood's avatar
Gavin Wood committed
250
parameter_types! {
251
	pub const UncleGenerations: u32 = 0;
Gavin Wood's avatar
Gavin Wood committed
252
253
254
}

// TODO: substrate#2986 implement this properly
255
impl pallet_authorship::Config for Runtime {
256
	type FindAuthor = pallet_session::FindAccountFromAuthorIndex<Self, Babe>;
Gavin Wood's avatar
Gavin Wood committed
257
258
	type UncleGenerations = UncleGenerations;
	type FilterUncle = ();
Gavin Wood's avatar
Gavin Wood committed
259
	type EventHandler = (Staking, ImOnline);
Gavin Wood's avatar
Gavin Wood committed
260
261
}

262
263
264
265
266
parameter_types! {
	pub const Period: BlockNumber = 10 * MINUTES;
	pub const Offset: BlockNumber = 0;
}

267
268
269
270
271
272
273
274
275
276
impl_opaque_keys! {
	pub struct OldSessionKeys {
		pub grandpa: Grandpa,
		pub babe: Babe,
		pub im_online: ImOnline,
		pub para_validator: ParachainSessionKeyPlaceholder<Runtime>,
		pub authority_discovery: AuthorityDiscovery,
	}
}

277
impl_opaque_keys! {
278
	pub struct SessionKeys {
Gavin Wood's avatar
Gavin Wood committed
279
280
281
		pub grandpa: Grandpa,
		pub babe: Babe,
		pub im_online: ImOnline,
282
283
		pub para_validator: ParachainSessionKeyPlaceholder<Runtime>,
		pub para_assignment: AssignmentSessionKeyPlaceholder<Runtime>,
Gavin Wood's avatar
Gavin Wood committed
284
		pub authority_discovery: AuthorityDiscovery,
285
	}
286
287
}

288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
fn transform_session_keys(v: AccountId, old: OldSessionKeys) -> SessionKeys {
	SessionKeys {
		grandpa: old.grandpa,
		babe: old.babe,
		im_online: old.im_online,
		para_validator: old.para_validator,
		para_assignment: {
			// We need to produce a dummy value that's unique for the validator.
			let mut id = AssignmentId::default();
			let id_raw: &mut [u8] = id.as_mut();
			id_raw.copy_from_slice(v.as_ref());
			id_raw[0..4].copy_from_slice(b"asgn");

			id
		},
		authority_discovery: old.authority_discovery,
	}
}

thiolliere's avatar
thiolliere committed
307
308
309
310
parameter_types! {
	pub const DisabledValidatorsThreshold: Perbill = Perbill::from_percent(17);
}

311
impl pallet_session::Config for Runtime {
Gav's avatar
Gav committed
312
	type Event = Event;
313
	type ValidatorId = AccountId;
314
	type ValidatorIdOf = pallet_staking::StashOf<Self>;
Gavin Wood's avatar
Gavin Wood committed
315
	type ShouldEndSession = Babe;
316
	type NextSessionRotation = Babe;
317
	type SessionManager = pallet_session::historical::NoteHistoricalRoot<Self, Staking>;
Gavin Wood's avatar
Gavin Wood committed
318
319
	type SessionHandler = <SessionKeys as OpaqueKeys>::KeyTypeIdProviders;
	type Keys = SessionKeys;
thiolliere's avatar
thiolliere committed
320
	type DisabledValidatorsThreshold = DisabledValidatorsThreshold;
321
	type WeightInfo = weights::pallet_session::WeightInfo<Runtime>;
322
323
}

324
impl pallet_session::historical::Config for Runtime {
325
326
	type FullIdentification = pallet_staking::Exposure<AccountId, Balance>;
	type FullIdentificationOf = pallet_staking::ExposureOf<Runtime>;
327
328
}

329
330
331
// 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))%`.
332
pallet_staking_reward_curve::build! {
thiolliere's avatar
thiolliere committed
333
334
335
	const REWARD_CURVE: PiecewiseLinear<'static> = curve!(
		min_inflation: 0_025_000,
		max_inflation: 0_100_000,
336
337
338
		// 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
339
340
341
342
343
344
		falloff: 0_050_000,
		max_piece_count: 40,
		test_precision: 0_005_000,
	);
}

345
parameter_types! {
Gavin Wood's avatar
Gavin Wood committed
346
	// Six sessions in an era (6 hours).
347
	pub const SessionsPerEra: SessionIndex = 6;
Gavin Wood's avatar
Gavin Wood committed
348
	// 28 eras for unbonding (7 days).
349
	pub const BondingDuration: pallet_staking::EraIndex = 28;
350
	// 27 eras in which slashes can be cancelled (slightly less than 7 days).
351
	pub const SlashDeferDuration: pallet_staking::EraIndex = 27;
thiolliere's avatar
thiolliere committed
352
	pub const RewardCurve: &'static PiecewiseLinear<'static> = &REWARD_CURVE;
353
	pub const MaxNominatorRewardedPerValidator: u32 = 128;
354
355
	// quarter of the last session will be for election.
	pub const ElectionLookahead: BlockNumber = EPOCH_DURATION_IN_BLOCKS / 4;
356
357
	pub const MaxIterations: u32 = 10;
	pub MinSolutionScoreBump: Perbill = Perbill::from_rational_approximation(5u32, 10_000);
358
}
359

Gavin Wood's avatar
Gavin Wood committed
360
361
362
type SlashCancelOrigin = EnsureOneOf<
	AccountId,
	EnsureRoot<AccountId>,
363
	pallet_collective::EnsureProportionAtLeast<_1, _2, AccountId, CouncilCollective>
Gavin Wood's avatar
Gavin Wood committed
364
365
>;

366
impl pallet_staking::Config for Runtime {
Gavin Wood's avatar
Gavin Wood committed
367
	type Currency = Balances;
368
	type UnixTime = Timestamp;
369
	type CurrencyToVote = CurrencyToVote;
Gavin Wood's avatar
Gavin Wood committed
370
	type RewardRemainder = Treasury;
Gav's avatar
Gav committed
371
	type Event = Event;
372
	type Slash = Treasury;
373
	type Reward = ();
374
375
	type SessionsPerEra = SessionsPerEra;
	type BondingDuration = BondingDuration;
Gavin Wood's avatar
Gavin Wood committed
376
	type SlashDeferDuration = SlashDeferDuration;
Gavin Wood's avatar
Gavin Wood committed
377
378
	// A majority of the council or root can cancel the slash.
	type SlashCancelOrigin = SlashCancelOrigin;
379
	type SessionInterface = Self;
thiolliere's avatar
thiolliere committed
380
	type RewardCurve = RewardCurve;
Gavin Wood's avatar
Gavin Wood committed
381
	type MaxNominatorRewardedPerValidator = MaxNominatorRewardedPerValidator;
382
383
384
	type NextNewSession = Session;
	type ElectionLookahead = ElectionLookahead;
	type Call = Call;
385
	type UnsignedPriority = StakingUnsignedPriority;
386
	type MaxIterations = MaxIterations;
387
	type MinSolutionScoreBump = MinSolutionScoreBump;
388
389
390
	// The unsigned solution weight targeted by the OCW. We set it to the maximum possible value of
	// a single extrinsic.
	type OffchainSolutionWeightLimit = OffchainSolutionWeightLimit;
391
	type WeightInfo = weights::pallet_staking::WeightInfo<Runtime>;
392
393
}

394
parameter_types! {
395
396
	pub const LaunchPeriod: BlockNumber = 7 * DAYS;
	pub const VotingPeriod: BlockNumber = 7 * DAYS;
397
	pub const FastTrackVotingPeriod: BlockNumber = 3 * HOURS;
Gavin Wood's avatar
Gavin Wood committed
398
	pub const MinimumDeposit: Balance = 1 * DOLLARS;
399
400
	pub const EnactmentPeriod: BlockNumber = 8 * DAYS;
	pub const CooloffPeriod: BlockNumber = 7 * DAYS;
Gavin Wood's avatar
Gavin Wood committed
401
	// One cent: $10,000 / MB
Gavin Wood's avatar
Gavin Wood committed
402
	pub const PreimageByteDeposit: Balance = 10 * MILLICENTS;
403
	pub const InstantAllowed: bool = true;
404
	pub const MaxVotes: u32 = 100;
405
	pub const MaxProposals: u32 = 100;
406
407
}

408
impl pallet_democracy::Config for Runtime {
409
410
	type Proposal = Call;
	type Event = Event;
411
	type Currency = Balances;
412
413
414
415
	type EnactmentPeriod = EnactmentPeriod;
	type LaunchPeriod = LaunchPeriod;
	type VotingPeriod = VotingPeriod;
	type MinimumDeposit = MinimumDeposit;
416
	/// A straight majority of the council can decide what their next motion is.
417
	type ExternalOrigin = pallet_collective::EnsureProportionAtLeast<_1, _2, AccountId, CouncilCollective>;
418
	/// A majority can have the next scheduled referendum be a straight majority-carries vote.
419
	type ExternalMajorityOrigin = pallet_collective::EnsureProportionAtLeast<_1, _2, AccountId, CouncilCollective>;
420
421
	/// A unanimous council can have the next scheduled referendum be a straight default-carries
	/// (NTB) vote.
422
	type ExternalDefaultOrigin = pallet_collective::EnsureProportionAtLeast<_1, _1, AccountId, CouncilCollective>;
423
424
	/// Two thirds of the technical committee can have an ExternalMajority/ExternalDefault vote
	/// be tabled immediately and with a shorter voting/enactment period.
425
426
	type FastTrackOrigin = pallet_collective::EnsureProportionAtLeast<_2, _3, AccountId, TechnicalCollective>;
	type InstantOrigin = pallet_collective::EnsureProportionAtLeast<_1, _1, AccountId, TechnicalCollective>;
427
428
	type InstantAllowed = InstantAllowed;
	type FastTrackVotingPeriod = FastTrackVotingPeriod;
429
	// To cancel a proposal which has been passed, 2/3 of the council must agree to it.
430
431
432
433
434
435
436
437
438
439
440
441
442
	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>;
443
444
	// 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.
445
	type VetoOrigin = pallet_collective::EnsureMember<AccountId, TechnicalCollective>;
446
	type CooloffPeriod = CooloffPeriod;
Gavin Wood's avatar
Gavin Wood committed
447
448
	type PreimageByteDeposit = PreimageByteDeposit;
	type Slash = Treasury;
Gavin Wood's avatar
Gavin Wood committed
449
	type Scheduler = Scheduler;
450
	type PalletsOrigin = OriginCaller;
451
	type MaxVotes = MaxVotes;
452
	type OperationalPreimageOrigin = pallet_collective::EnsureMember<AccountId, CouncilCollective>;
453
454
	type WeightInfo = weights::pallet_democracy::WeightInfo<Runtime>;
	type MaxProposals = MaxProposals;
455
}
456

457
458
parameter_types! {
	pub const CouncilMotionDuration: BlockNumber = 3 * DAYS;
459
	pub const CouncilMaxProposals: u32 = 100;
460
	pub const CouncilMaxMembers: u32 = 100;
461
462
}

463
type CouncilCollective = pallet_collective::Instance1;
464
impl pallet_collective::Config<CouncilCollective> for Runtime {
465
466
467
	type Origin = Origin;
	type Proposal = Call;
	type Event = Event;
468
	type MotionDuration = CouncilMotionDuration;
469
	type MaxProposals = CouncilMaxProposals;
470
	type MaxMembers = CouncilMaxMembers;
Wei Tang's avatar
Wei Tang committed
471
	type DefaultVote = pallet_collective::PrimeDefaultVote;
472
	type WeightInfo = weights::pallet_collective::WeightInfo<Runtime>;
473
474
}

Gavin Wood's avatar
Gavin Wood committed
475
parameter_types! {
Gavin Wood's avatar
Gavin Wood committed
476
	pub const CandidacyBond: Balance = 1 * DOLLARS;
Kian Paimani's avatar
Kian Paimani committed
477
478
479
480
481
	// 1 storage item created, key size is 32 bytes, value size is 16+16.
	pub const VotingBondBase: Balance = deposit(1, 64);
	// additional data per vote is 32 bytes (account id).
	pub const VotingBondFactor: Balance = deposit(0, 32);
	/// Daily council elections
Gavin Wood's avatar
Gavin Wood committed
482
	pub const TermDuration: BlockNumber = 24 * HOURS;
483
484
	pub const DesiredMembers: u32 = 19;
	pub const DesiredRunnersUp: u32 = 19;
485
	pub const ElectionsPhragmenModuleId: LockIdentifier = *b"phrelect";
486
}
Kian Paimani's avatar
Kian Paimani committed
487

488
489
// Make sure that there are no more than MaxMembers members elected via phragmen.
const_assert!(DesiredMembers::get() <= CouncilMaxMembers::get());
490

491
impl pallet_elections_phragmen::Config for Runtime {
492
	type Event = Event;
493
494
	type Currency = Balances;
	type ChangeMembers = Council;
495
	type InitializeMembers = Council;
496
	type CurrencyToVote = frame_support::traits::U128CurrencyToVote;
Gavin Wood's avatar
Gavin Wood committed
497
	type CandidacyBond = CandidacyBond;
Kian Paimani's avatar
Kian Paimani committed
498
499
	type VotingBondBase = VotingBondBase;
	type VotingBondFactor = VotingBondFactor;
500
501
	type LoserCandidate = Treasury;
	type KickedMember = Treasury;
Gavin Wood's avatar
Gavin Wood committed
502
503
504
	type DesiredMembers = DesiredMembers;
	type DesiredRunnersUp = DesiredRunnersUp;
	type TermDuration = TermDuration;
505
	type ModuleId = ElectionsPhragmenModuleId;
506
	type WeightInfo = weights::pallet_elections_phragmen::WeightInfo<Runtime>;
507
508
}

509
510
parameter_types! {
	pub const TechnicalMotionDuration: BlockNumber = 3 * DAYS;
511
	pub const TechnicalMaxProposals: u32 = 100;
512
	pub const TechnicalMaxMembers: u32 = 100;
513
514
}

515
type TechnicalCollective = pallet_collective::Instance2;
516
impl pallet_collective::Config<TechnicalCollective> for Runtime {
517
518
519
	type Origin = Origin;
	type Proposal = Call;
	type Event = Event;
520
	type MotionDuration = TechnicalMotionDuration;
521
	type MaxProposals = TechnicalMaxProposals;
522
	type MaxMembers = TechnicalMaxMembers;
Wei Tang's avatar
Wei Tang committed
523
	type DefaultVote = pallet_collective::PrimeDefaultVote;
524
	type WeightInfo = weights::pallet_collective::WeightInfo<Runtime>;
525
526
}

527
impl pallet_membership::Config<pallet_membership::Instance1> for Runtime {
528
	type Event = Event;
Gavin Wood's avatar
Gavin Wood committed
529
530
531
532
533
	type AddOrigin = MoreThanHalfCouncil;
	type RemoveOrigin = MoreThanHalfCouncil;
	type SwapOrigin = MoreThanHalfCouncil;
	type ResetOrigin = MoreThanHalfCouncil;
	type PrimeOrigin = MoreThanHalfCouncil;
534
535
536
537
	type MembershipInitialized = TechnicalCommittee;
	type MembershipChanged = TechnicalCommittee;
}

Gavin Wood's avatar
Gavin Wood committed
538
539
parameter_types! {
	pub const ProposalBond: Permill = Permill::from_percent(5);
Gavin Wood's avatar
Gavin Wood committed
540
	pub const ProposalBondMinimum: Balance = 20 * DOLLARS;
541
	pub const SpendPeriod: BlockNumber = 6 * DAYS;
542
	pub const Burn: Permill = Permill::from_perthousand(2);
543
	pub const TreasuryModuleId: ModuleId = ModuleId(*b"py/trsry");
Gavin Wood's avatar
Gavin Wood committed
544
545
546
547

	pub const TipCountdown: BlockNumber = 1 * DAYS;
	pub const TipFindersFee: Percent = Percent::from_percent(20);
	pub const TipReportDepositBase: Balance = 1 * DOLLARS;
548
549
550
551
552
553
554
	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
555
556
}

Gavin Wood's avatar
Gavin Wood committed
557
558
559
type ApproveOrigin = EnsureOneOf<
	AccountId,
	EnsureRoot<AccountId>,
560
	pallet_collective::EnsureProportionAtLeast<_3, _5, AccountId, CouncilCollective>
Gavin Wood's avatar
Gavin Wood committed
561
562
>;

563
impl pallet_treasury::Config for Runtime {
564
	type ModuleId = TreasuryModuleId;
Gavin Wood's avatar
Gavin Wood committed
565
	type Currency = Balances;
Gavin Wood's avatar
Gavin Wood committed
566
567
	type ApproveOrigin = ApproveOrigin;
	type RejectOrigin = MoreThanHalfCouncil;
568
	type Event = Event;
569
	type OnSlash = Treasury;
Gavin Wood's avatar
Gavin Wood committed
570
571
572
573
	type ProposalBond = ProposalBond;
	type ProposalBondMinimum = ProposalBondMinimum;
	type SpendPeriod = SpendPeriod;
	type Burn = Burn;
574
575
576
577
578
579
580
	type BurnDestination = Society;
	type SpendFunds = Bounties;
	type WeightInfo = weights::pallet_treasury::WeightInfo<Runtime>;
}

impl pallet_bounties::Config for Runtime {
	type Event = Event;
581
582
583
584
585
	type BountyDepositBase = BountyDepositBase;
	type BountyDepositPayoutDelay = BountyDepositPayoutDelay;
	type BountyUpdatePeriod = BountyUpdatePeriod;
	type BountyCuratorDeposit = BountyCuratorDeposit;
	type BountyValueMinimum = BountyValueMinimum;
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
	type DataDepositPerByte = DataDepositPerByte;
	type MaximumReasonLength = MaximumReasonLength;
	type WeightInfo = weights::pallet_bounties::WeightInfo<Runtime>;

}

impl pallet_tips::Config for Runtime {
	type Event = Event;
	type DataDepositPerByte = DataDepositPerByte;
	type MaximumReasonLength = MaximumReasonLength;
	type Tippers = ElectionsPhragmen;
	type TipCountdown = TipCountdown;
	type TipFindersFee = TipFindersFee;
	type TipReportDepositBase = TipReportDepositBase;
	type WeightInfo = weights::pallet_tips::WeightInfo<Runtime>;
601
}
602

603
parameter_types! {
604
	pub OffencesWeightSoftLimit: Weight = Perbill::from_percent(60) * BlockWeights::get().max_block;
605
606
}

607
impl pallet_offences::Config for Runtime {
608
	type Event = Event;
609
	type IdentificationTuple = pallet_session::historical::IdentificationTuple<Self>;
610
	type OnOffenceHandler = Staking;
611
	type WeightSoftLimit = OffencesWeightSoftLimit;
612
613
}

614
impl pallet_authority_discovery::Config for Runtime {}
Gavin Wood's avatar
Gavin Wood committed
615

616
617
618
619
parameter_types! {
	pub const SessionDuration: BlockNumber = EPOCH_DURATION_IN_BLOCKS as _;
}

620
parameter_types! {
621
622
	pub StakingUnsignedPriority: TransactionPriority =
		Perbill::from_percent(90) * TransactionPriority::max_value();
623
624
625
	pub const ImOnlineUnsignedPriority: TransactionPriority = TransactionPriority::max_value();
}

626
impl pallet_im_online::Config for Runtime {
thiolliere's avatar
thiolliere committed
627
	type AuthorityId = ImOnlineId;
628
	type Event = Event;
629
	type ReportUnresponsiveness = Offences;
630
	type SessionDuration = SessionDuration;
631
	type UnsignedPriority = ImOnlineUnsignedPriority;
632
	type WeightInfo = weights::pallet_im_online::WeightInfo<Runtime>;
633
634
}

635
impl pallet_grandpa::Config for Runtime {
636
	type Event = Event;
637
638
639
640
641
642
643
644
645
646
647
648
	type Call = Call;

	type KeyOwnerProofSystem = Historical;

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

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

649
	type HandleEquivocation = pallet_grandpa::EquivocationHandler<Self::KeyOwnerIdentification, Offences>;
650
651

	type WeightInfo = ();
652
653
}

654
655
/// Submits transaction with the node's public and signature type. Adheres to the signed extension
/// format of the chain.
656
impl<LocalCall> frame_system::offchain::CreateSignedTransaction<LocalCall> for Runtime where
657
658
	Call: From<LocalCall>,
{
659
	fn create_transaction<C: frame_system::offchain::AppCrypto<Self::Public, Self::Signature>>(
660
661
662
		call: Call,
		public: <Signature as Verify>::Signer,
		account: AccountId,
663
		nonce: <Runtime as frame_system::Config>::Index,
664
	) -> Option<(Call, <UncheckedExtrinsic as ExtrinsicT>::SignaturePayload)> {
665
		// take the biggest period possible.
666
667
668
669
670
671
672
		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>()
673
674
			// The `System::block_number` is initialized with `n+1`,
			// so the actual block number is `n`.
675
676
677
			.saturating_sub(1);
		let tip = 0;
		let extra: SignedExtra = (
678
679
680
681
682
683
684
			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),
685
686
		);
		let raw_payload = SignedPayload::new(call, extra).map_err(|e| {
687
			debug::warn!("Unable to create signed payload: {:?}", e);
688
		}).ok()?;
689
690
691
		let signature = raw_payload.using_encoded(|payload| {
			C::sign(payload, public)
		})?;
692
693
694
		let (call, extra, _) = raw_payload.deconstruct();
		Some((call, (account, signature, extra)))
	}
695
696
}

697
impl frame_system::offchain::SigningTypes for Runtime {
698
699
700
701
	type Public = <Signature as Verify>::Signer;
	type Signature = Signature;
}

702
impl<C> frame_system::offchain::SendTransactionTypes<C> for Runtime where
703
704
705
706
707
708
	Call: From<C>,
{
	type OverarchingCall = Call;
	type Extrinsic = UncheckedExtrinsic;
}

Gavin Wood's avatar
Gavin Wood committed
709
parameter_types! {
710
	pub Prefix: &'static [u8] = b"Pay KSMs to the Kusama account:";
711
712
}

713
impl claims::Config for Runtime {
714
	type Event = Event;
Gavin Wood's avatar
Gavin Wood committed
715
	type VestingSchedule = Vesting;
716
	type Prefix = Prefix;
717
	type MoveClaimOrigin = pallet_collective::EnsureProportionMoreThan<_1, _2, AccountId, CouncilCollective>;
718
	type WeightInfo = weights::runtime_common_claims::WeightInfo<Runtime>;
719
720
}

721
parameter_types! {
722
	// Minimum 100 bytes/KSM deposited (1 CENT/byte)
Gavin Wood's avatar
Gavin Wood committed
723
724
725
	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
726
727
	pub const MaxSubAccounts: u32 = 100;
	pub const MaxAdditionalFields: u32 = 100;
728
	pub const MaxRegistrars: u32 = 20;
729
730
}

731
impl pallet_identity::Config for Runtime {
732
733
734
735
736
737
	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
738
739
	type MaxSubAccounts = MaxSubAccounts;
	type MaxAdditionalFields = MaxAdditionalFields;
740
	type MaxRegistrars = MaxRegistrars;
Gavin Wood's avatar
Gavin Wood committed
741
742
	type RegistrarOrigin = MoreThanHalfCouncil;
	type ForceOrigin = MoreThanHalfCouncil;
743
	type WeightInfo = weights::pallet_identity::WeightInfo<Runtime>;
744
745
}

746
impl pallet_utility::Config for Runtime {
747
748
	type Event = Event;
	type Call = Call;
749
	type WeightInfo = weights::pallet_utility::WeightInfo<Runtime>;
750
751
}

Gavin Wood's avatar
Gavin Wood committed
752
parameter_types! {
753
754
	// 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
755
	// Additional storage item size of 32 bytes.
756
	pub const DepositFactor: Balance = deposit(0, 32);
Gavin Wood's avatar
Gavin Wood committed
757
758
759
	pub const MaxSignatories: u16 = 100;
}

760
impl pallet_multisig::Config for Runtime {
Gavin Wood's avatar
Gavin Wood committed
761
762
763
	type Event = Event;
	type Call = Call;
	type Currency = Balances;
764
765
	type DepositBase = DepositBase;
	type DepositFactor = DepositFactor;
Gavin Wood's avatar
Gavin Wood committed
766
	type MaxSignatories = MaxSignatories;
767
	type WeightInfo = weights::pallet_multisig::WeightInfo<Runtime>;
Gavin Wood's avatar
Gavin Wood committed
768
769
}

770
771
772
773
774
775
776
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;
}

777
impl pallet_recovery::Config for Runtime {
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
	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;
795
	pub const SocietyModuleId: ModuleId = ModuleId(*b"py/socie");
796
797
}

798
impl pallet_society::Config for Runtime {
799
800
801
802
803
804
805
806
807
808
	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;
809
810
	type FounderSetOrigin = pallet_collective::EnsureProportionMoreThan<_1, _2, AccountId, CouncilCollective>;
	type SuspensionJudgementOrigin = pallet_society::EnsureFounder<Runtime>;
811
	type ChallengePeriod = ChallengePeriod;
812
	type ModuleId = SocietyModuleId;
813
814
}

815
816
817
818
parameter_types! {
	pub const MinVestedTransfer: Balance = 100 * DOLLARS;
}