lib.rs 39.4 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
15
16
// 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
// along with Polkadot.  If not, see <http://www.gnu.org/licenses/>.

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

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

23
use runtime_common::{attestations, claims, parachains, registrar, slots,
24
	impls::{CurrencyToVoteHandler, TargetedFeeAdjustment, ToAuthor},
25
	NegativeImbalance, BlockHashCount, MaximumBlockWeight, AvailableBlockRatio,
26
	MaximumBlockLength, BlockExecutionWeight, ExtrinsicBaseWeight, RocksDbWeight,
Gavin Wood's avatar
Gavin Wood committed
27
	MaximumExtrinsicWeight, TransactionCallFilter,
28
};
Gav Wood's avatar
Gav Wood committed
29

30
use sp_std::prelude::*;
31
use sp_core::u32_trait::{_1, _2, _3, _4, _5};
32
use codec::{Encode, Decode};
33
use primitives::{
34
	AccountId, AccountIndex, Balance, BlockNumber, Hash, Nonce, Signature, Moment,
Gavin Wood's avatar
Gavin Wood committed
35
	parachain::{self, ActiveParas, AbridgedCandidateReceipt, SigningContext},
36
};
37
use sp_runtime::{
38
	create_runtime_str, generic, impl_opaque_keys, ModuleId,
39
	ApplyExtrinsicResult, KeyTypeId, Percent, Permill, Perbill, Perquintill, PerThing,
40
	transaction_validity::{
Gavin Wood's avatar
Gavin Wood committed
41
		TransactionValidity, TransactionSource, TransactionPriority,
42
	},
43
	curve::PiecewiseLinear,
44
	traits::{
Gavin Wood's avatar
Gavin Wood committed
45
46
		BlakeTwo256, Block as BlockT, OpaqueKeys, ConvertInto, IdentityLookup,
		Extrinsic as ExtrinsicT, SaturatedConversion, Verify,
47
	},
Gav Wood's avatar
Gav Wood committed
48
};
49
50
#[cfg(feature = "runtime-benchmarks")]
use sp_runtime::RuntimeString;
Arkadiy Paronyan's avatar
Arkadiy Paronyan committed
51
use version::RuntimeVersion;
52
use grandpa::{AuthorityId as GrandpaId, fg_primitives};
53
54
#[cfg(any(feature = "std", test))]
use version::NativeVersion;
55
56
use sp_core::OpaqueMetadata;
use sp_staking::SessionIndex;
57
use frame_support::{
58
	parameter_types, construct_runtime, debug, RuntimeDebug,
Gavin Wood's avatar
Gavin Wood committed
59
	traits::{KeyOwnerProofSystem, SplitTwoWays, Randomness, LockIdentifier, Filter},
60
	weights::Weight,
Gavin Wood's avatar
Gavin Wood committed
61
};
Gavin Wood's avatar
Gavin Wood committed
62
use system::{EnsureRoot, EnsureOneOf};
thiolliere's avatar
thiolliere committed
63
use im_online::sr25519::AuthorityId as ImOnlineId;
Gavin Wood's avatar
Gavin Wood committed
64
use authority_discovery_primitives::AuthorityId as AuthorityDiscoveryId;
Gavin Wood's avatar
Gavin Wood committed
65
use transaction_payment_rpc_runtime_api::RuntimeDispatchInfo;
66
use session::historical as session_historical;
67
use static_assertions::const_assert;
68

Gav Wood's avatar
Gav Wood committed
69
70
#[cfg(feature = "std")]
pub use staking::StakerStatus;
71
#[cfg(any(feature = "std", test))]
72
pub use sp_runtime::BuildStorage;
73
pub use timestamp::Call as TimestampCall;
74
pub use balances::Call as BalancesCall;
75
pub use attestations::{Call as AttestationsCall, MORE_ATTESTATIONS_IDENTIFIER};
76
pub use parachains::Call as ParachainsCall;
77
78
79

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

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

87
// Polkadot version identifier;
88
/// Runtime version (Polkadot).
Arkadiy Paronyan's avatar
Arkadiy Paronyan committed
89
pub const VERSION: RuntimeVersion = RuntimeVersion {
90
91
	spec_name: create_runtime_str!("polkadot"),
	impl_name: create_runtime_str!("parity-polkadot"),
Gavin Wood's avatar
Gavin Wood committed
92
	authoring_version: 0,
93
	spec_version: 8,
94
95
	impl_version: 0,
	apis: RUNTIME_API_VERSIONS,
Gavin Wood's avatar
Gavin Wood committed
96
	transaction_version: 0,
97
};
Arkadiy Paronyan's avatar
Arkadiy Paronyan committed
98

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

