lib.rs 24.4 KB
Newer Older
Gav's avatar
Gav committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright 2017 Parity Technologies (UK) Ltd.
// 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
24
mod attestations;
mod claims;
25
mod parachains;
Gavin Wood's avatar
Gavin Wood committed
26
mod slot_range;
27
mod registrar;
Gavin Wood's avatar
Gavin Wood committed
28
mod slots;
29
mod crowdfund;
Gav Wood's avatar
Gav Wood committed
30

31
use rstd::prelude::*;
32
use substrate_primitives::u32_trait::{_1, _2, _3, _4, _5};
33
use codec::{Encode, Decode};
34
use primitives::{
35
	AccountId, AccountIndex, Balance, BlockNumber, Hash, Nonce, Signature, Moment,
36
	parachain::{self, ActiveParas}, ValidityError,
37
};
38
use client::{
39
	block_builder::api::{self as block_builder_api, InherentData, CheckInherentsResult},
40
	runtime_api as client_api, impl_runtime_apis,
41
};
Gav Wood's avatar
Gav Wood committed
42
use sr_primitives::{
Gavin Wood's avatar
Gavin Wood committed
43
	create_runtime_str, generic, impl_opaque_keys,
44
	ApplyResult, Permill, Perbill, RuntimeDebug,
Gavin Wood's avatar
Gavin Wood committed
45
	transaction_validity::{TransactionValidity, InvalidTransaction, TransactionValidityError},
46
	weights::{Weight, DispatchInfo}, curve::PiecewiseLinear,
Gavin Wood's avatar
Gavin Wood committed
47
	traits::{BlakeTwo256, Block as BlockT, StaticLookup, SignedExtension, OpaqueKeys},
Gav Wood's avatar
Gav Wood committed
48
};
Arkadiy Paronyan's avatar
Arkadiy Paronyan committed
49
use version::RuntimeVersion;
50
use grandpa::{AuthorityId as GrandpaId, fg_primitives};
51
52
53
#[cfg(any(feature = "std", test))]
use version::NativeVersion;
use substrate_primitives::OpaqueMetadata;
54
use sr_staking_primitives::SessionIndex;
Gavin Wood's avatar
Gavin Wood committed
55
use srml_support::{
56
	parameter_types, construct_runtime, traits::{SplitTwoWays, Currency, Randomness}
Gavin Wood's avatar
Gavin Wood committed
57
};
thiolliere's avatar
thiolliere committed
58
use im_online::sr25519::AuthorityId as ImOnlineId;
Gavin Wood's avatar
Gavin Wood committed
59
use system::offchain::TransactionSubmitter;
Kian Paimani's avatar
Kian Paimani committed
60
use srml_transaction_payment_rpc_runtime_api::RuntimeDispatchInfo;
61

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

71
72
/// Implementations of some helper traits passed into runtime modules as associated types.
pub mod impls;
73
use impls::{CurrencyToVoteHandler, TargetedFeeAdjustment, ToAuthor, WeightToFee};
74
75
76
77
78

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

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

83
84
85
/*
// KUSAMA: Polkadot version identifier; may be uncommented for Polkadot mainnet.
/// Runtime version (Polkadot).
Arkadiy Paronyan's avatar
Arkadiy Paronyan committed
86
pub const VERSION: RuntimeVersion = RuntimeVersion {
87
88
	spec_name: create_runtime_str!("polkadot"),
	impl_name: create_runtime_str!("parity-polkadot"),
Gav Wood's avatar
Gav Wood committed
89
	authoring_version: 1,
André Silva's avatar
André Silva committed
90
	spec_version: 1000,
91
	impl_version: 0,
92
	apis: RUNTIME_API_VERSIONS,
Arkadiy Paronyan's avatar
Arkadiy Paronyan committed
93
};
94
95
96
97
98
99
100
101
*/

