lib.rs 51.7 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,
33
};
34
use runtime_common::{
35
	claims, SlowAdjustingFeeUpdate, CurrencyToVote,
36
	impls::DealWithFees,
37
38
	BlockHashCount, RocksDbWeight, BlockWeights, BlockLength,
	OffchainSolutionWeightLimit, OffchainSolutionLengthLimit,
39
	ParachainSessionKeyPlaceholder, AssignmentSessionKeyPlaceholder,
40
};
41
use sp_runtime::{
Shawn Tabrizi's avatar
Shawn Tabrizi committed
42
	create_runtime_str, generic, impl_opaque_keys,
43
	ApplyExtrinsicResult, KeyTypeId, Percent, Permill, Perbill,
Gavin Wood's avatar
Gavin Wood committed
44
	transaction_validity::{TransactionValidity, TransactionSource, TransactionPriority},
45
	curve::PiecewiseLinear,
46
	traits::{
47
		BlakeTwo256, Block as BlockT, OpaqueKeys, ConvertInto, AccountIdLookup,
Gavin Wood's avatar
Gavin Wood committed
48
		Extrinsic as ExtrinsicT, SaturatedConversion, Verify,
49
	},
Gav Wood's avatar
Gav Wood committed
50
};
51
52
#[cfg(feature = "runtime-benchmarks")]
use sp_runtime::RuntimeString;
53
54
use sp_version::RuntimeVersion;
use pallet_grandpa::{AuthorityId as GrandpaId, fg_primitives};
55
#[cfg(any(feature = "std", test))]
56
use sp_version::NativeVersion;
57
58
use sp_core::OpaqueMetadata;
use sp_staking::SessionIndex;
59
use frame_support::{
Shawn Tabrizi's avatar
Shawn Tabrizi committed
60
	parameter_types, construct_runtime, RuntimeDebug, PalletId,
61
	traits::{KeyOwnerProofSystem, Randomness, LockIdentifier, Filter, InstanceFilter},
62
	weights::Weight,
Gavin Wood's avatar
Gavin Wood committed
63
};
64
65
use frame_system::{EnsureRoot, EnsureOneOf};
use pallet_im_online::sr25519::AuthorityId as ImOnlineId;
Gavin Wood's avatar
Gavin Wood committed
66
use authority_discovery_primitives::AuthorityId as AuthorityDiscoveryId;
67
use pallet_transaction_payment::{FeeDetails, RuntimeDispatchInfo};
68
use pallet_session::historical as session_historical;
69
use static_assertions::const_assert;
70
71
use beefy_primitives::ecdsa::AuthorityId as BeefyId;
use pallet_mmr_primitives as mmr;
72

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

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

84
85
86
// Weights used in the runtime.
mod weights;

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

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

105
106
107
108
109
110
111
/// The BABE epoch configuration at genesis.
pub const BABE_GENESIS_EPOCH_CONFIG: babe_primitives::BabeEpochConfiguration =
	babe_primitives::BabeEpochConfiguration {
		c: PRIMARY_PROBABILITY,
		allowed_slots: babe_primitives::AllowedSlots::PrimaryAndSecondaryVRFSlots
	};

112
113
114
115
116
117
118
119
120
/// Native version.
#[cfg(any(feature = "std", test))]
pub fn native_version() -> NativeVersion {
	NativeVersion {
		runtime_version: VERSION,
		can_author_with: Default::default(),
	}
}

121
/// Avoid processing transactions from slots and parachain registrar.
122
123
pub struct BaseFilter;
impl Filter<Call> for BaseFilter {
124
125
	fn filter(_: &Call) -> bool {
		true
126
127
128
	}
}

Gavin Wood's avatar
Gavin Wood committed
129
130
131
type MoreThanHalfCouncil = EnsureOneOf<
	AccountId,
	EnsureRoot<AccountId>,
132
	pallet_collective::EnsureProportionMoreThan<_1, _2, AccountId, CouncilCollective>