108
109
pub struct BaseFilter;
impl Filter<Call> for BaseFilter {
Gavin Wood's avatar
Gavin Wood committed
110
	fn filter(call: &Call) -> bool {
111
		match call {
Gavin Wood's avatar
Gavin Wood committed
112
			Call::Parachains(parachains::Call::set_heads(..)) => true,
Gavin Wood's avatar
Gavin Wood committed
113

Gavin Wood's avatar
Gavin Wood committed
114
115
116
117
118
119
			// Governance stuff
			Call::Democracy(_) | Call::Council(_) | Call::TechnicalCommittee(_) |
			Call::ElectionsPhragmen(_) | Call::TechnicalMembership(_) | Call::Treasury(_) |
			// Parachains stuff
			Call::Parachains(_) | Call::Attestations(_) | Call::Slots(_) | Call::Registrar(_) |
			// Balances and Vesting's transfer (which can be used to transfer)
Gavin Wood's avatar
Gavin Wood committed
120
121
			Call::Balances(_) | Call::Vesting(vesting::Call::vested_transfer(..)) |
			Call::Indices(indices::Call::transfer(..)) =>
Gavin Wood's avatar
Gavin Wood committed
122
123
124
125
126
127
128
129
				false,

			// These modules are all allowed to be called by transactions:
			Call::System(_) | Call::Scheduler(_) | Call::Indices(_) |
			Call::Babe(_) | Call::Timestamp(_) |
			Call::Authorship(_) | Call::Staking(_) | Call::Offences(_) |
			Call::Session(_) | Call::FinalityTracker(_) | Call::Grandpa(_) | Call::ImOnline(_) |
			Call::AuthorityDiscovery(_) |
Gavin Wood's avatar
Gavin Wood committed
130
			Call::Utility(_) | Call::Claims(_) | Call::Vesting(_) | Call::Sudo(_) |
131
			Call::Identity(_) | Call::Proxy(_) | Call::Multisig(_) =>
Gavin Wood's avatar
Gavin Wood committed
132
				true,
133
134
135
		}
	}
}
136
137
pub struct IsCallable;
frame_support::impl_filter_stack!(IsCallable, BaseFilter, Call, is_callable);
138

Gavin Wood's avatar
Gavin Wood committed
139
140
141
142
143
144
type MoreThanHalfCouncil = EnsureOneOf<
	AccountId,
	EnsureRoot<AccountId>,
	collective::EnsureProportionMoreThan<_1, _2, AccountId, CouncilCollective>
>;

145
parameter_types! {
146
	pub const Version: RuntimeVersion = VERSION;
147
148
}

149
150
impl system::Trait for Runtime {
	type Origin = Origin;
151
	type Call = Call;
Gav Wood's avatar
Gav Wood committed
152
	type Index = Nonce;
153
154
155
156
	type BlockNumber = BlockNumber;
	type Hash = Hash;
	type Hashing = BlakeTwo256;
	type AccountId = AccountId;
157
	type Lookup = IdentityLookup<AccountId>;
158
	type Header = generic::Header<BlockNumber, BlakeTwo256>;
Gav's avatar
Gav committed
159
	type Event = Event;
160
	type BlockHashCount = BlockHashCount;
161
	type MaximumBlockWeight = MaximumBlockWeight;
162
	type DbWeight = RocksDbWeight;
163
164
	type BlockExecutionWeight = BlockExecutionWeight;
	type ExtrinsicBaseWeight = ExtrinsicBaseWeight;
Tomasz Drwięga's avatar
Tomasz Drwięga committed
165
	type MaximumExtrinsicWeight = MaximumExtrinsicWeight;
166
167
	type MaximumBlockLength = MaximumBlockLength;
	type AvailableBlockRatio = AvailableBlockRatio;
168
	type Version = Version;
169
	type ModuleToIndex = ModuleToIndex;
170
	type AccountData = balances::AccountData<Balance>;
Gavin Wood's avatar
Gavin Wood committed
171
	type OnNewAccount = ();
172
	type OnKilledAccount = ();
173
174
}

Gavin Wood's avatar
Gavin Wood committed
175
176
177
178
179
180
181
impl scheduler::Trait for Runtime {
	type Event = Event;
	type Origin = Origin;
	type Call = Call;
	type MaximumWeight = MaximumBlockWeight;
}

182
parameter_types! {
183
	pub const EpochDuration: u64 = EPOCH_DURATION_IN_BLOCKS as u64;
184
185
186
187
188
189
	pub const ExpectedBlockTime: Moment = MILLISECS_PER_BLOCK;
}

impl babe::Trait for Runtime {
	type EpochDuration = EpochDuration;
	type ExpectedBlockTime = ExpectedBlockTime;
190
191
192

	// session module is the trigger
	type EpochChangeTrigger = babe::ExternalTrigger;
193
194
}

Gavin Wood's avatar
Gavin Wood committed
195
parameter_types! {
Gavin Wood's avatar
Gavin Wood committed
196
	pub const IndexDeposit: Balance = 10 * DOLLARS;
Gavin Wood's avatar
Gavin Wood committed
197
198
}

Gav Wood's avatar
Gav Wood committed
199
200
impl indices::Trait for Runtime {
	type AccountIndex = AccountIndex;
201
202
	type Currency = Balances;
	type Deposit = IndexDeposit;
Gav Wood's avatar
Gav Wood committed
203
204
205
	type Event = Event;
}

Gavin Wood's avatar
Gavin Wood committed
206
parameter_types! {
207
	pub const ExistentialDeposit: Balance = 100 * CENTS;
Gavin Wood's avatar
Gavin Wood committed
208
209
210
211
212
}

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

218
impl balances::Trait for Runtime {
Gav's avatar
Gav committed
219
	type Balance = Balance;
220
	type DustRemoval = ();
Gavin Wood's avatar
Gavin Wood committed
221
	type Event = Event;
Gavin Wood's avatar
Gavin Wood committed
222
	type ExistentialDeposit = ExistentialDeposit;
223
	type AccountStore = System;
224
225
226
227
}