// KUSAMA: Kusama version identifier; may be removed for Polkadot mainnet.
/// Runtime version (Kusama).
pub const VERSION: RuntimeVersion = RuntimeVersion {
	spec_name: create_runtime_str!("kusama"),
	impl_name: create_runtime_str!("parity-kusama"),
	authoring_version: 1,
102
	spec_version: 1012,
103
104
105
	impl_version: 0,
	apis: RUNTIME_API_VERSIONS,
};
Arkadiy Paronyan's avatar
Arkadiy Paronyan committed
106

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

116
117
118
119
/// Avoid processing transactions that are anything except staking and claims.
///
/// RELEASE: This is only relevant for the initial PoA run-in period and may be removed
/// from the release runtime.
120
#[derive(Default, Encode, Decode, Clone, Eq, PartialEq, RuntimeDebug)]
121
122
123
124
125
126
pub struct OnlyStakingAndClaims;
impl SignedExtension for OnlyStakingAndClaims {
	type AccountId = AccountId;
	type Call = Call;
	type AdditionalSigned = ();
	type Pre = ();
Gavin Wood's avatar
Gavin Wood committed
127
	fn additional_signed(&self) -> rstd::result::Result<(), TransactionValidityError> { Ok(()) }
128
	fn validate(&self, _: &Self::AccountId, call: &Self::Call, _: DispatchInfo, _: usize)
Gavin Wood's avatar
Gavin Wood committed
129
		-> TransactionValidity
130
131
	{
		match call {
132
			Call::Staking(_) | Call::Claims(_) | Call::Sudo(_) | Call::Session(_)
133
				| Call::ElectionsPhragmen(_) | Call::TechnicalMembership(_)
134
				| Call::TechnicalCommittee(_) | Call::Nicks(_)
135
			=>
136
				Ok(Default::default()),
Gavin Wood's avatar
Gavin Wood committed
137
			_ => Err(InvalidTransaction::Custom(ValidityError::NoPermission.into()).into()),
138
139
140
141
		}
	}
}

142
type NegativeImbalance = <Balances as Currency<AccountId>>::NegativeImbalance;
Gavin Wood's avatar
Gavin Wood committed
143

144
parameter_types! {
145
	pub const BlockHashCount: BlockNumber = 250;
146
147
148
	pub const MaximumBlockWeight: Weight = 1_000_000_000;
	pub const AvailableBlockRatio: Perbill = Perbill::from_percent(75);
	pub const MaximumBlockLength: u32 = 5 * 1024 * 1024;
149
	pub const Version: RuntimeVersion = VERSION;
150
151
}

152
153
impl system::Trait for Runtime {
	type Origin = Origin;
154
	type Call = Call;
Gav Wood's avatar
Gav Wood committed
155
	type Index = Nonce;
156
157
158
159
	type BlockNumber = BlockNumber;
	type Hash = Hash;
	type Hashing = BlakeTwo256;
	type AccountId = AccountId;
Gav Wood's avatar
Gav Wood committed
160
	type Lookup = Indices;
161
	type Header = generic::Header<BlockNumber, BlakeTwo256>;
Gav's avatar
Gav committed
162
	type Event = Event;
163
	type BlockHashCount = BlockHashCount;
164
165
166
	type MaximumBlockWeight = MaximumBlockWeight;
	type MaximumBlockLength = MaximumBlockLength;
	type AvailableBlockRatio = AvailableBlockRatio;
167
	type Version = Version;
168
169
}

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

impl babe::Trait for Runtime {
	type EpochDuration = EpochDuration;
	type ExpectedBlockTime = ExpectedBlockTime;
178
179
180

	// session module is the trigger
	type EpochChangeTrigger = babe::ExternalTrigger;
181
182
}

Gav Wood's avatar
Gav Wood committed
183
184
185
186
187
188
189
impl indices::Trait for Runtime {
	type IsDeadAccount = Balances;
	type AccountIndex = AccountIndex;
	type ResolveHint = indices::SimpleResolveHint<Self::AccountId, Self::AccountIndex>;
	type Event = Event;
}

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

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

