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

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

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

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

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

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

23
use sp_std::prelude::*;
24
use sp_core::u32_trait::{_1, _2, _3, _4, _5};
25
use codec::{Encode, Decode};
26
use primitives::{
27
	AccountId, AccountIndex, Balance, BlockNumber, Hash, Nonce, Signature, Moment,
28
	parachain::{self, ActiveParas, AbridgedCandidateReceipt, SigningContext}, ValidityError,
29
};
30
use runtime_common::{attestations, claims, parachains, registrar, slots,
31
	impls::{CurrencyToVoteHandler, TargetedFeeAdjustment, ToAuthor},
32
	NegativeImbalance, BlockHashCount, MaximumBlockWeight, AvailableBlockRatio,
33
	MaximumBlockLength, BlockExecutionWeight, ExtrinsicBaseWeight, RocksDbWeight,
34
};
35
use sp_runtime::{
36
	create_runtime_str, generic, impl_opaque_keys, ModuleId,
37
	ApplyExtrinsicResult, KeyTypeId, Percent, Permill, Perbill, Perquintill, RuntimeDebug,
38
	transaction_validity::{
39
		TransactionValidity, InvalidTransaction, TransactionValidityError, TransactionSource, TransactionPriority,
40
	},
41
	curve::PiecewiseLinear,
42
43
	traits::{
		BlakeTwo256, Block as BlockT, SignedExtension, OpaqueKeys, ConvertInto, IdentityLookup,
44
		DispatchInfoOf, Extrinsic as ExtrinsicT, SaturatedConversion, Verify,
45
	},
Gav Wood's avatar
Gav Wood committed
46
};
47
48
#[cfg(feature = "runtime-benchmarks")]
use sp_runtime::RuntimeString;
Arkadiy Paronyan's avatar
Arkadiy Paronyan committed
49
use version::RuntimeVersion;
50
use grandpa::{AuthorityId as GrandpaId, fg_primitives};
51
52
#[cfg(any(feature = "std", test))]
use version::NativeVersion;
53
54
use sp_core::OpaqueMetadata;
use sp_staking::SessionIndex;
55
use frame_support::{
56
	parameter_types, construct_runtime, debug,
57
	traits::{KeyOwnerProofSystem, SplitTwoWays, Randomness, LockIdentifier},
Gavin Wood's avatar
Gavin Wood committed
58
};
thiolliere's avatar
thiolliere committed
59
use im_online::sr25519::AuthorityId as ImOnlineId;
Gavin Wood's avatar
Gavin Wood committed
60
use authority_discovery_primitives::AuthorityId as AuthorityDiscoveryId;
Gavin Wood's avatar
Gavin Wood committed
61
use transaction_payment_rpc_runtime_api::RuntimeDispatchInfo;
62
use session::{historical as session_historical};
63
use static_assertions::const_assert;
64

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

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

78
79
80
81
// Make the WASM binary available.
#[cfg(feature = "std")]
include!(concat!(env!("OUT_DIR"), "/wasm_binary.rs"));

82
83
84
85
/// Runtime version (Kusama).
pub const VERSION: RuntimeVersion = RuntimeVersion {
	spec_name: create_runtime_str!("kusama"),
	impl_name: create_runtime_str!("parity-kusama"),
86
	authoring_version: 2,
87
	spec_version: 1064,
88
	impl_version: 0,
89
	apis: RUNTIME_API_VERSIONS,
90
	transaction_version: 1,
91
};
Arkadiy Paronyan's avatar
Arkadiy Paronyan committed
92

93
94
95
96
97
98
99
100
101
/// Native version.
#[cfg(any(feature = "std", test))]
pub fn native_version() -> NativeVersion {
	NativeVersion {
		runtime_version: VERSION,
		can_author_with: Default::default(),
	}
}

102
/// Avoid processing transactions from slots and parachain registrar.
103
#[derive(Default, Encode, Decode, Clone, Eq, PartialEq, RuntimeDebug)]
104
105
pub struct RestrictFunctionality;
impl SignedExtension for RestrictFunctionality {
Gavin Wood's avatar
Gavin Wood committed
106
	const IDENTIFIER: &'static str = "RestrictFunctionality";
107
108
109
110
	type AccountId = AccountId;
	type Call = Call;
	type AdditionalSigned = ();
	type Pre = ();
111

112
	fn additional_signed(&self) -> sp_std::result::Result<(), TransactionValidityError> { Ok(()) }
113

114
115
116
117
118
119
120
	fn validate(
		&self,
		_: &Self::AccountId,
		call: &Self::Call,
		_: &DispatchInfoOf<Self::Call>,
		_: usize
	)
Gavin Wood's avatar
Gavin Wood committed
121
		-> TransactionValidity
122
123
	{
		match call {
Gavin Wood's avatar
Gavin Wood committed
124
			Call::Slots(_) | Call::Registrar(_)
125
126
				=> Err(InvalidTransaction::Custom(ValidityError::NoPermission.into()).into()),
			_ => Ok(Default::default()),
127
128
129
130
		}
	}
}