parameter_types! {
	pub const TransactionByteFee: Balance = 10 * MILLICENTS;
228
	pub const TargetBlockFullness: Perquintill = Perquintill::from_percent(25);
229
230
}

231
232
233
234
235
236
237
// for a sane configuration, this should always be less than `AvailableBlockRatio`.
const_assert!(
	TargetBlockFullness::get().deconstruct() <
	(AvailableBlockRatio::get().deconstruct() as <Perquintill as PerThing>::Inner)
		* (<Perquintill as PerThing>::ACCURACY / <Perbill as PerThing>::ACCURACY as <Perquintill as PerThing>::Inner)
);

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

246
parameter_types! {
247
	pub const MinimumPeriod: u64 = SLOT_DURATION / 2;
248
}
249
impl timestamp::Trait for Runtime {
250
	type Moment = u64;
251
	type OnTimestampSet = Babe;
252
	type MinimumPeriod = MinimumPeriod;
253
254
}

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

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

267
impl_opaque_keys! {
268
	pub struct SessionKeys {
Gavin Wood's avatar
Gavin Wood committed
269
270
271
272
		pub grandpa: Grandpa,
		pub babe: Babe,
		pub im_online: ImOnline,
		pub parachain_validator: Parachains,
Gavin Wood's avatar
Gavin Wood committed
273
		pub authority_discovery: AuthorityDiscovery,
274
	}
275
276
}

thiolliere's avatar
thiolliere committed
277
278
279
280
parameter_types! {
	pub const DisabledValidatorsThreshold: Perbill = Perbill::from_percent(17);
}

281
impl session::Trait for Runtime {
Gav's avatar
Gav committed
282
	type Event = Event;
283
284
	type ValidatorId = AccountId;
	type ValidatorIdOf = staking::StashOf<Self>;
Gavin Wood's avatar
Gavin Wood committed
285
	type ShouldEndSession = Babe;
286
	type NextSessionRotation = Babe;
287
	type SessionManager = session::historical::NoteHistoricalRoot<Self, Staking>;
Gavin Wood's avatar
Gavin Wood committed
288
289
	type SessionHandler = <SessionKeys as OpaqueKeys>::KeyTypeIdProviders;
	type Keys = SessionKeys;
thiolliere's avatar
thiolliere committed
290
	type DisabledValidatorsThreshold = DisabledValidatorsThreshold;
291
292
293
294
}

impl session::historical::Trait for Runtime {
	type FullIdentification = staking::Exposure<AccountId, Balance>;
295
	type FullIdentificationOf = staking::ExposureOf<Runtime>;
296
297
}

298
pallet_staking_reward_curve::build! {
thiolliere's avatar
thiolliere committed
299
300
301
302
303
304
305
306
307
308
	const REWARD_CURVE: PiecewiseLinear<'static> = curve!(
		min_inflation: 0_025_000,
		max_inflation: 0_100_000,
		ideal_stake: 0_500_000,
		falloff: 0_050_000,
		max_piece_count: 40,
		test_precision: 0_005_000,
	);
}

309
parameter_types! {
Gavin Wood's avatar
Gavin Wood committed
310
	// Six sessions in an era (24 hours).
311
	pub const SessionsPerEra: SessionIndex = 6;
Gavin Wood's avatar
Gavin Wood committed
312
	// 28 eras for unbonding (28 days).
Gavin Wood's avatar
Gavin Wood committed
313
314
	pub const BondingDuration: staking::EraIndex = 28;
	pub const SlashDeferDuration: staking::EraIndex = 28;
thiolliere's avatar
thiolliere committed
315
	pub const RewardCurve: &'static PiecewiseLinear<'static> = &REWARD_CURVE;
Gavin Wood's avatar
Gavin Wood committed
316
	pub const MaxNominatorRewardedPerValidator: u32 = 64;
317
	// quarter of the last session will be for election.
Gavin Wood's avatar
Gavin Wood committed
318
	pub const ElectionLookahead: BlockNumber = EPOCH_DURATION_IN_BLOCKS / 16;
319
320
	pub const MaxIterations: u32 = 10;
	pub MinSolutionScoreBump: Perbill = Perbill::from_rational_approximation(5u32, 10_000);
321
}
322

Gavin Wood's avatar
Gavin Wood committed
323
324
325
326
327
328
type SlashCancelOrigin = EnsureOneOf<
	AccountId,
	EnsureRoot<AccountId>,
	collective::EnsureProportionAtLeast<_3, _4, AccountId, CouncilCollective>
>;

329
impl staking::Trait for Runtime {
Gavin Wood's avatar
Gavin Wood committed
330
	type Currency = Balances;
331
	type UnixTime = Timestamp;
332
	type CurrencyToVote = CurrencyToVoteHandler<Self>;
Gavin Wood's avatar
Gavin Wood committed
333
	type RewardRemainder = Treasury;
Gav's avatar
Gav committed
334
	type Event = Event;
335
	type Slash = Treasury;
336
	type Reward = ();
337
338
	type SessionsPerEra = SessionsPerEra;
	type BondingDuration = BondingDuration;
Gavin Wood's avatar
Gavin Wood committed
339
340
	type SlashDeferDuration = SlashDeferDuration;
	// A super-majority of the council can cancel the slash.
Gavin Wood's avatar
Gavin Wood committed
341
	type SlashCancelOrigin = SlashCancelOrigin;
342
	type SessionInterface = Self;
thiolliere's avatar
thiolliere committed
343
	type RewardCurve = RewardCurve;
Gavin Wood's avatar
Gavin Wood committed
344
	type MaxNominatorRewardedPerValidator = MaxNominatorRewardedPerValidator;
345
346
347
	type NextNewSession = Session;
	type ElectionLookahead = ElectionLookahead;
	type Call = Call;
348
	type UnsignedPriority = StakingUnsignedPriority;
349
	type MaxIterations = MaxIterations;
350
	type MinSolutionScoreBump = MinSolutionScoreBump;
351
352
}