204
impl balances::Trait for Runtime {
Gav's avatar
Gav committed
205
206
	type Balance = Balance;
	type OnFreeBalanceZero = Staking;
Gav Wood's avatar
Gav Wood committed
207
	type OnNewAccount = Indices;
Gav's avatar
Gav committed
208
	type Event = Event;
209
210
	type DustRemoval = ();
	type TransferPayment = ();
Gavin Wood's avatar
Gavin Wood committed
211
212
213
	type ExistentialDeposit = ExistentialDeposit;
	type TransferFee = TransferFee;
	type CreationFee = CreationFee;
214
215
216
217
218
}

parameter_types! {
	pub const TransactionBaseFee: Balance = 1 * CENTS;
	pub const TransactionByteFee: Balance = 10 * MILLICENTS;
219
220
	// for a sane configuration, this should always be less than `AvailableBlockRatio`.
	pub const TargetBlockFullness: Perbill = Perbill::from_percent(25);
221
222
223
224
225
}

impl transaction_payment::Trait for Runtime {
	type Currency = Balances;
	type OnTransactionPayment = DealWithFees;
Gavin Wood's avatar
Gavin Wood committed
226
227
	type TransactionBaseFee = TransactionBaseFee;
	type TransactionByteFee = TransactionByteFee;
228
	type WeightToFee = WeightToFee;
229
	type FeeMultiplierUpdate = TargetedFeeAdjustment<TargetBlockFullness>;
Gav's avatar
Gav committed
230
231
}

232
parameter_types! {
233
	pub const MinimumPeriod: u64 = SLOT_DURATION / 2;
234
}
235
impl timestamp::Trait for Runtime {
236
	type Moment = u64;
237
	type OnTimestampSet = Babe;
238
	type MinimumPeriod = MinimumPeriod;
239
240
}

Gavin Wood's avatar
Gavin Wood committed
241
parameter_types! {
242
	pub const UncleGenerations: u32 = 0;
Gavin Wood's avatar
Gavin Wood committed
243
244
245
246
}

// TODO: substrate#2986 implement this properly
impl authorship::Trait for Runtime {
247
	type FindAuthor = session::FindAccountFromAuthorIndex<Self, Babe>;
Gavin Wood's avatar
Gavin Wood committed
248
249
	type UncleGenerations = UncleGenerations;
	type FilterUncle = ();
Gavin Wood's avatar
Gavin Wood committed
250
	type EventHandler = (Staking, ImOnline);
Gavin Wood's avatar
Gavin Wood committed
251
252
}

253
254
255
256
257
258
parameter_types! {
	pub const Period: BlockNumber = 10 * MINUTES;
	pub const Offset: BlockNumber = 0;
}

impl_opaque_keys! {
259
	pub struct SessionKeys {
Gavin Wood's avatar
Gavin Wood committed
260
261
262
263
		pub grandpa: Grandpa,
		pub babe: Babe,
		pub im_online: ImOnline,
		pub parachain_validator: Parachains,
264
	}
265
266
}

thiolliere's avatar
thiolliere committed
267
268
269
270
parameter_types! {
	pub const DisabledValidatorsThreshold: Perbill = Perbill::from_percent(17);
}

271
impl session::Trait for Runtime {
272
	type OnSessionEnding = Staking;
Gavin Wood's avatar
Gavin Wood committed
273
	type SessionHandler = <SessionKeys as OpaqueKeys>::KeyTypeIdProviders;
274
	type ShouldEndSession = Babe;
Gav's avatar
Gav committed
275
	type Event = Event;
276
	type Keys = SessionKeys;
277
278
	type ValidatorId = AccountId;
	type ValidatorIdOf = staking::StashOf<Self>;
279
	type SelectInitialValidators = Staking;
thiolliere's avatar
thiolliere committed
280
	type DisabledValidatorsThreshold = DisabledValidatorsThreshold;
281
282
283
284
}

impl session::historical::Trait for Runtime {
	type FullIdentification = staking::Exposure<AccountId, Balance>;
285
	type FullIdentificationOf = staking::ExposureOf<Runtime>;
286
287
}