131
parameter_types! {
132
	pub const Version: RuntimeVersion = VERSION;
133
134
}

135
136
impl system::Trait for Runtime {
	type Origin = Origin;
137
	type Call = Call;
Gav Wood's avatar
Gav Wood committed
138
	type Index = Nonce;
139
140
141
142
	type BlockNumber = BlockNumber;
	type Hash = Hash;
	type Hashing = BlakeTwo256;
	type AccountId = AccountId;
143
	type Lookup = IdentityLookup<Self::AccountId>;
144
	type Header = generic::Header<BlockNumber, BlakeTwo256>;
Gav's avatar
Gav committed
145
	type Event = Event;
146
	type BlockHashCount = BlockHashCount;
147
	type MaximumBlockWeight = MaximumBlockWeight;
148
	type DbWeight = RocksDbWeight;
149
150
	type BlockExecutionWeight = BlockExecutionWeight;
	type ExtrinsicBaseWeight = ExtrinsicBaseWeight;
151
152
	type MaximumBlockLength = MaximumBlockLength;
	type AvailableBlockRatio = AvailableBlockRatio;
153
	type Version = Version;
154
	type ModuleToIndex = ModuleToIndex;
155
156
	type AccountData = balances::AccountData<Balance>;
	type OnNewAccount = ();
157
	type OnKilledAccount = ();
158
159
}

Gavin Wood's avatar
Gavin Wood committed
160
161
162
163
164
165
166
impl scheduler::Trait for Runtime {
	type Event = Event;
	type Origin = Origin;
	type Call = Call;
	type MaximumWeight = MaximumBlockWeight;
}

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

impl babe::Trait for Runtime {
	type EpochDuration = EpochDuration;
	type ExpectedBlockTime = ExpectedBlockTime;
175
176
177

	// session module is the trigger
	type EpochChangeTrigger = babe::ExternalTrigger;
178
179
}

Gavin Wood's avatar
Gavin Wood committed
180
181
182
183
parameter_types! {
	pub const IndexDeposit: Balance = 1 * DOLLARS;
}

Gav Wood's avatar
Gav Wood committed
184
185
impl indices::Trait for Runtime {
	type AccountIndex = AccountIndex;
186
187
	type Currency = Balances;
	type Deposit = IndexDeposit;
Gav Wood's avatar
Gav Wood committed
188
189
190
	type Event = Event;
}

Gavin Wood's avatar
Gavin Wood committed
191
parameter_types! {
Gavin Wood's avatar
Gavin Wood committed
192
	pub const ExistentialDeposit: Balance = 1 * CENTS;
Gavin Wood's avatar
Gavin Wood committed
193
194
195
196
197
}

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

203
impl balances::Trait for Runtime {
Gav's avatar
Gav committed
204
	type Balance = Balance;
205
	type DustRemoval = ();
Gavin Wood's avatar
Gavin Wood committed
206
	type Event = Event;
Gavin Wood's avatar
Gavin Wood committed
207
	type ExistentialDeposit = ExistentialDeposit;
208
	type AccountStore = System;
209
210
211
212
}

parameter_types! {
	pub const TransactionByteFee: Balance = 10 * MILLICENTS;
213
	// for a sane configuration, this should always be less than `AvailableBlockRatio`.
214
	pub const TargetBlockFullness: Perquintill = Perquintill::from_percent(25);
215
216
217
218
219
}

impl transaction_payment::Trait for Runtime {
	type Currency = Balances;
	type OnTransactionPayment = DealWithFees;
Gavin Wood's avatar
Gavin Wood committed
220
	type TransactionByteFee = TransactionByteFee;
221
	type WeightToFee = WeightToFee;
222
	type FeeMultiplierUpdate = TargetedFeeAdjustment<TargetBlockFullness, Self>;
Gav's avatar
Gav committed
223
224
}

225
parameter_types! {
226
	pub const MinimumPeriod: u64 = SLOT_DURATION / 2;
227
}
228
impl timestamp::Trait for Runtime {
229
	type Moment = u64;
230
	type OnTimestampSet = Babe;
231
	type MinimumPeriod = MinimumPeriod;
232
233
}

Gavin Wood's avatar
Gavin Wood committed
234
parameter_types! {
235
	pub const UncleGenerations: u32 = 0;
Gavin Wood's avatar
Gavin Wood committed
236
237
238
239
}

// TODO: substrate#2986 implement this properly
impl authorship::Trait for Runtime {
240
	type FindAuthor = session::FindAccountFromAuthorIndex<Self, Babe>;
Gavin Wood's avatar
Gavin Wood committed
241
242
	type UncleGenerations = UncleGenerations;
	type FilterUncle = ();
Gavin Wood's avatar
Gavin Wood committed
243
	type EventHandler = (Staking, ImOnline);
Gavin Wood's avatar
Gavin Wood committed
244
245
}

246
247
248
249
250
251
parameter_types! {
	pub const Period: BlockNumber = 10 * MINUTES;
	pub const Offset: BlockNumber = 0;
}