Gavin Wood's avatar
Gavin Wood committed
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
parameter_types! {
	// Minimum 4 CENTS/byte
	pub const BasicDeposit: Balance = deposit(1, 258);
	pub const FieldDeposit: Balance = deposit(0, 66);
	pub const SubAccountDeposit: Balance = deposit(1, 53);
	pub const MaxSubAccounts: u32 = 100;
	pub const MaxAdditionalFields: u32 = 100;
	pub const MaxRegistrars: u32 = 20;
}

impl identity::Trait for Runtime {
	type Event = Event;
	type Currency = Balances;
	type BasicDeposit = BasicDeposit;
	type FieldDeposit = FieldDeposit;
	type SubAccountDeposit = SubAccountDeposit;
	type MaxSubAccounts = MaxSubAccounts;
	type MaxAdditionalFields = MaxAdditionalFields;
	type MaxRegistrars = MaxRegistrars;
	type Slashed = Treasury;
Gavin Wood's avatar
Gavin Wood committed
373
374
	type ForceOrigin = MoreThanHalfCouncil;
	type RegistrarOrigin = MoreThanHalfCouncil;
Gavin Wood's avatar
Gavin Wood committed
375
376
}

377
parameter_types! {
378
379
	pub const LaunchPeriod: BlockNumber = 28 * DAYS;
	pub const VotingPeriod: BlockNumber = 28 * DAYS;
380
	pub const FastTrackVotingPeriod: BlockNumber = 3 * HOURS;
381
	pub const MinimumDeposit: Balance = 100 * DOLLARS;
382
383
	pub const EnactmentPeriod: BlockNumber = 8 * DAYS;
	pub const CooloffPeriod: BlockNumber = 7 * DAYS;
Gavin Wood's avatar
Gavin Wood committed
384
385
	// One cent: $10,000 / MB
	pub const PreimageByteDeposit: Balance = 1 * CENTS;
Gavin Wood's avatar
Gavin Wood committed
386
	pub const InstantAllowed: bool = true;
387
	pub const MaxVotes: u32 = 100;
388
389
}

390
391
392
impl democracy::Trait for Runtime {
	type Proposal = Call;
	type Event = Event;
393
	type Currency = Balances;
394
395
396
397
	type EnactmentPeriod = EnactmentPeriod;
	type LaunchPeriod = LaunchPeriod;
	type VotingPeriod = VotingPeriod;
	type MinimumDeposit = MinimumDeposit;
398
399
	/// A straight majority of the council can decide what their next motion is.
	type ExternalOrigin = collective::EnsureProportionAtLeast<_1, _2, AccountId, CouncilCollective>;
400
401
	/// A 60% super-majority can have the next scheduled referendum be a straight majority-carries vote.
	type ExternalMajorityOrigin = collective::EnsureProportionAtLeast<_3, _5, AccountId, CouncilCollective>;
402
403
404
405
406
407
	/// A unanimous council can have the next scheduled referendum be a straight default-carries
	/// (NTB) vote.
	type ExternalDefaultOrigin = collective::EnsureProportionAtLeast<_1, _1, AccountId, CouncilCollective>;
	/// Two thirds of the technical committee can have an ExternalMajority/ExternalDefault vote
	/// be tabled immediately and with a shorter voting/enactment period.
	type FastTrackOrigin = collective::EnsureProportionAtLeast<_2, _3, AccountId, TechnicalCollective>;
408
409
410
	type InstantOrigin = collective::EnsureProportionAtLeast<_1, _1, AccountId, TechnicalCollective>;
	type InstantAllowed = InstantAllowed;
	type FastTrackVotingPeriod = FastTrackVotingPeriod;
411
412
413
414
415
	// To cancel a proposal which has been passed, 2/3 of the council must agree to it.
	type CancellationOrigin = collective::EnsureProportionAtLeast<_2, _3, AccountId, CouncilCollective>;
	// 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.
	type VetoOrigin = collective::EnsureMember<AccountId, TechnicalCollective>;
416
	type CooloffPeriod = CooloffPeriod;
Gavin Wood's avatar
Gavin Wood committed
417
	type PreimageByteDeposit = PreimageByteDeposit;
Gavin Wood's avatar
Gavin Wood committed
418
	type OperationalPreimageOrigin = collective::EnsureMember<AccountId, CouncilCollective>;
Gavin Wood's avatar
Gavin Wood committed
419
	type Slash = Treasury;
Gavin Wood's avatar
Gavin Wood committed
420
	type Scheduler = Scheduler;
421
	type MaxVotes = MaxVotes;
422
}
423