Gavin Wood's avatar
Gavin Wood committed
133
134
>;

135
parameter_types! {
136
	pub const Version: RuntimeVersion = VERSION;
137
	pub const SS58Prefix: u8 = 2;
138
139
}

140
impl frame_system::Config for Runtime {
141
	type BaseCallFilter = BaseFilter;
142
143
	type BlockWeights = BlockWeights;
	type BlockLength = BlockLength;
144
	type Origin = Origin;
145
	type Call = Call;
Gav Wood's avatar
Gav Wood committed
146
	type Index = Nonce;
147
148
149
150
	type BlockNumber = BlockNumber;
	type Hash = Hash;
	type Hashing = BlakeTwo256;
	type AccountId = AccountId;
151
	type Lookup = AccountIdLookup<AccountId, ()>;
152
	type Header = generic::Header<BlockNumber, BlakeTwo256>;
Gav's avatar
Gav committed
153
	type Event = Event;
154
	type BlockHashCount = BlockHashCount;
155
	type DbWeight = RocksDbWeight;
156
	type Version = Version;
157
	type PalletInfo = PalletInfo;
158
	type AccountData = pallet_balances::AccountData<Balance>;
159
	type OnNewAccount = ();
160
	type OnKilledAccount = ();
161
	type SystemWeightInfo = weights::frame_system::WeightInfo<Runtime>;
162
	type SS58Prefix = SS58Prefix;
163
	type OnSetCode = ();
164
165
}

166
parameter_types! {
167
168
	pub MaximumSchedulerWeight: Weight = Perbill::from_percent(80) *
		BlockWeights::get().max_block;
169
170
171
	pub const MaxScheduledPerBlock: u32 = 50;
}

172
impl pallet_scheduler::Config for Runtime {
Gavin Wood's avatar
Gavin Wood committed
173
174
	type Event = Event;
	type Origin = Origin;
175
	type PalletsOrigin = OriginCaller;
Gavin Wood's avatar
Gavin Wood committed
176
	type Call = Call;
177
	type MaximumWeight = MaximumSchedulerWeight;
178
	type ScheduleOrigin = EnsureRoot<AccountId>;
179
	type MaxScheduledPerBlock = MaxScheduledPerBlock;
180
	type WeightInfo = weights::pallet_scheduler::WeightInfo<Runtime>;
Gavin Wood's avatar
Gavin Wood committed
181
182
}

183
parameter_types! {
184
	pub const EpochDuration: u64 = EPOCH_DURATION_IN_SLOTS as u64;
185
	pub const ExpectedBlockTime: Moment = MILLISECS_PER_BLOCK;
186
187
	pub const ReportLongevity: u64 =
		BondingDuration::get() as u64 * SessionsPerEra::get() as u64 * EpochDuration::get();
188
189
}

190
impl pallet_babe::Config for Runtime {
191
192
	type EpochDuration = EpochDuration;
	type ExpectedBlockTime = ExpectedBlockTime;
193
194

	// session module is the trigger
195
	type EpochChangeTrigger = pallet_babe::ExternalTrigger;
196
197
198
199
200

	type KeyOwnerProofSystem = Historical;

	type KeyOwnerProof = <Self::KeyOwnerProofSystem as KeyOwnerProofSystem<(
		KeyTypeId,
201
		pallet_babe::AuthorityId,
202
203
204
205
	)>>::Proof;

	type KeyOwnerIdentification = <Self::KeyOwnerProofSystem as KeyOwnerProofSystem<(
		KeyTypeId,
206
		pallet_babe::AuthorityId,
207
208
209
	)>>::IdentificationTuple;

	type HandleEquivocation =
210
		pallet_babe::EquivocationHandler<Self::KeyOwnerIdentification, Offences, ReportLongevity>;
211
212

	type WeightInfo = ();
213
214
}

Gavin Wood's avatar
Gavin Wood committed
215
216
217
218
parameter_types! {
	pub const IndexDeposit: Balance = 1 * DOLLARS;
}