impl_opaque_keys! {
252
	pub struct SessionKeys {
Gavin Wood's avatar
Gavin Wood committed
253
254
255
256
		pub grandpa: Grandpa,
		pub babe: Babe,
		pub im_online: ImOnline,
		pub parachain_validator: Parachains,
Gavin Wood's avatar
Gavin Wood committed
257
		pub authority_discovery: AuthorityDiscovery,
258
	}
259
260
}

thiolliere's avatar
thiolliere committed
261
262
263
264
parameter_types! {
	pub const DisabledValidatorsThreshold: Perbill = Perbill::from_percent(17);
}

265
impl session::Trait for Runtime {
Gav's avatar
Gav committed
266
	type Event = Event;
267
268
	type ValidatorId = AccountId;
	type ValidatorIdOf = staking::StashOf<Self>;
Gavin Wood's avatar
Gavin Wood committed
269
	type ShouldEndSession = Babe;
270
	type NextSessionRotation = Babe;
271
	type SessionManager = session::historical::NoteHistoricalRoot<Self, Staking>;
Gavin Wood's avatar
Gavin Wood committed
272
273
	type SessionHandler = <SessionKeys as OpaqueKeys>::KeyTypeIdProviders;
	type Keys = SessionKeys;
thiolliere's avatar
thiolliere committed
274
	type DisabledValidatorsThreshold = DisabledValidatorsThreshold;
275
276
277
278
}

impl session::historical::Trait for Runtime {
	type FullIdentification = staking::Exposure<AccountId, Balance>;
279
	type FullIdentificationOf = staking::ExposureOf<Runtime>;
280
281
}

282
pallet_staking_reward_curve::build! {
thiolliere's avatar
thiolliere committed
283
284
285
286
287
288
289
290
291
292
	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,
	);
}

293
parameter_types! {
Gavin Wood's avatar
Gavin Wood committed
294
	// Six sessions in an era (6 hours).
295
	pub const SessionsPerEra: SessionIndex = 6;
Gavin Wood's avatar
Gavin Wood committed
296
	// 28 eras for unbonding (7 days).
Gavin Wood's avatar
Gavin Wood committed
297
	pub const BondingDuration: staking::EraIndex = 28;
Gavin Wood's avatar
Gavin Wood committed
298
	// 28 eras in which slashes can be cancelled (7 days).
Gavin Wood's avatar
Gavin Wood committed
299
	pub const SlashDeferDuration: staking::EraIndex = 28;
thiolliere's avatar
thiolliere committed
300
	pub const RewardCurve: &'static PiecewiseLinear<'static> = &REWARD_CURVE;
Gavin Wood's avatar
Gavin Wood committed
301
	pub const MaxNominatorRewardedPerValidator: u32 = 64;
302
303
	// quarter of the last session will be for election.
	pub const ElectionLookahead: BlockNumber = EPOCH_DURATION_IN_BLOCKS / 4;
304
	pub const MaxIterations: u32 = 5;
305
}
306

307
impl staking::Trait for Runtime {
Gavin Wood's avatar
Gavin Wood committed
308
	type Currency = Balances;
309
	type UnixTime = Timestamp;
310
	type CurrencyToVote = CurrencyToVoteHandler<Self>;
Gavin Wood's avatar
Gavin Wood committed
311
	type RewardRemainder = Treasury;
Gav's avatar
Gav committed
312
	type Event = Event;
313
	type Slash = Treasury;
314
	type Reward = ();
315
316
	type SessionsPerEra = SessionsPerEra;
	type BondingDuration = BondingDuration;
Gavin Wood's avatar
Gavin Wood committed
317
	type SlashDeferDuration = SlashDeferDuration;
Gavin Wood's avatar
Gavin Wood committed
318
319
	// A majority of the council can cancel the slash.
	type SlashCancelOrigin = collective::EnsureProportionAtLeast<_1, _2, AccountId, CouncilCollective>;
320
	type SessionInterface = Self;
thiolliere's avatar
thiolliere committed
321
	type RewardCurve = RewardCurve;
Gavin Wood's avatar
Gavin Wood committed
322
	type MaxNominatorRewardedPerValidator = MaxNominatorRewardedPerValidator;
323
324
325
	type NextNewSession = Session;
	type ElectionLookahead = ElectionLookahead;
	type Call = Call;
326
	type UnsignedPriority = StakingUnsignedPriority;
327
	type MaxIterations = MaxIterations;
328
329
}

330
parameter_types! {
331
332
	pub const LaunchPeriod: BlockNumber = 7 * DAYS;
	pub const VotingPeriod: BlockNumber = 7 * DAYS;
333
	pub const FastTrackVotingPeriod: BlockNumber = 3 * HOURS;
Gavin Wood's avatar
Gavin Wood committed
334
	pub const MinimumDeposit: Balance = 1 * DOLLARS;
335
336
	pub const EnactmentPeriod: BlockNumber = 8 * DAYS;
	pub const CooloffPeriod: BlockNumber = 7 * DAYS;
Gavin Wood's avatar
Gavin Wood committed
337
	// One cent: $10,000 / MB
Gavin Wood's avatar
Gavin Wood committed
338
	pub const PreimageByteDeposit: Balance = 10 * MILLICENTS;
339
	pub const InstantAllowed: bool = true;
340
341
}