424
425
parameter_types! {
	pub const CouncilMotionDuration: BlockNumber = 7 * DAYS;
426
	pub const CouncilMaxProposals: u32 = 100;
427
428
}

429
430
type CouncilCollective = collective::Instance1;
impl collective::Trait<CouncilCollective> for Runtime {
431
432
433
	type Origin = Origin;
	type Proposal = Call;
	type Event = Event;
434
	type MotionDuration = CouncilMotionDuration;
435
	type MaxProposals = CouncilMaxProposals;
436
437
}

Gavin Wood's avatar
Gavin Wood committed
438
parameter_types! {
439
440
	pub const CandidacyBond: Balance = 100 * DOLLARS;
	pub const VotingBond: Balance = 5 * DOLLARS;
441
442
443
	/// Weekly council elections initially, later monthly.
	pub const TermDuration: BlockNumber = 7 * DAYS;
	/// 13 members initially, to be increased to 23 eventually.
444
	pub const DesiredMembers: u32 = 13;
445
	pub const DesiredRunnersUp: u32 = 20;
446
	pub const ElectionsPhragmenModuleId: LockIdentifier = *b"phrelect";
447
}
448
// Make sure that there are no more than MAX_MEMBERS members elected via phragmen.
449
const_assert!(DesiredMembers::get() <= collective::MAX_MEMBERS);
450
451

impl elections_phragmen::Trait for Runtime {
452
	type Event = Event;
Gavin Wood's avatar
Gavin Wood committed
453
	type ModuleId = ElectionsPhragmenModuleId;
454
455
	type Currency = Balances;
	type ChangeMembers = Council;
456
	type InitializeMembers = Council;
457
	type CurrencyToVote = CurrencyToVoteHandler<Self>;
Gavin Wood's avatar
Gavin Wood committed
458
459
	type CandidacyBond = CandidacyBond;
	type VotingBond = VotingBond;
460
461
462
	type LoserCandidate = Treasury;
	type BadReport = Treasury;
	type KickedMember = Treasury;
Gavin Wood's avatar
Gavin Wood committed
463
464
465
	type DesiredMembers = DesiredMembers;
	type DesiredRunnersUp = DesiredRunnersUp;
	type TermDuration = TermDuration;
466
467
}

468
469
parameter_types! {
	pub const TechnicalMotionDuration: BlockNumber = 7 * DAYS;
470
	pub const TechnicalMaxProposals: u32 = 100;
471
472
}

473
474
type TechnicalCollective = collective::Instance2;
impl collective::Trait<TechnicalCollective> for Runtime {
475
476
477
	type Origin = Origin;
	type Proposal = Call;
	type Event = Event;
478
	type MotionDuration = TechnicalMotionDuration;
479
	type MaxProposals = TechnicalMaxProposals;
480
481
}

482
483
impl membership::Trait<membership::Instance1> for Runtime {
	type Event = Event;
Gavin Wood's avatar
Gavin Wood committed
484
485
486
487
488
	type AddOrigin = MoreThanHalfCouncil;
	type RemoveOrigin = MoreThanHalfCouncil;
	type SwapOrigin = MoreThanHalfCouncil;
	type ResetOrigin = MoreThanHalfCouncil;
	type PrimeOrigin = MoreThanHalfCouncil;
489
490
491
492
	type MembershipInitialized = TechnicalCommittee;
	type MembershipChanged = TechnicalCommittee;
}

Gavin Wood's avatar
Gavin Wood committed
493
494
parameter_types! {
	pub const ProposalBond: Permill = Permill::from_percent(5);
495
496
497
	pub const ProposalBondMinimum: Balance = 100 * DOLLARS;
	pub const SpendPeriod: BlockNumber = 24 * DAYS;
	pub const Burn: Permill = Permill::from_percent(1);
498
	pub const TreasuryModuleId: ModuleId = ModuleId(*b"py/trsry");
Gavin Wood's avatar
Gavin Wood committed
499
500
501
502
503

	pub const TipCountdown: BlockNumber = 1 * DAYS;
	pub const TipFindersFee: Percent = Percent::from_percent(20);
	pub const TipReportDepositBase: Balance = 1 * DOLLARS;
	pub const TipReportDepositPerByte: Balance = 1 * CENTS;
Gavin Wood's avatar
Gavin Wood committed
504
505
}

Gavin Wood's avatar
Gavin Wood committed
506
507
508
type ApproveOrigin = EnsureOneOf<
	AccountId,
	EnsureRoot<AccountId>,
Shawn Tabrizi's avatar
Shawn Tabrizi committed
509
	collective::EnsureProportionAtLeast<_3, _5, AccountId, CouncilCollective>
Gavin Wood's avatar
Gavin Wood committed
510
511
>;

512
impl treasury::Trait for Runtime {
Gavin Wood's avatar
Gavin Wood committed
513
	type ModuleId = TreasuryModuleId;
Gavin Wood's avatar
Gavin Wood committed
514
	type Currency = Balances;
Gavin Wood's avatar
Gavin Wood committed
515
516
	type ApproveOrigin = ApproveOrigin;
	type RejectOrigin = MoreThanHalfCouncil;
Gavin Wood's avatar
Gavin Wood committed
517
518
519
520
521
	type Tippers = ElectionsPhragmen;
	type TipCountdown = TipCountdown;
	type TipFindersFee = TipFindersFee;
	type TipReportDepositBase = TipReportDepositBase;
	type TipReportDepositPerByte = TipReportDepositPerByte;
522
	type Event = Event;
523
	type ProposalRejection = Treasury;
Gavin Wood's avatar
Gavin Wood committed
524
525
526
527
	type ProposalBond = ProposalBond;
	type ProposalBondMinimum = ProposalBondMinimum;
	type SpendPeriod = SpendPeriod;
	type Burn = Burn;
528
}
529