thiolliere's avatar
thiolliere committed
288
289
290
291
292
293
294
295
296
297
298
srml_staking_reward_curve::build! {
	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,
	);
}

299
parameter_types! {
Gavin Wood's avatar
Gavin Wood committed
300
	// Six sessions in an era (24 hours).
301
	pub const SessionsPerEra: SessionIndex = 6;
Gavin Wood's avatar
Gavin Wood committed
302
	// 28 eras for unbonding (28 days).
303
304
	// KUSAMA: This value is 1/4 of what we expect for the mainnet.
	pub const BondingDuration: staking::EraIndex = 7;
thiolliere's avatar
thiolliere committed
305
	pub const RewardCurve: &'static PiecewiseLinear<'static> = &REWARD_CURVE;
306
}
307

308
309
impl staking::Trait for Runtime {
	type OnRewardMinted = Treasury;
310
	type CurrencyToVote = CurrencyToVoteHandler;
Gav's avatar
Gav committed
311
	type Event = Event;
312
	type Currency = Balances;
313
	type Slash = Treasury;
314
	type Reward = ();
315
316
	type SessionsPerEra = SessionsPerEra;
	type BondingDuration = BondingDuration;
317
	type SessionInterface = Self;
318
	type Time = Timestamp;
thiolliere's avatar
thiolliere committed
319
	type RewardCurve = RewardCurve;
320
321
}

322
parameter_types! {
323
324
325
326
	// KUSAMA: These values are 1/4 of what we expect for the mainnet.
	pub const LaunchPeriod: BlockNumber = 7 * DAYS;
	pub const VotingPeriod: BlockNumber = 7 * DAYS;
	pub const EmergencyVotingPeriod: BlockNumber = 3 * HOURS;
327
	pub const MinimumDeposit: Balance = 100 * DOLLARS;
328
329
	pub const EnactmentPeriod: BlockNumber = 8 * DAYS;
	pub const CooloffPeriod: BlockNumber = 7 * DAYS;
330
331
}

332
333
334
impl democracy::Trait for Runtime {
	type Proposal = Call;
	type Event = Event;
335
	type Currency = Balances;
336
337
338
	type EnactmentPeriod = EnactmentPeriod;
	type LaunchPeriod = LaunchPeriod;
	type VotingPeriod = VotingPeriod;
339
	type EmergencyVotingPeriod = EmergencyVotingPeriod;
340
	type MinimumDeposit = MinimumDeposit;
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
	/// A straight majority of the council can decide what their next motion is.
	type ExternalOrigin = collective::EnsureProportionAtLeast<_1, _2, AccountId, CouncilCollective>;
	/// A super-majority can have the next scheduled referendum be a straight majority-carries vote.
	type ExternalMajorityOrigin = collective::EnsureProportionAtLeast<_3, _4, AccountId, CouncilCollective>;
	/// 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>;
	// 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>;
356
	type CooloffPeriod = CooloffPeriod;
357
}
358

359
360
type CouncilCollective = collective::Instance1;
impl collective::Trait<CouncilCollective> for Runtime {
361
362
363
364
365
	type Origin = Origin;
	type Proposal = Call;
	type Event = Event;
}

Gavin Wood's avatar
Gavin Wood committed
366
parameter_types! {
367
368
	pub const CandidacyBond: Balance = 100 * DOLLARS;
	pub const VotingBond: Balance = 5 * DOLLARS;
Kian Paimani's avatar
Kian Paimani committed
369
370
371
	pub const TermDuration: BlockNumber = 10 * MINUTES;
	pub const DesiredMembers: u32 = 13;
	pub const DesiredRunnersUp: u32 = 7;
372
373
374
}

impl elections_phragmen::Trait for Runtime {
375
	type Event = Event;
376
377
	type Currency = Balances;
	type ChangeMembers = Council;
378
	type CurrencyToVote = CurrencyToVoteHandler;
Gavin Wood's avatar
Gavin Wood committed
379
380
	type CandidacyBond = CandidacyBond;
	type VotingBond = VotingBond;
Kian Paimani's avatar
Kian Paimani committed
381
382
383
	type TermDuration = TermDuration;
	type DesiredMembers = DesiredMembers;
	type DesiredRunnersUp = DesiredRunnersUp;
384
385
386
	type LoserCandidate = Treasury;
	type BadReport = Treasury;
	type KickedMember = Treasury;
387
388
}