342
343
344
impl democracy::Trait for Runtime {
	type Proposal = Call;
	type Event = Event;
345
	type Currency = Balances;
346
347
348
349
	type EnactmentPeriod = EnactmentPeriod;
	type LaunchPeriod = LaunchPeriod;
	type VotingPeriod = VotingPeriod;
	type MinimumDeposit = MinimumDeposit;
350
351
	/// A straight majority of the council can decide what their next motion is.
	type ExternalOrigin = collective::EnsureProportionAtLeast<_1, _2, AccountId, CouncilCollective>;
352
	/// A majority can have the next scheduled referendum be a straight majority-carries vote.
353
	type ExternalMajorityOrigin = collective::EnsureProportionAtLeast<_1, _2, AccountId, CouncilCollective>;
354
355
356
357
358
359
	/// 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>;
360
361
362
	type InstantOrigin = collective::EnsureProportionAtLeast<_1, _1, AccountId, TechnicalCollective>;
	type InstantAllowed = InstantAllowed;
	type FastTrackVotingPeriod = FastTrackVotingPeriod;
363
364
365
366
367
	// 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>;
368
	type CooloffPeriod = CooloffPeriod;
Gavin Wood's avatar
Gavin Wood committed
369
370
	type PreimageByteDeposit = PreimageByteDeposit;
	type Slash = Treasury;
Gavin Wood's avatar
Gavin Wood committed
371
	type Scheduler = Scheduler;
372
}
373

374
375
parameter_types! {
	pub const CouncilMotionDuration: BlockNumber = 3 * DAYS;
376
	pub const CouncilMaxProposals: u32 = 100;
377
378
}

379
380
type CouncilCollective = collective::Instance1;
impl collective::Trait<CouncilCollective> for Runtime {
381
382
383
	type Origin = Origin;
	type Proposal = Call;
	type Event = Event;
384
	type MotionDuration = CouncilMotionDuration;
385
	type MaxProposals = CouncilMaxProposals;
386
387
}

388
const DESIRED_MEMBERS: u32 = 13;
Gavin Wood's avatar
Gavin Wood committed
389
parameter_types! {
Gavin Wood's avatar
Gavin Wood committed
390
391
	pub const CandidacyBond: Balance = 1 * DOLLARS;
	pub const VotingBond: Balance = 5 * CENTS;
Gavin Wood's avatar
Gavin Wood committed
392
393
	/// Daily council elections.
	pub const TermDuration: BlockNumber = 24 * HOURS;
394
	pub const DesiredMembers: u32 = DESIRED_MEMBERS;
Kian Paimani's avatar
Kian Paimani committed
395
	pub const DesiredRunnersUp: u32 = 7;
396
	pub const ElectionsPhragmenModuleId: LockIdentifier = *b"phrelect";
397
}
398
399
// Make sure that there are no more than MAX_MEMBERS members elected via phragmen.
const_assert!(DESIRED_MEMBERS <= collective::MAX_MEMBERS);
400
401

impl elections_phragmen::Trait for Runtime {
402
	type Event = Event;
403
404
	type Currency = Balances;
	type ChangeMembers = Council;
405
	type InitializeMembers = Council;
406
	type CurrencyToVote = CurrencyToVoteHandler<Self>;
Gavin Wood's avatar
Gavin Wood committed
407
408
	type CandidacyBond = CandidacyBond;
	type VotingBond = VotingBond;
409
410
411
	type LoserCandidate = Treasury;
	type BadReport = Treasury;
	type KickedMember = Treasury;
Gavin Wood's avatar
Gavin Wood committed
412
413
414
	type DesiredMembers = DesiredMembers;
	type DesiredRunnersUp = DesiredRunnersUp;
	type TermDuration = TermDuration;
415
	type ModuleId = ElectionsPhragmenModuleId;
416
417
}

418
419
parameter_types! {
	pub const TechnicalMotionDuration: BlockNumber = 3 * DAYS;
420
	pub const TechnicalMaxProposals: u32 = 100;
421
422
}

423
424
type TechnicalCollective = collective::Instance2;
impl collective::Trait<TechnicalCollective> for Runtime {
425
426
427
	type Origin = Origin;
	type Proposal = Call;
	type Event = Event;
428
	type MotionDuration = TechnicalMotionDuration;
429
	type MaxProposals = TechnicalMaxProposals;
430
431
}

432
433
434
435
436
437
impl membership::Trait<membership::Instance1> for Runtime {
	type Event = Event;
	type AddOrigin = collective::EnsureProportionMoreThan<_1, _2, AccountId, CouncilCollective>;
	type RemoveOrigin = collective::EnsureProportionMoreThan<_1, _2, AccountId, CouncilCollective>;
	type SwapOrigin = collective::EnsureProportionMoreThan<_1, _2, AccountId, CouncilCollective>;
	type ResetOrigin = collective::EnsureProportionMoreThan<_1, _2, AccountId, CouncilCollective>;
438
	type PrimeOrigin = collective::EnsureProportionMoreThan<_1, _2, AccountId, CouncilCollective>;
439
440
441
442
	type MembershipInitialized = TechnicalCommittee;
	type MembershipChanged = TechnicalCommittee;
}