530
parameter_types! {
531
	pub OffencesWeightSoftLimit: Weight = Perbill::from_percent(60) * MaximumBlockWeight::get();
532
533
}

534
535
536
537
impl offences::Trait for Runtime {
	type Event = Event;
	type IdentificationTuple = session::historical::IdentificationTuple<Self>;
	type OnOffenceHandler = Staking;
538
	type WeightSoftLimit = OffencesWeightSoftLimit;
539
540
}

Gavin Wood's avatar
Gavin Wood committed
541
542
impl authority_discovery::Trait for Runtime {}

543
544
545
546
parameter_types! {
	pub const SessionDuration: BlockNumber = EPOCH_DURATION_IN_BLOCKS as _;
}

547
548
549
550
551
parameter_types! {
	pub const StakingUnsignedPriority: TransactionPriority = TransactionPriority::max_value() / 2;
	pub const ImOnlineUnsignedPriority: TransactionPriority = TransactionPriority::max_value();
}

552
impl im_online::Trait for Runtime {
thiolliere's avatar
thiolliere committed
553
	type AuthorityId = ImOnlineId;
554
	type Event = Event;
555
	type SessionDuration = SessionDuration;
Gavin Wood's avatar
Gavin Wood committed
556
	type ReportUnresponsiveness = Offences;
557
	type UnsignedPriority = ImOnlineUnsignedPriority;
558
559
}

560
561
impl grandpa::Trait for Runtime {
	type Event = Event;
562
563
564
565
566
567
568
569
570
571
	type Call = Call;

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

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

Gavin Wood's avatar
Gavin Wood committed
572
573
	type KeyOwnerProofSystem = Historical;

574
575
576
577
578
579
	type HandleEquivocation = grandpa::EquivocationHandler<
		Self::KeyOwnerIdentification,
		primitives::fisherman::FishermanAppCrypto,
		Runtime,
		Offences,
	>;
580
581
}

Gavin Wood's avatar
Gavin Wood committed
582
parameter_types! {
583
584
	pub WindowSize: BlockNumber = finality_tracker::DEFAULT_WINDOW_SIZE.into();
	pub ReportLatency: BlockNumber = finality_tracker::DEFAULT_REPORT_LATENCY.into();
Gavin Wood's avatar
Gavin Wood committed
585
586
587
}

impl finality_tracker::Trait for Runtime {
588
	type OnFinalizationStalled = ();
Gavin Wood's avatar
Gavin Wood committed
589
590
591
592
	type WindowSize = WindowSize;
	type ReportLatency = ReportLatency;
}

593
594
595
596
parameter_types! {
	pub const AttestationPeriod: BlockNumber = 50;
}

597
598
599
impl attestations::Trait for Runtime {
	type AttestationPeriod = AttestationPeriod;
	type ValidatorIdentities = parachains::ValidatorIdentities<Runtime>;
600
	type RewardAttestation = Staking;
601
602
}

603
604
605
parameter_types! {
	pub const MaxCodeSize: u32 = 10 * 1024 * 1024; // 10 MB
	pub const MaxHeadDataSize: u32 = 20 * 1024; // 20 KB
606
607
608
609

	pub const ValidationUpgradeFrequency: BlockNumber = 7 * DAYS;
	pub const ValidationUpgradeDelay: BlockNumber = 1 * DAYS;
	pub const SlashPeriod: BlockNumber = 28 * DAYS;
610
611
}

612
impl parachains::Trait for Runtime {
613
	type AuthorityId = primitives::fisherman::FishermanAppCrypto;
614
615
	type Origin = Origin;
	type Call = Call;
616
	type ParachainCurrency = Balances;
617
	type BlockNumberConversion = sp_runtime::traits::Identity;
618
	type Randomness = RandomnessCollectiveFlip;
619
620
	type ActiveParachains = Registrar;
	type Registrar = Registrar;
621
622
	type MaxCodeSize = MaxCodeSize;
	type MaxHeadDataSize = MaxHeadDataSize;
623
624
625
626
627

	type ValidationUpgradeFrequency = ValidationUpgradeFrequency;
	type ValidationUpgradeDelay = ValidationUpgradeDelay;
	type SlashPeriod = SlashPeriod;

628
	type Proof = sp_session::MembershipProof;
629
630
631
	type KeyOwnerProofSystem = session::historical::Module<Self>;
	type IdentificationTuple = <Self::KeyOwnerProofSystem as KeyOwnerProofSystem<(KeyTypeId, Vec<u8>)>>::IdentificationTuple;
	type ReportOffence = Offences;
632
	type BlockHashConversion = sp_runtime::traits::Identity;
633
634
}