389
390
type TechnicalCollective = collective::Instance2;
impl collective::Trait<TechnicalCollective> for Runtime {
391
392
393
394
395
	type Origin = Origin;
	type Proposal = Call;
	type Event = Event;
}

396
397
398
399
400
401
402
403
404
405
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>;
	type MembershipInitialized = TechnicalCommittee;
	type MembershipChanged = TechnicalCommittee;
}

Gavin Wood's avatar
Gavin Wood committed
406
407
parameter_types! {
	pub const ProposalBond: Permill = Permill::from_percent(5);
Gavin Wood's avatar
Gavin Wood committed
408
	pub const ProposalBondMinimum: Balance = 100 * DOLLARS;
409
410
411
412
	// KUSAMA: This value is 1/4 of that expected for mainnet
	pub const SpendPeriod: BlockNumber = 6 * DAYS;
	// KUSAMA: This value is 1/5 of that expected for mainnet
	pub const Burn: Permill = Permill::from_percent(1);
Gavin Wood's avatar
Gavin Wood committed
413
414
}

415
impl treasury::Trait for Runtime {
Gavin Wood's avatar
Gavin Wood committed
416
	type Currency = Balances;
417
	type ApproveOrigin = collective::EnsureProportionAtLeast<_3, _5, AccountId, CouncilCollective>;
418
	type RejectOrigin = collective::EnsureProportionMoreThan<_1, _2, AccountId, CouncilCollective>;
419
	type Event = Event;
420
	type ProposalRejection = Treasury;
Gavin Wood's avatar
Gavin Wood committed
421
422
423
424
	type ProposalBond = ProposalBond;
	type ProposalBondMinimum = ProposalBondMinimum;
	type SpendPeriod = SpendPeriod;
	type Burn = Burn;
425
}
426

427
428
429
430
431
432
impl offences::Trait for Runtime {
	type Event = Event;
	type IdentificationTuple = session::historical::IdentificationTuple<Self>;
	type OnOffenceHandler = Staking;
}

Gavin Wood's avatar
Gavin Wood committed
433
434
type SubmitTransaction = TransactionSubmitter<ImOnlineId, Runtime, UncheckedExtrinsic>;

435
impl im_online::Trait for Runtime {
thiolliere's avatar
thiolliere committed
436
	type AuthorityId = ImOnlineId;
437
	type Event = Event;
Gavin Wood's avatar
Gavin Wood committed
438
439
	type Call = Call;
	type SubmitTransaction = SubmitTransaction;
440
	type ReportUnresponsiveness = Offences;
441
442
}

443
444
445
446
impl grandpa::Trait for Runtime {
	type Event = Event;
}

Gavin Wood's avatar
Gavin Wood committed
447
448
449
450
451
452
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 {
453
	type OnFinalizationStalled = ();
Gavin Wood's avatar
Gavin Wood committed
454
455
456
457
	type WindowSize = WindowSize;
	type ReportLatency = ReportLatency;
}

458
459
460
461
parameter_types! {
	pub const AttestationPeriod: BlockNumber = 50;
}

462
463
464
impl attestations::Trait for Runtime {
	type AttestationPeriod = AttestationPeriod;
	type ValidatorIdentities = parachains::ValidatorIdentities<Runtime>;
465
	type RewardAttestation = Staking;
466
467
}

468
469
470
impl parachains::Trait for Runtime {
	type Origin = Origin;
	type Call = Call;
471
	type ParachainCurrency = Balances;
472
	type Randomness = RandomnessCollectiveFlip;
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
	type ActiveParachains = Registrar;
	type Registrar = Registrar;
}

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;
491
}
492

Gavin Wood's avatar
Gavin Wood committed
493
parameter_types!{
494
	pub const LeasePeriod: BlockNumber = 100_000;
Gavin Wood's avatar
Gavin Wood committed
495
496
497
498
499
	pub const EndingPeriod: BlockNumber = 1000;
}

impl slots::Trait for Runtime {
	type Event = Event;
500
501
	type Currency = Balances;
	type Parachains = Registrar;
Gavin Wood's avatar
Gavin Wood committed
502
503
	type LeasePeriod = LeasePeriod;
	type EndingPeriod = EndingPeriod;
504
	type Randomness = RandomnessCollectiveFlip;
Gavin Wood's avatar
Gavin Wood committed
505
506
}

507
parameter_types!{
508
	// KUSAMA: for mainnet this should be removed.
509
	pub const Prefix: &'static [u8] = b"Pay KSMs to the Kusama account:";
510
511
	// KUSAMA: for mainnet this should be uncommented.
	//pub const Prefix: &'static [u8] = b"Pay DOTs to the Polkadot account:";
512
513
514
515
516
517
518
519
}

impl claims::Trait for Runtime {
	type Event = Event;
	type Currency = Balances;
	type Prefix = Prefix;
}

Gav Wood's avatar
Gav Wood committed
520
521
522
523
524
impl sudo::Trait for Runtime {
	type Event = Event;
	type Proposal = Call;
}

525
526
527
528
529
530
531
532
533
534
535
parameter_types! {
	pub const ReservationFee: Balance = 1 * DOLLARS;
	pub const MinLength: usize = 3;
	pub const MaxLength: usize = 16;
}

impl nicks::Trait for Runtime {
	type Event = Event;
	type Currency = Balances;
	type ReservationFee = ReservationFee;
	type Slashed = Treasury;
Gavin Wood's avatar
Gavin Wood committed
536
	type ForceOrigin = collective::EnsureMember<AccountId, CouncilCollective>;
537
538
539
540
	type MinLength = MinLength;
	type MaxLength = MaxLength;
}

541
construct_runtime!(
542
	pub enum Runtime where
543
		Block = Block,
544
		NodeBlock = primitives::Block,
545
		UncheckedExtrinsic = UncheckedExtrinsic
546
	{
547
		// Basic stuff; balances is uncallable initially.
Gavin Wood's avatar
Gavin Wood committed
548
		System: system::{Module, Call, Storage, Config, Event},
Ashley's avatar
Ashley committed
549
		RandomnessCollectiveFlip: randomness_collective_flip::{Module, Storage},
550
551

		// Must be before session.
552
		Babe: babe::{Module, Call, Storage, Config, Inherent(Timestamp)},
553
554

		Timestamp: timestamp::{Module, Call, Storage, Inherent},
Gav Wood's avatar
Gav Wood committed
555
		Indices: indices,
556
		Balances: balances::{Module, Call, Storage, Config<T>, Event<T>},
557
		TransactionPayment: transaction_payment::{Module, Storage},
558
559
560

		// Consensus support.
		Authorship: authorship::{Module, Call, Storage},
Gavin Wood's avatar
Gavin Wood committed
561
		Staking: staking::{default, OfflineWorker},
562
		Offences: offences::{Module, Call, Storage, Event},
563
		Session: session::{Module, Call, Storage, Event, Config<T>},
564
565
		FinalityTracker: finality_tracker::{Module, Call, Inherent},
		Grandpa: grandpa::{Module, Call, Storage, Config, Event},
thiolliere's avatar
thiolliere committed
566
		ImOnline: im_online::{Module, Call, Storage, Event<T>, ValidateUnsigned, Config<T>},
567
568

		// Governance stuff; uncallable initially.
Gavin Wood's avatar
Gavin Wood committed
569
		Democracy: democracy::{Module, Call, Storage, Config, Event<T>},
570
571
		Council: collective::<Instance1>::{Module, Call, Storage, Origin<T>, Event<T>, Config<T>},
		TechnicalCommittee: collective::<Instance2>::{Module, Call, Storage, Origin<T>, Event<T>, Config<T>},
Kian Paimani's avatar
Kian Paimani committed
572
		ElectionsPhragmen: elections_phragmen::{Module, Call, Storage, Event<T>},
573
		TechnicalMembership: membership::<Instance1>::{Module, Call, Storage, Event<T>, Config<T>},
Gavin Wood's avatar
Gavin Wood committed
574
		Treasury: treasury::{Module, Call, Storage, Event<T>},
575
576
577
578
579
580

		// 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.
581
		Parachains: parachains::{Module, Call, Storage, Config, Inherent, Origin},
582
		Attestations: attestations::{Module, Call, Storage},
Gavin Wood's avatar
Gavin Wood committed
583
		Slots: slots::{Module, Call, Storage, Event<T>},
584
		Registrar: registrar::{Module, Call, Storage, Event, Config<T>},
585
586
587
588

		// Sudo. Usable initially.
		// RELEASE: remove this for release build.
		Sudo: sudo,
589
590
591

		// Simple nicknames module.
		Nicks: nicks::{Module, Call, Storage, Event<T>},
Gav's avatar
Gav committed
592
	}
593
594
595
);

/// The address format for describing accounts.
Gav Wood's avatar
Gav Wood committed
596
pub type Address = <Indices as StaticLookup>::Source;
597
/// Block header type as expected by this runtime.
598
pub type Header = generic::Header<BlockNumber, BlakeTwo256>;
599
600
601
602
603
604
/// 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>;
605
606
/// The SignedExtension to the basic transaction logic.
pub type SignedExtra = (
607
608
	// RELEASE: remove this for release build.
	OnlyStakingAndClaims,
609
	system::CheckVersion<Runtime>,
610
	system::CheckGenesis<Runtime>,
611
612
613
	system::CheckEra<Runtime>,
	system::CheckNonce<Runtime>,
	system::CheckWeight<Runtime>,
614
	transaction_payment::ChargeTransactionPayment::<Runtime>,
615
	registrar::LimitParathreadCommits<Runtime>
616
);
617
/// Unchecked extrinsic type as expected by this runtime.
618
pub type UncheckedExtrinsic = generic::UncheckedExtrinsic<Address, Call, Signature, SignedExtra>;
619
/// Extrinsic type that has already been checked.
Gav Wood's avatar
Gav Wood committed
620
pub type CheckedExtrinsic = generic::CheckedExtrinsic<AccountId, Nonce, Call>;
621
/// Executive: handles dispatch to the various modules.
622
pub type Executive = executive::Executive<Runtime, Block, system::ChainContext<Runtime>, Runtime, AllModules>;
623
624

impl_runtime_apis! {
625
	impl client_api::Core<Block> for Runtime {
626
627
628
629
630
631
632
		fn version() -> RuntimeVersion {
			VERSION
		}

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

634
635
		fn initialize_block(header: &<Block as BlockT>::Header) {
			Executive::initialize_block(header)
636
637
		}
	}
Gav's avatar
Gav committed
638

639
	impl client_api::Metadata<Block> for Runtime {
640
641
642
		fn metadata() -> OpaqueMetadata {
			Runtime::metadata().into()
		}
Gav's avatar
Gav committed
643
644
	}

645
	impl block_builder_api::BlockBuilder<Block> for Runtime {
646
647
648
649
		fn apply_extrinsic(extrinsic: <Block as BlockT>::Extrinsic) -> ApplyResult {
			Executive::apply_extrinsic(extrinsic)
		}

650
651
		fn finalize_block() -> <Block as BlockT>::Header {
			Executive::finalize_block()
652
		}
653

654
655
		fn inherent_extrinsics(data: InherentData) -> Vec<<Block as BlockT>::Extrinsic> {
			data.create_extrinsics()
656
		}
657

658
659
		fn check_inherents(block: Block, data: InherentData) -> CheckInherentsResult {
			data.check_extrinsics(&block)
660
		}
661

662
		fn random_seed() -> <Block as BlockT>::Hash {
Ashley's avatar
Ashley committed
663
			RandomnessCollectiveFlip::random_seed()
664
		}
665
666
	}

667
	impl client_api::TaggedTransactionQueue<Block> for Runtime {
668
669
670
		fn validate_transaction(tx: <Block as BlockT>::Extrinsic) -> TransactionValidity {
			Executive::validate_transaction(tx)
		}
Gav's avatar
Gav committed
671
	}
672

673
674
675
676
677
678
	impl offchain_primitives::OffchainWorkerApi<Block> for Runtime {
		fn offchain_worker(number: sr_primitives::traits::NumberFor<Block>) {
			Executive::offchain_worker(number)
		}
	}

679
	impl parachain::ParachainHost<Block> for Runtime {
Gav Wood's avatar
Gav Wood committed
680
		fn validators() -> Vec<parachain::ValidatorId> {
681
			Parachains::authorities()
682
683
		}
		fn duty_roster() -> parachain::DutyRoster {
684
			Parachains::calculate_duty_roster().0
685
		}
686
687
		fn active_parachains() -> Vec<(parachain::Id, Option<(parachain::CollatorId, parachain::Retriable)>)> {
			Registrar::active_paras()
688
		}
689
690
		fn parachain_status(id: parachain::Id) -> Option<parachain::Status> {
			Parachains::parachain_status(&id)
691
692
693
694
		}
		fn parachain_code(id: parachain::Id) -> Option<Vec<u8>> {
			Parachains::parachain_code(&id)
		}
695
696
697
698
		fn ingress(to: parachain::Id, since: Option<BlockNumber>)
			-> Option<parachain::StructuredUnroutedIngress>
		{
			Parachains::ingress(to, since).map(parachain::StructuredUnroutedIngress)
699
		}
700
	}
701
702

	impl fg_primitives::GrandpaApi<Block> for Runtime {
703
		fn grandpa_authorities() -> Vec<(GrandpaId, u64)> {
704
705
706
707
			Grandpa::grandpa_authorities()
		}
	}

708
	impl babe_primitives::BabeApi<Block> for Runtime {
709
		fn configuration() -> babe_primitives::BabeConfiguration {
710
711
712
713
714
715
716
			// The choice of `c` parameter (where `1 - c` represents the
			// probability of a slot being empty), is done in accordance to the
			// slot duration and expected target block time, for safely
			// resisting network delays of maximum two seconds.
			// <https://research.web3.foundation/en/latest/polkadot/BABE/Babe/#6-practical-results>
			babe_primitives::BabeConfiguration {
				slot_duration: Babe::slot_duration(),
717
				epoch_length: EpochDuration::get(),
718
				c: PRIMARY_PROBABILITY,
719
				genesis_authorities: Babe::authorities(),
720
				randomness: Babe::randomness(),
721
				secondary_slots: true,
722
			}
723
724
725
		}
	}

726
727
728
729
730
731
	impl substrate_session::SessionKeys<Block> for Runtime {
		fn generate_session_keys(seed: Option<Vec<u8>>) -> Vec<u8> {
			let seed = seed.as_ref().map(|s| rstd::str::from_utf8(&s).expect("Seed is an utf8 string"));
			SessionKeys::generate(seed)
		}
	}
732
733
734
735
736
737

	impl system_rpc_runtime_api::AccountNonceApi<Block, AccountId, Nonce> for Runtime {
		fn account_nonce(account: AccountId) -> Nonce {
			System::account_nonce(account)
		}
	}
Kian Paimani's avatar
Kian Paimani committed
738
739
740
741
742
743
744
745
746
747

	impl srml_transaction_payment_rpc_runtime_api::TransactionPaymentApi<
		Block,
		Balance,
		UncheckedExtrinsic,
	> for Runtime {
		fn query_info(uxt: UncheckedExtrinsic, len: u32) -> RuntimeDispatchInfo<Balance> {
			TransactionPayment::query_info(uxt, len)
		}
	}
Gav's avatar
Gav committed
748
}