Gavin Wood's avatar
Gavin Wood committed
443
444
parameter_types! {
	pub const ProposalBond: Permill = Permill::from_percent(5);
Gavin Wood's avatar
Gavin Wood committed
445
	pub const ProposalBondMinimum: Balance = 20 * DOLLARS;
446
	pub const SpendPeriod: BlockNumber = 6 * DAYS;
Gavin Wood's avatar
Gavin Wood committed
447
	pub const Burn: Permill = Permill::from_percent(0);
448
	pub const TreasuryModuleId: ModuleId = ModuleId(*b"py/trsry");
Gavin Wood's avatar
Gavin Wood committed
449
450
451
452
453

	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
454
455
}

456
impl treasury::Trait for Runtime {
Gavin Wood's avatar
Gavin Wood committed
457
	type Currency = Balances;
458
	type ApproveOrigin = collective::EnsureProportionAtLeast<_3, _5, AccountId, CouncilCollective>;
459
	type RejectOrigin = collective::EnsureProportionMoreThan<_1, _2, AccountId, CouncilCollective>;
Gavin Wood's avatar
Gavin Wood committed
460
461
462
463
464
	type Tippers = ElectionsPhragmen;
	type TipCountdown = TipCountdown;
	type TipFindersFee = TipFindersFee;
	type TipReportDepositBase = TipReportDepositBase;
	type TipReportDepositPerByte = TipReportDepositPerByte;
465
	type Event = Event;
466
	type ProposalRejection = Treasury;
Gavin Wood's avatar
Gavin Wood committed
467
468
469
470
	type ProposalBond = ProposalBond;
	type ProposalBondMinimum = ProposalBondMinimum;
	type SpendPeriod = SpendPeriod;
	type Burn = Burn;
471
	type ModuleId = TreasuryModuleId;
472
}
473

474
475
476
477
478
479
impl offences::Trait for Runtime {
	type Event = Event;
	type IdentificationTuple = session::historical::IdentificationTuple<Self>;
	type OnOffenceHandler = Staking;
}

Gavin Wood's avatar
Gavin Wood committed
480
481
impl authority_discovery::Trait for Runtime {}

482
483
484
485
parameter_types! {
	pub const SessionDuration: BlockNumber = EPOCH_DURATION_IN_BLOCKS as _;
}

486
487
488
489
490
parameter_types! {
	pub const StakingUnsignedPriority: TransactionPriority = TransactionPriority::max_value() / 2;
	pub const ImOnlineUnsignedPriority: TransactionPriority = TransactionPriority::max_value();
}

491
impl im_online::Trait for Runtime {
thiolliere's avatar
thiolliere committed
492
	type AuthorityId = ImOnlineId;
493
	type Event = Event;
494
	type ReportUnresponsiveness = Offences;
495
	type SessionDuration = SessionDuration;
496
	type UnsignedPriority = ImOnlineUnsignedPriority;
497
498
}

499
500
impl grandpa::Trait for Runtime {
	type Event = Event;
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
	type Call = Call;

	type KeyOwnerProofSystem = Historical;

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

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

	type HandleEquivocation = grandpa::EquivocationHandler<
		Self::KeyOwnerIdentification,
		primitives::fisherman::FishermanAppCrypto,
		Runtime,
		Offences,
	>;
519
520
}

Gavin Wood's avatar
Gavin Wood committed
521
522
523
524
525
526
parameter_types! {
	pub const WindowSize: BlockNumber = finality_tracker::DEFAULT_WINDOW_SIZE.into();
	pub const ReportLatency: BlockNumber = finality_tracker::DEFAULT_REPORT_LATENCY.into();
}

impl finality_tracker::Trait for Runtime {
527
	type OnFinalizationStalled = ();
Gavin Wood's avatar
Gavin Wood committed
528
529
530
531
	type WindowSize = WindowSize;
	type ReportLatency = ReportLatency;
}

532
533
534
535
parameter_types! {
	pub const AttestationPeriod: BlockNumber = 50;
}

536
537
538
impl attestations::Trait for Runtime {
	type AttestationPeriod = AttestationPeriod;
	type ValidatorIdentities = parachains::ValidatorIdentities<Runtime>;
539
	type RewardAttestation = Staking;
540
541
}

542
543
544
parameter_types! {
	pub const MaxCodeSize: u32 = 10 * 1024 * 1024; // 10 MB
	pub const MaxHeadDataSize: u32 = 20 * 1024; // 20 KB
545
546
547
	pub const ValidationUpgradeFrequency: BlockNumber = 2 * DAYS;
	pub const ValidationUpgradeDelay: BlockNumber = 8 * HOURS;
	pub const SlashPeriod: BlockNumber = 7 * DAYS;
548
549
}

550
impl parachains::Trait for Runtime {
551
	type AuthorityId = primitives::fisherman::FishermanAppCrypto;
552
553
	type Origin = Origin;
	type Call = Call;
554
	type ParachainCurrency = Balances;
555
	type BlockNumberConversion = sp_runtime::traits::Identity;
556
	type Randomness = RandomnessCollectiveFlip;
557
558
	type ActiveParachains = Registrar;
	type Registrar = Registrar;
559
560
	type MaxCodeSize = MaxCodeSize;
	type MaxHeadDataSize = MaxHeadDataSize;
561
562
563
564
565

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

566
	type Proof = sp_session::MembershipProof;
567
568
569
	type KeyOwnerProofSystem = session::historical::Module<Self>;
	type IdentificationTuple = <Self::KeyOwnerProofSystem as KeyOwnerProofSystem<(KeyTypeId, Vec<u8>)>>::IdentificationTuple;
	type ReportOffence = Offences;
570
	type BlockHashConversion = sp_runtime::traits::Identity;
571
572
}

573
574
/// Submits transaction with the node's public and signature type. Adheres to the signed extension
/// format of the chain.
575
576
577
578
579
580
581
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,
582
583
		nonce: <Runtime as system::Trait>::Index,
	) -> Option<(Call, <UncheckedExtrinsic as ExtrinsicT>::SignaturePayload)> {
584
		// take the biggest period possible.
585
586
587
588
589
590
591
		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>()
592
593
			// The `System::block_number` is initialized with `n+1`,
			// so the actual block number is `n`.
594
595
596
597
			.saturating_sub(1);
		let tip = 0;
		let extra: SignedExtra = (
			RestrictFunctionality,
598
599
			system::CheckSpecVersion::<Runtime>::new(),
			system::CheckTxVersion::<Runtime>::new(),
600
601
602
603
604
605
606
			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(),
607
			grandpa::ValidateEquivocationReport::<Runtime>::new(),
608
609
		);
		let raw_payload = SignedPayload::new(call, extra).map_err(|e| {
610
			debug::warn!("Unable to create signed payload: {:?}", e);
611
		}).ok()?;
612
613
614
		let signature = raw_payload.using_encoded(|payload| {
			C::sign(payload, public)
		})?;
615
616
617
		let (call, extra, _) = raw_payload.deconstruct();
		Some((call, (account, signature, extra)))
	}
618
619
}

620
621
622
623
624
625
626
627
628
629
630
631
impl system::offchain::SigningTypes for Runtime {
	type Public = <Signature as Verify>::Signer;
	type Signature = Signature;
}

impl<C> system::offchain::SendTransactionTypes<C> for Runtime where
	Call: From<C>,
{
	type OverarchingCall = Call;
	type Extrinsic = UncheckedExtrinsic;
}

632
parameter_types! {
Gavin Wood's avatar
Gavin Wood committed
633
	pub const ParathreadDeposit: Balance = 5 * DOLLARS;
634
635
636
637
638
639
640
641
642
643
644
645
	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;
646
}
647

Gavin Wood's avatar
Gavin Wood committed
648
parameter_types! {
649
	pub const LeasePeriod: BlockNumber = 100_000;
Gavin Wood's avatar
Gavin Wood committed
650
651
652
653
654
	pub const EndingPeriod: BlockNumber = 1000;
}

impl slots::Trait for Runtime {
	type Event = Event;
655
656
	type Currency = Balances;
	type Parachains = Registrar;
Gavin Wood's avatar
Gavin Wood committed
657
658
	type LeasePeriod = LeasePeriod;
	type EndingPeriod = EndingPeriod;
659
	type Randomness = RandomnessCollectiveFlip;
Gavin Wood's avatar
Gavin Wood committed
660
661
}

Gavin Wood's avatar
Gavin Wood committed
662
parameter_types! {
663
664
665
666
667
	pub const Prefix: &'static [u8] = b"Pay KSMs to the Kusama account:";
}

impl claims::Trait for Runtime {
	type Event = Event;
Gavin Wood's avatar
Gavin Wood committed
668
	type VestingSchedule = Vesting;
669
670
671
	type Prefix = Prefix;
}

672
parameter_types! {
673
	// Minimum 100 bytes/KSM deposited (1 CENT/byte)
Gavin Wood's avatar
Gavin Wood committed
674
675
676
	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
677
678
	pub const MaxSubAccounts: u32 = 100;
	pub const MaxAdditionalFields: u32 = 100;
679
	pub const MaxRegistrars: u32 = 20;
680
681
682
683
684
685
686
687
688
}

impl identity::Trait for Runtime {
	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
689
690
	type MaxSubAccounts = MaxSubAccounts;
	type MaxAdditionalFields = MaxAdditionalFields;
691
	type MaxRegistrars = MaxRegistrars;
692
693
694
695
	type RegistrarOrigin = collective::EnsureProportionMoreThan<_1, _2, AccountId, CouncilCollective>;
	type ForceOrigin = collective::EnsureProportionMoreThan<_1, _2, AccountId, CouncilCollective>;
}