635
636
/// Submits a transaction with the node's public and signature type. Adheres to the signed extension
/// format of the chain.
637
638
639
640
641
642
643
impl<LocalCall> system::offchain::CreateSignedTransaction<LocalCall> for Runtime where
	Call: From<LocalCall>,
{
	fn create_transaction<C: system::offchain::AppCrypto<Self::Public, Self::Signature>>(
		call: Call,
		public: <Signature as Verify>::Signer,
		account: AccountId,
644
645
		nonce: <Runtime as system::Trait>::Index,
	) -> Option<(Call, <UncheckedExtrinsic as ExtrinsicT>::SignaturePayload)> {
646
		// take the biggest period possible.
647
648
649
650
651
652
653
		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>()
654
655
			// The `System::block_number` is initialized with `n+1`,
			// so the actual block number is `n`.
656
657
658
			.saturating_sub(1);
		let tip = 0;
		let extra: SignedExtra = (
Gavin Wood's avatar
Gavin Wood committed
659
			TransactionCallFilter::<IsCallable, Call>::new(),
660
661
			system::CheckSpecVersion::<Runtime>::new(),
			system::CheckTxVersion::<Runtime>::new(),
662
663
664
665
666
667
668
			system::CheckGenesis::<Runtime>::new(),
			system::CheckEra::<Runtime>::from(generic::Era::mortal(period, current_block)),
			system::CheckNonce::<Runtime>::from(nonce),
			system::CheckWeight::<Runtime>::new(),
			transaction_payment::ChargeTransactionPayment::<Runtime>::from(tip),
			registrar::LimitParathreadCommits::<Runtime>::new(),
			parachains::ValidateDoubleVoteReports::<Runtime>::new(),
669
			grandpa::ValidateEquivocationReport::<Runtime>::new(),
670
			claims::PrevalidateAttests::<Runtime>::new(),
671
672
		);
		let raw_payload = SignedPayload::new(call, extra).map_err(|e| {
673
			debug::warn!("Unable to create signed payload: {:?}", e);
674
		}).ok()?;
675
676
677
		let signature = raw_payload.using_encoded(|payload| {
			C::sign(payload, public)
		})?;
678
679
680
		let (call, extra, _) = raw_payload.deconstruct();
		Some((call, (account, signature, extra)))
	}
681
682
}

683
684
685
686
687
impl system::offchain::SigningTypes for Runtime {
	type Public = <Signature as Verify>::Signer;
	type Signature = Signature;
}

Gavin Wood's avatar
Gavin Wood committed
688
impl<C> system::offchain::SendTransactionTypes<C> for Runtime where Call: From<C> {
689
	type Extrinsic = UncheckedExtrinsic;
Gavin Wood's avatar
Gavin Wood committed
690
	type OverarchingCall = Call;
691
692
}

693
694
695
696
697
698
699
700
701
702
703
704
705
706
parameter_types! {
	pub const ParathreadDeposit: Balance = 500 * DOLLARS;
	pub const QueueSize: usize = 2;
	pub const MaxRetries: u32 = 3;
}

impl registrar::Trait for Runtime {
	type Event = Event;
	type Origin = Origin;
	type Currency = Balances;
	type ParathreadDeposit = ParathreadDeposit;
	type SwapAux = Slots;
	type QueueSize = QueueSize;
	type MaxRetries = MaxRetries;
707
}
708

Gavin Wood's avatar
Gavin Wood committed
709
parameter_types! {
710
	pub const LeasePeriod: BlockNumber = 100_000;
Gavin Wood's avatar
Gavin Wood committed
711
712
713
714
715
	pub const EndingPeriod: BlockNumber = 1000;
}

impl slots::Trait for Runtime {
	type Event = Event;
716
717
	type Currency = Balances;
	type Parachains = Registrar;
Gavin Wood's avatar
Gavin Wood committed
718
	type EndingPeriod = EndingPeriod;
Gavin Wood's avatar
Gavin Wood committed
719
	type LeasePeriod = LeasePeriod;
720
	type Randomness = RandomnessCollectiveFlip;
Gavin Wood's avatar
Gavin Wood committed
721
722
}

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

impl claims::Trait for Runtime {
	type Event = Event;
Gavin Wood's avatar
Gavin Wood committed
729
	type VestingSchedule = Vesting;
730
	type Prefix = Prefix;
731
732
	/// At least 3/4 of the council must agree to a claim move before it can happen.
	type MoveClaimOrigin = collective::EnsureProportionAtLeast<_3, _4, AccountId, CouncilCollective>;
733
734
}

735
736
737
738
parameter_types! {
	pub const MinVestedTransfer: Balance = 100 * DOLLARS;
}

Gavin Wood's avatar
Gavin Wood committed
739
740
741
742
impl vesting::Trait for Runtime {
	type Event = Event;
	type Currency = Balances;
	type BlockNumberToBalance = ConvertInto;
743
	type MinVestedTransfer = MinVestedTransfer;
Gavin Wood's avatar
Gavin Wood committed
744
745
}

746
747
748
749
750
751
impl utility::Trait for Runtime {
	type Event = Event;
	type Call = Call;
	type IsCallable = IsCallable;
}

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 multisig::Trait 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
767
768
769
	type MaxSignatories = MaxSignatories;
	type IsCallable = IsCallable;
}

770
771
impl sudo::Trait for Runtime {
	type Event = Event;
772
	type Call = Call;
773
774
}

775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
parameter_types! {
	// One storage item; key size 32, value size 8; .
	pub const ProxyDepositBase: Balance = deposit(1, 8);
	// Additional storage item size of 33 bytes.
	pub const ProxyDepositFactor: Balance = deposit(0, 33);
	pub const MaxProxies: u16 = 32;
}