219
impl pallet_indices::Config for Runtime {
Gav Wood's avatar
Gav Wood committed
220
	type AccountIndex = AccountIndex;
221
222
	type Currency = Balances;
	type Deposit = IndexDeposit;
Gav Wood's avatar
Gav Wood committed
223
	type Event = Event;
224
	type WeightInfo = weights::pallet_indices::WeightInfo<Runtime>;
Gav Wood's avatar
Gav Wood committed
225
226
}

Gavin Wood's avatar
Gavin Wood committed
227
parameter_types! {
Gavin Wood's avatar
Gavin Wood committed
228
	pub const ExistentialDeposit: Balance = 1 * CENTS;
229
	pub const MaxLocks: u32 = 50;
Gavin Wood's avatar
Gavin Wood committed
230
231
}

232
impl pallet_balances::Config for Runtime {
Gav's avatar
Gav committed
233
	type Balance = Balance;
234
	type DustRemoval = ();
Gavin Wood's avatar
Gavin Wood committed
235
	type Event = Event;
Gavin Wood's avatar
Gavin Wood committed
236
	type ExistentialDeposit = ExistentialDeposit;
237
	type AccountStore = System;
238
	type MaxLocks = MaxLocks;
239
	type WeightInfo = weights::pallet_balances::WeightInfo<Runtime>;
240
241
242
243
244
245
}

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

246
impl pallet_transaction_payment::Config for Runtime {
Albrecht's avatar
Albrecht committed
247
	type OnChargeTransaction = CurrencyAdapter<Balances, DealWithFees<Self>>;
Gavin Wood's avatar
Gavin Wood committed
248
	type TransactionByteFee = TransactionByteFee;
249
	type WeightToFee = WeightToFee;
250
	type FeeMultiplierUpdate = SlowAdjustingFeeUpdate<Self>;
Gav's avatar
Gav committed
251
252
}

253
parameter_types! {
254
	pub const MinimumPeriod: u64 = SLOT_DURATION / 2;
255
}
256
impl pallet_timestamp::Config for Runtime {
257
	type Moment = u64;
258
	type OnTimestampSet = Babe;
259
	type MinimumPeriod = MinimumPeriod;
260
	type WeightInfo = weights::pallet_timestamp::WeightInfo<Runtime>;
261
262
}

Gavin Wood's avatar
Gavin Wood committed
263
parameter_types! {
264
	pub const UncleGenerations: u32 = 0;
Gavin Wood's avatar
Gavin Wood committed
265
266
}

267
impl pallet_authorship::Config for Runtime {
268
	type FindAuthor = pallet_session::FindAccountFromAuthorIndex<Self, Babe>;
Gavin Wood's avatar
Gavin Wood committed
269
270
	type UncleGenerations = UncleGenerations;
	type FilterUncle = ();
Gavin Wood's avatar
Gavin Wood committed
271
	type EventHandler = (Staking, ImOnline);
Gavin Wood's avatar
Gavin Wood committed
272
273
}

274
275
276
277
278
279
parameter_types! {
	pub const Period: BlockNumber = 10 * MINUTES;
	pub const Offset: BlockNumber = 0;
}

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

thiolliere's avatar
thiolliere committed
290
291
292
293
parameter_types! {
	pub const DisabledValidatorsThreshold: Perbill = Perbill::from_percent(17);
}

294
impl pallet_session::Config for Runtime {
Gav's avatar
Gav committed
295
	type Event = Event;
296
	type ValidatorId = AccountId;
297
	type ValidatorIdOf = pallet_staking::StashOf<Self>;
Gavin Wood's avatar
Gavin Wood committed
298
	type ShouldEndSession = Babe;
299
	type NextSessionRotation = Babe;
300
	type SessionManager = pallet_session::historical::NoteHistoricalRoot<Self, Staking>;
Gavin Wood's avatar
Gavin Wood committed
301
302
	type SessionHandler = <SessionKeys as OpaqueKeys>::KeyTypeIdProviders;
	type Keys = SessionKeys;
thiolliere's avatar
thiolliere committed
303
	type DisabledValidatorsThreshold = DisabledValidatorsThreshold;
304
	type WeightInfo = weights::pallet_session::WeightInfo<Runtime>;
305
306
}

307
impl pallet_session::historical::Config for Runtime {
308
309
	type FullIdentification = pallet_staking::Exposure<AccountId, Balance>;
	type FullIdentificationOf = pallet_staking::ExposureOf<Runtime>;
310
311
}

312
313
314
parameter_types! {
	// no signed phase for now, just unsigned.
	pub const SignedPhase: u32 = 0;
315
	pub const UnsignedPhase: u32 = EPOCH_DURATION_IN_SLOTS / 4;
316

317
	// fallback: run election on-chain.
318
	pub const Fallback: pallet_election_provider_multi_phase::FallbackStrategy =
319
320
		pallet_election_provider_multi_phase::FallbackStrategy::OnChain;
	pub SolutionImprovementThreshold: Perbill = Perbill::from_rational(5u32, 10_000);
321
322
323
324
325

	// miner configs
	pub const MinerMaxIterations: u32 = 10;
}

326
327
sp_npos_elections::generate_solution_type!(
	#[compact]
328
329
330
331
332
	pub struct NposCompactSolution16::<
		VoterIndex = u32,
		TargetIndex = u16,
		Accuracy = sp_runtime::PerU16,
	>(16)
333
334
);

335
336
337
338
339
impl pallet_election_provider_multi_phase::Config for Runtime {
	type Event = Event;
	type Currency = Balances;
	type SignedPhase = SignedPhase;
	type UnsignedPhase = UnsignedPhase;
340
	type SolutionImprovementThreshold = SolutionImprovementThreshold;
341
	type MinerMaxIterations = MinerMaxIterations;
342
343
	type MinerMaxWeight = OffchainSolutionWeightLimit;
	type MinerMaxLength = OffchainSolutionLengthLimit;
344
	type MinerTxPriority = NposSolutionPriority;
345
346
	type DataProvider = Staking;
	type OnChainAccuracy = Perbill;
347
	type CompactSolution = NposCompactSolution16;
348
349
	type Fallback = Fallback;
	type BenchmarkingConfig = ();
350
	type WeightInfo = weights::pallet_election_provider_multi_phase::WeightInfo<Runtime>;
351
352
}

353
354
355
// 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))%`.
356
pallet_staking_reward_curve::build! {
thiolliere's avatar
thiolliere committed
357
358
359
	const REWARD_CURVE: PiecewiseLinear<'static> = curve!(
		min_inflation: 0_025_000,
		max_inflation: 0_100_000,
360
361
362
		// 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
363
364
365
366
367
368
		falloff: 0_050_000,
		max_piece_count: 40,
		test_precision: 0_005_000,
	);
}

369
parameter_types! {
Gavin Wood's avatar
Gavin Wood committed
370
	// Six sessions in an era (6 hours).
371
	pub const SessionsPerEra: SessionIndex = 6;
Gavin Wood's avatar
Gavin Wood committed
372
	// 28 eras for unbonding (7 days).
373
	pub const BondingDuration: pallet_staking::EraIndex = 28;
374
	// 27 eras in which slashes can be cancelled (slightly less than 7 days).
375
	pub const SlashDeferDuration: pallet_staking::EraIndex = 27;
thiolliere's avatar
thiolliere committed
376
	pub const RewardCurve: &'static PiecewiseLinear<'static> = &REWARD_CURVE;
377
pub const MaxNominatorRewardedPerValidator: u32 = 256;
378
}
379

Gavin Wood's avatar
Gavin Wood committed
380
381
382
type SlashCancelOrigin = EnsureOneOf<
	AccountId,
	EnsureRoot<AccountId>,
383
	pallet_collective::EnsureProportionAtLeast<_1, _2, AccountId, CouncilCollective>
Gavin Wood's avatar
Gavin Wood committed
384
385
>;

386
impl pallet_staking::Config for Runtime {
387
	const MAX_NOMINATIONS: u32 = <NposCompactSolution16 as sp_npos_elections::CompactSolution>::LIMIT as u32;
Gavin Wood's avatar
Gavin Wood committed
388
	type Currency = Balances;
389
	type UnixTime = Timestamp;
390
	type CurrencyToVote = CurrencyToVote;
Gavin Wood's avatar
Gavin Wood committed
391
	type RewardRemainder = Treasury;
Gav's avatar
Gav committed
392
	type Event = Event;
393
	type Slash = Treasury;
394
	type Reward = ();
395
396
	type SessionsPerEra = SessionsPerEra;
	type BondingDuration = BondingDuration;
Gavin Wood's avatar
Gavin Wood committed
397
	type SlashDeferDuration = SlashDeferDuration;
Gavin Wood's avatar
Gavin Wood committed
398
399
	// A majority of the council or root can cancel the slash.
	type SlashCancelOrigin = SlashCancelOrigin;
400
	type SessionInterface = Self;
Kian Paimani's avatar
Kian Paimani committed
401
	type EraPayout = pallet_staking::ConvertCurve<RewardCurve>;
Gavin Wood's avatar
Gavin Wood committed
402
	type MaxNominatorRewardedPerValidator = MaxNominatorRewardedPerValidator;
403
	type NextNewSession = Session;
404
	type ElectionProvider = ElectionProviderMultiPhase;
405
	type WeightInfo = weights::pallet_staking::WeightInfo<Runtime>;
406
407
}

408
parameter_types! {
409
410
	pub const LaunchPeriod: BlockNumber = 7 * DAYS;
	pub const VotingPeriod: BlockNumber = 7 * DAYS;
411
	pub const FastTrackVotingPeriod: BlockNumber = 3 * HOURS;
Gavin Wood's avatar
Gavin Wood committed
412
	pub const MinimumDeposit: Balance = 1 * DOLLARS;
413
414
	pub const EnactmentPeriod: BlockNumber = 8 * DAYS;
	pub const CooloffPeriod: BlockNumber = 7 * DAYS;
Gavin Wood's avatar
Gavin Wood committed
415
	// One cent: $10,000 / MB
Gavin Wood's avatar
Gavin Wood committed
416
	pub const PreimageByteDeposit: Balance = 10 * MILLICENTS;
417
	pub const InstantAllowed: bool = true;
418
	pub const MaxVotes: u32 = 100;
419
	pub const MaxProposals: u32 = 100;
420
421
}

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

471
472
parameter_types! {
	pub const CouncilMotionDuration: BlockNumber = 3 * DAYS;
473
	pub const CouncilMaxProposals: u32 = 100;
474
	pub const CouncilMaxMembers: u32 = 100;
475
476
}

477
type CouncilCollective = pallet_collective::Instance1;
478
impl pallet_collective::Config<CouncilCollective> for Runtime {
479
480
481
	type Origin = Origin;
	type Proposal = Call;
	type Event = Event;
482
	type MotionDuration = CouncilMotionDuration;
483
	type MaxProposals = CouncilMaxProposals;
484
	type MaxMembers = CouncilMaxMembers;
Wei Tang's avatar
Wei Tang committed
485
	type DefaultVote = pallet_collective::PrimeDefaultVote;
486
	type WeightInfo = weights::pallet_collective::WeightInfo<Runtime>;
487
488
}

Gavin Wood's avatar
Gavin Wood committed
489
parameter_types! {
Gavin Wood's avatar
Gavin Wood committed
490
	pub const CandidacyBond: Balance = 1 * DOLLARS;
Kian Paimani's avatar
Kian Paimani committed
491
492
493
494
495
	// 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
496
	pub const TermDuration: BlockNumber = 24 * HOURS;
497
498
	pub const DesiredMembers: u32 = 19;
	pub const DesiredRunnersUp: u32 = 19;
Shawn Tabrizi's avatar
Shawn Tabrizi committed
499
	pub const ElectionsPhragmenPalletId: LockIdentifier = *b"phrelect";
500
}
Kian Paimani's avatar
Kian Paimani committed
501

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

505
impl pallet_elections_phragmen::Config for Runtime {
506
	type Event = Event;
507
508
	type Currency = Balances;
	type ChangeMembers = Council;
509
	type InitializeMembers = Council;
510
	type CurrencyToVote = frame_support::traits::U128CurrencyToVote;
Gavin Wood's avatar
Gavin Wood committed
511
	type CandidacyBond = CandidacyBond;
Kian Paimani's avatar
Kian Paimani committed
512
513
	type VotingBondBase = VotingBondBase;
	type VotingBondFactor = VotingBondFactor;
514
515
	type LoserCandidate = Treasury;
	type KickedMember = Treasury;
Gavin Wood's avatar
Gavin Wood committed
516
517
518
	type DesiredMembers = DesiredMembers;
	type DesiredRunnersUp = DesiredRunnersUp;
	type TermDuration = TermDuration;
Shawn Tabrizi's avatar
Shawn Tabrizi committed
519
	type PalletId = ElectionsPhragmenPalletId;
520
	type WeightInfo = weights::pallet_elections_phragmen::WeightInfo<Runtime>;
521
522
}

523
524
parameter_types! {
	pub const TechnicalMotionDuration: BlockNumber = 3 * DAYS;
525
	pub const TechnicalMaxProposals: u32 = 100;
526
	pub const TechnicalMaxMembers: u32 = 100;
527
528
}

529
type TechnicalCollective = pallet_collective::Instance2;
530
impl pallet_collective::Config<TechnicalCollective> for Runtime {
531
532
533
	type Origin = Origin;
	type Proposal = Call;
	type Event = Event;
534
	type MotionDuration = TechnicalMotionDuration;
535
	type MaxProposals = TechnicalMaxProposals;
536
	type MaxMembers = TechnicalMaxMembers;
Wei Tang's avatar
Wei Tang committed
537
	type DefaultVote = pallet_collective::PrimeDefaultVote;
538
	type WeightInfo = weights::pallet_collective::WeightInfo<Runtime>;
539
540
}

541
impl pallet_membership::Config<pallet_membership::Instance1> for Runtime {
542
	type Event = Event;
Gavin Wood's avatar
Gavin Wood committed
543
544
545
546
547
	type AddOrigin = MoreThanHalfCouncil;
	type RemoveOrigin = MoreThanHalfCouncil;
	type SwapOrigin = MoreThanHalfCouncil;
	type ResetOrigin = MoreThanHalfCouncil;
	type PrimeOrigin = MoreThanHalfCouncil;
548
549
550
551
	type MembershipInitialized = TechnicalCommittee;
	type MembershipChanged = TechnicalCommittee;
}

Gavin Wood's avatar
Gavin Wood committed
552
553
parameter_types! {
	pub const ProposalBond: Permill = Permill::from_percent(5);
Gavin Wood's avatar
Gavin Wood committed
554
	pub const ProposalBondMinimum: Balance = 20 * DOLLARS;
555
	pub const SpendPeriod: BlockNumber = 6 * DAYS;
556
	pub const Burn: Permill = Permill::from_perthousand(2);
Shawn Tabrizi's avatar
Shawn Tabrizi committed
557
	pub const TreasuryPalletId: PalletId = PalletId(*b"py/trsry");
Gavin Wood's avatar
Gavin Wood committed
558
559
560
561

	pub const TipCountdown: BlockNumber = 1 * DAYS;
	pub const TipFindersFee: Percent = Percent::from_percent(20);
	pub const TipReportDepositBase: Balance = 1 * DOLLARS;
562
563
564
565
566
567
568
	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
569
570
}

Gavin Wood's avatar
Gavin Wood committed
571
572
573
type ApproveOrigin = EnsureOneOf<
	AccountId,
	EnsureRoot<AccountId>,
574
	pallet_collective::EnsureProportionAtLeast<_3, _5, AccountId, CouncilCollective>
Gavin Wood's avatar
Gavin Wood committed
575
576
>;

577
impl pallet_treasury::Config for Runtime {
Shawn Tabrizi's avatar
Shawn Tabrizi committed
578
	type PalletId = TreasuryPalletId;
Gavin Wood's avatar
Gavin Wood committed
579
	type Currency = Balances;
Gavin Wood's avatar
Gavin Wood committed
580
581
	type ApproveOrigin = ApproveOrigin;
	type RejectOrigin = MoreThanHalfCouncil;
582
	type Event = Event;
583
	type OnSlash = Treasury;
Gavin Wood's avatar
Gavin Wood committed
584
585
586
587
	type ProposalBond = ProposalBond;
	type ProposalBondMinimum = ProposalBondMinimum;
	type SpendPeriod = SpendPeriod;
	type Burn = Burn;
588
589
590
591
592
593
594
	type BurnDestination = Society;
	type SpendFunds = Bounties;
	type WeightInfo = weights::pallet_treasury::WeightInfo<Runtime>;
}

impl pallet_bounties::Config for Runtime {
	type Event = Event;
595
596
597
598
599
	type BountyDepositBase = BountyDepositBase;
	type BountyDepositPayoutDelay = BountyDepositPayoutDelay;
	type BountyUpdatePeriod = BountyUpdatePeriod;
	type BountyCuratorDeposit = BountyCuratorDeposit;
	type BountyValueMinimum = BountyValueMinimum;
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
	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>;
615
}
616

617
parameter_types! {
618
	pub OffencesWeightSoftLimit: Weight = Perbill::from_percent(60) * BlockWeights::get().max_block;
619
620
}

621
impl pallet_offences::Config for Runtime {
622
	type Event = Event;
623
	type IdentificationTuple = pallet_session::historical::IdentificationTuple<Self>;
624
	type OnOffenceHandler = Staking;
625
	type WeightSoftLimit = OffencesWeightSoftLimit;
626
627
}

628
impl pallet_authority_discovery::Config for Runtime {}
Gavin Wood's avatar
Gavin Wood committed
629

630
parameter_types! {
631
	pub NposSolutionPriority: TransactionPriority =
632
		Perbill::from_percent(90) * TransactionPriority::max_value();
633
634
635
	pub const ImOnlineUnsignedPriority: TransactionPriority = TransactionPriority::max_value();
}

636
impl pallet_im_online::Config for Runtime {
thiolliere's avatar
thiolliere committed
637
	type AuthorityId = ImOnlineId;
638
	type Event = Event;
639
	type ValidatorSet = Historical;
640
	type NextSessionRotation = Babe;
641
	type ReportUnresponsiveness = Offences;
642
	type UnsignedPriority = ImOnlineUnsignedPriority;
643
	type WeightInfo = weights::pallet_im_online::WeightInfo<Runtime>;
644
645
}

646
impl pallet_grandpa::Config for Runtime {
647
	type Event = Event;
648
649
650
651
652
653
654
655
656
657
658
659
	type Call = Call;

	type KeyOwnerProofSystem = Historical;

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

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

660
661
	type HandleEquivocation =
		pallet_grandpa::EquivocationHandler<Self::KeyOwnerIdentification, Offences, ReportLongevity>;
662
663

	type WeightInfo = ();
664
665
}

666
667
/// Submits transaction with the node's public and signature type. Adheres to the signed extension
/// format of the chain.
668
impl<LocalCall> frame_system::offchain::CreateSignedTransaction<LocalCall> for Runtime where
669
670
	Call: From<LocalCall>,
{
671
	fn create_transaction<C: frame_system::offchain::AppCrypto<Self::Public, Self::Signature>>(
672
673
674
		call: Call,
		public: <Signature as Verify>::Signer,
		account: AccountId,
675
		nonce: <Runtime as frame_system::Config>::Index,
676
	) -> Option<(Call, <UncheckedExtrinsic as ExtrinsicT>::SignaturePayload)> {
677
		use sp_runtime::traits::StaticLookup;
678
		// take the biggest period possible.
679
680
681
682
683
684
685
		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>()
686
687
			// The `System::block_number` is initialized with `n+1`,
			// so the actual block number is `n`.
688
689
690
			.saturating_sub(1);
		let tip = 0;
		let extra: SignedExtra = (
691
692
693
694
695
696
697
			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),
698
699
		);
		let raw_payload = SignedPayload::new(call, extra).map_err(|e| {
700
			log::warn!("Unable to create signed payload: {:?}", e);
701
		}).ok()?;
702
703
704
		let signature = raw_payload.using_encoded(|payload| {
			C::sign(payload, public)
		})?;
705
		let (call, extra, _) = raw_payload.deconstruct();
706
707
		let address = <Runtime as frame_system::Config>::Lookup::unlookup(account);
		Some((call, (address, signature, extra)))
708
	}
709
710
}

711
impl frame_system::offchain::SigningTypes for Runtime {
712
713
714
715
	type Public = <Signature as Verify>::Signer;
	type Signature = Signature;
}

716
impl<C> frame_system::offchain::SendTransactionTypes<C> for Runtime where
717
718
719
720
721
722
	Call: From<C>,
{
	type OverarchingCall = Call;
	type Extrinsic = UncheckedExtrinsic;
}

Gavin Wood's avatar
Gavin Wood committed
723
parameter_types! {
724
	pub Prefix: &'static [u8] = b"Pay KSMs to the Kusama account:";
725
726
}

727
impl claims::Config for Runtime {
728
	type Event = Event;
Gavin Wood's avatar
Gavin Wood committed
729
	type VestingSchedule = Vesting;
730
	type Prefix = Prefix;
731
	type MoveClaimOrigin = pallet_collective::EnsureProportionMoreThan<_1, _2, AccountId, CouncilCollective>;
732
	type WeightInfo = weights::runtime_common_claims::WeightInfo<Runtime>;
733
734
}

735
parameter_types! {
736
	// Minimum 100 bytes/KSM deposited (1 CENT/byte)
Gavin Wood's avatar
Gavin Wood committed
737
738
739
	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
740
741
	pub const MaxSubAccounts: u32 = 100;
	pub const MaxAdditionalFields: u32 = 100;
742
	pub const MaxRegistrars: u32 = 20;
743
744
}

745
impl pallet_identity::Config for Runtime {
746
747
748
749
750
751
	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
752
753
	type MaxSubAccounts = MaxSubAccounts;
	type MaxAdditionalFields = MaxAdditionalFields;
754
	type MaxRegistrars = MaxRegistrars;
Gavin Wood's avatar
Gavin Wood committed
755
756
	type RegistrarOrigin = MoreThanHalfCouncil;
	type ForceOrigin = MoreThanHalfCouncil;
757
	type WeightInfo = weights::pallet_identity::WeightInfo<Runtime>;
758
759
}

760
impl pallet_utility::Config for Runtime {
761
762
	type Event = Event;
	type Call = Call;
763
	type WeightInfo = weights::pallet_utility::WeightInfo<Runtime>;
764
765
}

Gavin Wood's avatar
Gavin Wood committed
766
parameter_types! {
767
768
	// 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
769
	// Additional storage item size of 32 bytes.
770
	pub const DepositFactor: Balance = deposit(0, 32);
Gavin Wood's avatar
Gavin Wood committed
771
772
773
	pub const MaxSignatories: u16 = 100;
}

774
impl pallet_multisig::Config for Runtime {
Gavin Wood's avatar
Gavin Wood committed
775
776
777
	type Event = Event;
	type Call = Call;
	type Currency = Balances;
778
779
	type DepositBase = DepositBase;
	type DepositFactor