Gavin Wood's avatar
Gavin Wood committed
696
697
parameter_types! {
	// One storage item; value is size 4+4+16+32 bytes = 56 bytes.
Gavin Wood's avatar
Gavin Wood committed
698
	pub const MultisigDepositBase: Balance = 30 * CENTS;
Gavin Wood's avatar
Gavin Wood committed
699
	// Additional storage item size of 32 bytes.
Gavin Wood's avatar
Gavin Wood committed
700
	pub const MultisigDepositFactor: Balance = 5 * CENTS;
Gavin Wood's avatar
Gavin Wood committed
701
702
703
704
705
706
707
708
709
710
711
712
	pub const MaxSignatories: u16 = 100;
}

impl utility::Trait for Runtime {
	type Event = Event;
	type Call = Call;
	type Currency = Balances;
	type MultisigDepositBase = MultisigDepositBase;
	type MultisigDepositFactor = MultisigDepositFactor;
	type MaxSignatories = MaxSignatories;
}

713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
parameter_types! {
	pub const ConfigDepositBase: Balance = 5 * DOLLARS;
	pub const FriendDepositFactor: Balance = 50 * CENTS;
	pub const MaxFriends: u16 = 9;
	pub const RecoveryDeposit: Balance = 5 * DOLLARS;
}

impl recovery::Trait for Runtime {
	type Event = Event;
	type Call = Call;
	type Currency = Balances;
	type ConfigDepositBase = ConfigDepositBase;
	type FriendDepositFactor = FriendDepositFactor;
	type MaxFriends = MaxFriends;
	type RecoveryDeposit = RecoveryDeposit;
}

parameter_types! {
	pub const CandidateDeposit: Balance = 10 * DOLLARS;
	pub const WrongSideDeduction: Balance = 2 * DOLLARS;
	pub const MaxStrikes: u32 = 10;
	pub const RotationPeriod: BlockNumber = 80 * HOURS;
	pub const PeriodSpend: Balance = 500 * DOLLARS;
	pub const MaxLockDuration: BlockNumber = 36 * 30 * DAYS;
	pub const ChallengePeriod: BlockNumber = 7 * DAYS;
738
	pub const SocietyModuleId: ModuleId = ModuleId(*b"py/socie");
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
}

impl society::Trait for Runtime {
	type Event = Event;
	type Currency = Balances;
	type Randomness = RandomnessCollectiveFlip;
	type CandidateDeposit = CandidateDeposit;
	type WrongSideDeduction = WrongSideDeduction;
	type MaxStrikes = MaxStrikes;
	type PeriodSpend = PeriodSpend;
	type MembershipChanged = ();
	type RotationPeriod = RotationPeriod;
	type MaxLockDuration = MaxLockDuration;
	type FounderSetOrigin = collective::EnsureProportionMoreThan<_1, _2, AccountId, CouncilCollective>;
	type SuspensionJudgementOrigin = society::EnsureFounder<Runtime>;
	type ChallengePeriod = ChallengePeriod;
755
	type ModuleId = SocietyModuleId;
756
757
}

758
759
760
761
parameter_types! {
	pub const MinVestedTransfer: Balance = 100 * DOLLARS;
}

Gavin Wood's avatar
Gavin Wood committed
762
763
764
765
impl vesting::Trait for Runtime {
	type Event = Event;
	type Currency = Balances;
	type BlockNumberToBalance = ConvertInto;
766
	type MinVestedTransfer = MinVestedTransfer;
Gavin Wood's avatar
Gavin Wood committed
767
768
}

Gavin Wood's avatar
Gavin Wood committed
769
construct_runtime! {
770
	pub enum Runtime where
771
		Block = Block,
772
		NodeBlock = primitives::Block,
773
		UncheckedExtrinsic = UncheckedExtrinsic
774
	{
775
		// Basic stuff; balances is uncallable initially.
Gavin Wood's avatar
Gavin Wood committed
776
		System: system::{Module, Call, Storage, Config, Event<T>},
Ashley's avatar
Ashley committed
777
		RandomnessCollectiveFlip: randomness_collective_flip::{Module, Storage},
778
779

		// Must be before session.
780
		Babe: babe::{Module, Call, Storage, Config, Inherent(Timestamp)},
781
782

		Timestamp: timestamp::{Module, Call, Storage, Inherent},
Gavin Wood's avatar
Gavin Wood committed
783
		Indices: indices::{Module, Call, Storage, Config<T>, Event<T>},
784
		Balances: balances::{Module, Call, Storage, Config<T>, Event<T>},
785
		TransactionPayment: transaction_payment::{Module, Storage},
786
787
788

		// Consensus support.
		Authorship: authorship::{Module, Call, Storage},
Kian Paimani's avatar
Kian Paimani committed
789
		Staking: staking::{Module, Call, Storage, Config<T>, Event<T>, ValidateUnsigned},
790
		Offences: offences::{Module, Call, Storage, Event},
791
		Historical: session_historical::{Module},
792
		Session: session::{Module, Call, Storage, Event, Config<T>},
793
		FinalityTracker: finality_tracker::{Module, Call, Storage, Inherent},
794
		Grandpa: grandpa::{Module, Call, Storage, Config, Event},
thiolliere's avatar
thiolliere committed
795
		ImOnline: im_online::{Module, Call, Storage, Event<T>, ValidateUnsigned, Config<T>},
Gavin Wood's avatar
Gavin Wood committed
796
		AuthorityDiscovery: authority_discovery::{Module, Call, Config},
797
798

		// Governance stuff; uncallable initially.
Gavin Wood's avatar
Gavin Wood committed
799
		Democracy: democracy::{Module, Call, Storage, Config, Event<T>},
800
801
		Council: collective::<Instance1>::{Module, Call, Storage, Origin<T>, Event<T>, Config<T>},
		TechnicalCommittee: collective::<Instance2>::{Module, Call, Storage, Origin<T>, Event<T>, Config<T>},
802
		ElectionsPhragmen: elections_phragmen::{Module, Call, Storage, Event<T>, Config<T>},
803
		TechnicalMembership: membership::<Instance1>::{Module, Call, Storage, Event<T>, Config<T>},
Gavin Wood's avatar
Gavin Wood committed
804
		Treasury: treasury::{Module, Call, Storage, Event<T>},
805
806
807
808
809
810

		// Claims. Usable initially.
		Claims: claims::{Module, Call, Storage, Event<T>, Config<T>, ValidateUnsigned},

		// Parachains stuff; slots are disabled (no auctions initially). The rest are safe as they
		// have no public dispatchables.
811
		Parachains: parachains::{Module, Call, Storage, Config, Inherent, Origin},
812
		Attestations: attestations::{Module, Call, Storage},
Gavin Wood's avatar
Gavin Wood committed
813
		Slots: slots::{Module, Call, Storage, Event<T>},
814
		Registrar: registrar::{Module, Call, Storage, Event, Config<T>},
815

816
817
		// Utility module.
		Utility: utility::{Module, Call, Storage, Event<T>},
818
819
820

		// Less simple identity module.
		Identity: identity::{Module, Call, Storage, Event<T>},
821
822
823
824
825
826

		// Society module.
		Society: society::{Module, Call, Storage, Event<T>},

		// Social recovery module.
		Recovery: recovery::{Module, Call, Storage, Event<T>},
Gavin Wood's avatar
Gavin Wood committed
827
828
829

		// Vesting. Usable initially, but removed once all vesting is finished.
		Vesting: vesting::{Module, Call, Storage, Event<T>, Config<T>},
Gavin Wood's avatar
Gavin Wood committed
830
831
832

		// System scheduler.
		Scheduler: scheduler::{Module, Call, Storage, Event<T>},
Gav's avatar
Gav committed
833
	}
Gavin Wood's avatar
Gavin Wood committed
834
}
835
836

/// The address format for describing accounts.
837
pub type Address = AccountId;
838
/// Block header type as expected by this runtime.
839
pub type Header = generic::Header<BlockNumber, BlakeTwo256>;
840
841
842
843
844
845
/// Block type as expected by this runtime.
pub type Block = generic::Block<Header, UncheckedExtrinsic>;
/// A Block signed with a Justification
pub type SignedBlock = generic::SignedBlock<Block>;
/// BlockId type as expected by this runtime.
pub type BlockId = generic::BlockId<Block>;
846
847
/// The SignedExtension to the basic transaction logic.
pub type SignedExtra = (
848
	RestrictFunctionality,
849
850
	system::CheckSpecVersion<Runtime>,
	system::CheckTxVersion<Runtime>,
851
	system::CheckGenesis<Runtime>,
852
853
854
	system::CheckEra<Runtime>,
	system::CheckNonce<Runtime>,
	system::CheckWeight<Runtime>,
855
	transaction_payment::ChargeTransactionPayment<Runtime>,
856
857
	registrar::LimitParathreadCommits<Runtime>,
	parachains::ValidateDoubleVoteReports<Runtime>,
858
	grandpa::ValidateEquivocationReport<Runtime>,
859
);
860
/// Unchecked extrinsic type as expected by this runtime.
861
pub type UncheckedExtrinsic = generic::UncheckedExtrinsic<Address, Call, Signature, SignedExtra>;
862
/// Extrinsic type that has already been checked.
Gav Wood's avatar
Gav Wood committed
863
pub type CheckedExtrinsic = generic::CheckedExtrinsic<AccountId, Nonce, Call>;
864
/// Executive: handles dispatch to the various modules.
865
pub type Executive = executive::Executive<Runtime, Block, system::ChainContext<Runtime>, Runtime, AllModules>;
866
867
/// The payload being signed in the transactions.
pub type SignedPayload = generic::SignedPayload<Call, SignedExtra>;
868

869
870
sp_api::impl_runtime_apis! {
	impl sp_api::Core<Block> for Runtime {
871
872
873
874
875
876
877
		fn version() -> RuntimeVersion {
			VERSION
		}

		fn execute_block(block: Block) {
			Executive::execute_block(block)
		}
878