/// The type used to represent the kinds of proxying allowed.
#[derive(Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Encode, Decode, RuntimeDebug)]
pub enum ProxyType {
	Any,
	NonTransfer,
	Governance,
	Staking,
790
	SudoBalances,
791
792
793
794
795
796
797
}
impl Default for ProxyType { fn default() -> Self { Self::Any } }
impl InstanceFilter<Call> for ProxyType {
	fn filter(&self, c: &Call) -> bool {
		match self {
			ProxyType::Any => true,
			ProxyType::NonTransfer => !matches!(c,
798
				Call::Balances(..) | Call::Vesting(vesting::Call::vested_transfer(..))
799
800
801
802
803
					| Call::Indices(indices::Call::transfer(..))
			),
			ProxyType::Governance => matches!(c,
				Call::Democracy(..) | Call::Council(..) | Call::TechnicalCommittee(..)
					| Call::ElectionsPhragmen(..) | Call::Treasury(..)
804
805
806
807
808
809
810
					| Call::Utility(utility::Call::batch(..))
					| Call::Utility(utility::Call::as_limited_sub(..))
			),
			ProxyType::Staking => matches!(c,
				Call::Staking(..) | Call::Utility(utility::Call::batch(..))
					| Call::Utility(utility::Call::as_limited_sub(..))
			),
811
812
813
814
815
			ProxyType::SudoBalances => match c {
				Call::Sudo(sudo::Call::sudo(ref x)) => matches!(x.as_ref(), &Call::Balances(..)),
				Call::Utility(utility::Call::batch(..)) => true,
				_ => false,
			},
816
817
818
819
820
821
822
823
824
		}
	}
	fn is_superset(&self, o: &Self) -> bool {
		match (self, o) {
			(x, y) if x == y => true,
			(ProxyType::Any, _) => true,
			(_, ProxyType::Any) => false,
			(ProxyType::NonTransfer, _) => true,
			_ => false,
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
		}
	}
}

impl proxy::Trait for Runtime {
	type Event = Event;
	type Call = Call;
	type Currency = Balances;
	type IsCallable = IsCallable;
	type ProxyType = ProxyType;
	type ProxyDepositBase = ProxyDepositBase;
	type ProxyDepositFactor = ProxyDepositFactor;
	type MaxProxies = MaxProxies;
}

Gavin Wood's avatar
Gavin Wood committed
840
construct_runtime! {
841
	pub enum Runtime where
842
		Block = Block,
843
		NodeBlock = primitives::Block,
844
		UncheckedExtrinsic = UncheckedExtrinsic
845
	{
846
		// Basic stuff; balances is uncallable initially.
Gavin Wood's avatar
Gavin Wood committed
847
		System: system::{Module, Call, Storage, Config, Event<T>},
Ashley's avatar
Ashley committed
848
		RandomnessCollectiveFlip: randomness_collective_flip::{Module, Storage},
Gavin Wood's avatar
Gavin Wood committed
849
		Scheduler: scheduler::{Module, Call, Storage, Event<T>},
850
851

		// Must be before session.
852
		Babe: babe::{Module, Call, Storage, Config, Inherent(Timestamp)},
853
854

		Timestamp: timestamp::{Module, Call, Storage, Inherent},
855
		Indices: indices::{Module, Call, Storage, Config<T>, Event<T>},
856
		Balances: balances::{Module, Call, Storage, Config<T>, Event<T>},
857
		TransactionPayment: transaction_payment::{Module, Storage},
858
859
860

		// Consensus support.
		Authorship: authorship::{Module, Call, Storage},
Kian Paimani's avatar
Kian Paimani committed
861
		Staking: staking::{Module, Call, Storage, Config<T>, Event<T>, ValidateUnsigned},
862
		Offences: offences::{Module, Call, Storage, Event},
863
		Historical: session_historical::{Module},
864
		Session: session::{Module, Call, Storage, Event, Config<T>},
865
		FinalityTracker: finality_tracker::{Module, Call, Storage, Inherent},
866
		Grandpa: grandpa::{Module, Call, Storage, Config, Event},
thiolliere's avatar
thiolliere committed
867
		ImOnline: im_online::{Module, Call, Storage, Event<T>, ValidateUnsigned, Config<T>},
Gavin Wood's avatar
Gavin Wood committed
868
		AuthorityDiscovery: authority_discovery::{Module, Call, Config},
869

Gavin Wood's avatar
Gavin Wood committed
870
871
		// Governance stuff; uncallable initially. Calls should be uncommented once we're ready to
		// enable governance.
Gavin Wood's avatar
Gavin Wood committed
872
		Democracy: democracy::{Module, Call, Storage, Config, Event<T>},
873
874
		Council: collective::<Instance1>::{Module, Call, Storage, Origin<T>, Event<T>, Config<T>},
		TechnicalCommittee: collective::<Instance2>::{Module, Call, Storage, Origin<T>, Event<T>, Config<T>},
875
		ElectionsPhragmen: elections_phragmen::{Module, Call, Storage, Event<T>, Config<T>},
876
		TechnicalMembership: membership::<Instance1>::{Module, Call, Storage, Event<T>, Config<T>},
Gavin Wood's avatar
Gavin Wood committed
877
		Treasury: