lib.rs 52.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
	BlockHashCount, RocksDbWeight, BlockWeights, BlockLength, OffchainSolutionWeightLimit,
38
	ParachainSessionKeyPlaceholder, AssignmentSessionKeyPlaceholder,
39
};
40
use sp_runtime::{
Shawn Tabrizi's avatar
Shawn Tabrizi committed
41
	create_runtime_str, generic, impl_opaque_keys,
42
	ApplyExtrinsicResult, KeyTypeId, Percent, Permill, Perbill,
Gavin Wood's avatar
Gavin Wood committed
43
	transaction_validity::{TransactionValidity, TransactionSource, TransactionPriority},
44
	curve::PiecewiseLinear,
45
	traits::{
46
		BlakeTwo256, Block as BlockT, OpaqueKeys, ConvertInto, AccountIdLookup,
Gavin Wood's avatar
Gavin Wood committed
47
		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::{
Shawn Tabrizi's avatar
Shawn Tabrizi committed
59
	parameter_types, construct_runtime, RuntimeDebug, PalletId,
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
70
use beefy_primitives::ecdsa::AuthorityId as BeefyId;
use pallet_mmr_primitives as mmr;
71

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

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

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

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

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

104
105
106
107
108
109
110
/// 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
	};

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

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

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

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

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

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

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

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

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

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

	type KeyOwnerProofSystem = Historical;

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

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

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

	type WeightInfo = ();
212
213
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

334
335
336
337
338
impl pallet_election_provider_multi_phase::Config for Runtime {
	type Event = Event;
	type Currency = Balances;
	type SignedPhase = SignedPhase;
	type UnsignedPhase = UnsignedPhase;
339
	type SolutionImprovementThreshold = SolutionImprovementThreshold;
340
341
	type MinerMaxIterations = MinerMaxIterations;
	type MinerMaxWeight = OffchainSolutionWeightLimit; // For now use the one from staking.
342
	type MinerTxPriority = NposSolutionPriority;
343
344
	type DataProvider = Staking;
	type OnChainAccuracy = Perbill;
345
	type CompactSolution = NposCompactSolution16;
346
347
	type Fallback = Fallback;
	type BenchmarkingConfig = ();
348
	type WeightInfo = weights::pallet_election_provider_multi_phase::WeightInfo<Runtime>;
349
350
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

626
impl pallet_authority_discovery::Config for Runtime {}
Gavin Wood's avatar
Gavin Wood committed
627

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

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

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

	type KeyOwnerProofSystem = Historical;

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

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

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

	type WeightInfo = ();
662
663
}

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

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

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

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

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

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

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

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

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

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