lib.rs 23.9 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
24
25
26
27
use runtime_common::{attestations, claims, parachains, registrar, slots,
	impls::{CurrencyToVoteHandler, TargetedFeeAdjustment, ToAuthor, WeightToFee},
	NegativeImbalance, BlockHashCount, MaximumBlockWeight, AvailableBlockRatio,
	MaximumBlockLength,
};
Gav Wood's avatar
Gav Wood committed
28

29
use rstd::prelude::*;
30
use sp_core::u32_trait::{_1, _2, _3, _4, _5};
31
use codec::{Encode, Decode};
32
use primitives::{
33
	AccountId, AccountIndex, Balance, BlockNumber, Hash, Nonce, Signature, Moment,
34
	parachain::{self, ActiveParas, CandidateReceipt}, ValidityError,
35
};
36
use sp_runtime::{
Gavin Wood's avatar
Gavin Wood committed
37
	create_runtime_str, generic, impl_opaque_keys,
38
	ApplyExtrinsicResult, Permill, Perbill, RuntimeDebug,
Gavin Wood's avatar
Gavin Wood committed
39
	transaction_validity::{TransactionValidity, InvalidTransaction, TransactionValidityError},
40
	curve::PiecewiseLinear,
Gavin Wood's avatar
Gavin Wood committed
41
	traits::{BlakeTwo256, Block as BlockT, StaticLookup, SignedExtension, OpaqueKeys},
Gav Wood's avatar
Gav Wood committed
42
};
Arkadiy Paronyan's avatar
Arkadiy Paronyan committed
43
use version::RuntimeVersion;
44
use grandpa::{AuthorityId as GrandpaId, fg_primitives};
45
46
#[cfg(any(feature = "std", test))]
use version::NativeVersion;
47
48
use sp_core::OpaqueMetadata;
use sp_staking::SessionIndex;
49
use frame_support::{
50
51
	parameter_types, construct_runtime, traits::{SplitTwoWays, Randomness},
	weights::DispatchInfo,
Gavin Wood's avatar
Gavin Wood committed
52
};
thiolliere's avatar
thiolliere committed
53
use im_online::sr25519::AuthorityId as ImOnlineId;
Gavin Wood's avatar
Gavin Wood committed
54
use authority_discovery_primitives::AuthorityId as AuthorityDiscoveryId;
Gavin Wood's avatar
Gavin Wood committed
55
use system::offchain::TransactionSubmitter;
56
use pallet_transaction_payment_rpc_runtime_api::RuntimeDispatchInfo;
57

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

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

71
72
73
74
// Make the WASM binary available.
#[cfg(feature = "std")]
include!(concat!(env!("OUT_DIR"), "/wasm_binary.rs"));

75
// Polkadot version identifier;
76
/// Runtime version (Polkadot).
Arkadiy Paronyan's avatar
Arkadiy Paronyan committed
77
pub const VERSION: RuntimeVersion = RuntimeVersion {
78
79
	spec_name: create_runtime_str!("polkadot"),
	impl_name: create_runtime_str!("parity-polkadot"),
80
	authoring_version: 2,
81
	spec_version: 1000,
82
83
84
	impl_version: 0,
	apis: RUNTIME_API_VERSIONS,
};
Arkadiy Paronyan's avatar
Arkadiy Paronyan committed
85

86
87
88
89
90
91
92
93
94
/// Native version.
#[cfg(any(feature = "std", test))]
pub fn native_version() -> NativeVersion {
	NativeVersion {
		runtime_version: VERSION,
		can_author_with: Default::default(),
	}
}

95
96
97
98
/// 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.
99
#[derive(Default, Encode, Decode, Clone, Eq, PartialEq, RuntimeDebug)]
100
101
102
103
104
105
pub struct OnlyStakingAndClaims;
impl SignedExtension for OnlyStakingAndClaims {
	type AccountId = AccountId;
	type Call = Call;
	type AdditionalSigned = ();
	type Pre = ();
106
107
	type DispatchInfo = DispatchInfo;

Gavin Wood's avatar
Gavin Wood committed
108
	fn additional_signed(&self) -> rstd::result::Result<(), TransactionValidityError> { Ok(()) }
109

110
	fn validate(&self, _: &Self::AccountId, call: &Self::Call, _: DispatchInfo, _: usize)
Gavin Wood's avatar
Gavin Wood committed
111
		-> TransactionValidity
112
113
	{
		match call {
Gavin Wood's avatar
Gavin Wood committed
114
			Call::Slots(_) | Call::Registrar(_)
115
116
				=> Err(InvalidTransaction::Custom(ValidityError::NoPermission.into()).into()),
			_ => Ok(Default::default()),
117
118
119
120
		}
	}
}

121
parameter_types! {
122
	pub const Version: RuntimeVersion = VERSION;
123
124
}

125
126
impl system::Trait for Runtime {
	type Origin = Origin;
127
	type Call = Call;
Gav Wood's avatar
Gav Wood committed
128
	type Index = Nonce;
129
130
131
132
	type BlockNumber = BlockNumber;
	type Hash = Hash;
	type Hashing = BlakeTwo256;
	type AccountId = AccountId;
Gav Wood's avatar
Gav Wood committed
133
	type Lookup = Indices;
134
	type Header = generic::Header<BlockNumber, BlakeTwo256>;
Gav's avatar
Gav committed
135
	type Event = Event;
136
	type BlockHashCount = BlockHashCount;
137
138
139
	type MaximumBlockWeight = MaximumBlockWeight;
	type MaximumBlockLength = MaximumBlockLength;
	type AvailableBlockRatio = AvailableBlockRatio;
140
	type Version = Version;
141
	type ModuleToIndex = ModuleToIndex;
142
143
}

144
parameter_types! {
145
	pub const EpochDuration: u64 = EPOCH_DURATION_IN_BLOCKS as u64;
146
147
148
149
150
151
	pub const ExpectedBlockTime: Moment = MILLISECS_PER_BLOCK;
}

impl babe::Trait for Runtime {
	type EpochDuration = EpochDuration;
	type ExpectedBlockTime = ExpectedBlockTime;
152
153
154

	// session module is the trigger
	type EpochChangeTrigger = babe::ExternalTrigger;
155
156
}

Gav Wood's avatar
Gav Wood committed
157
158
159
160
161
162
163
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
164
parameter_types! {
165
	pub const ExistentialDeposit: Balance = 100 * CENTS;
Gavin Wood's avatar
Gavin Wood committed
166
167
168
169
170
171
172
	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,
173
174
175
	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
176
177
>;

178
impl balances::Trait for Runtime {
Gav's avatar
Gav committed
179
180
	type Balance = Balance;
	type OnFreeBalanceZero = Staking;
Gav Wood's avatar
Gav Wood committed
181
	type OnNewAccount = Indices;
Gav's avatar
Gav committed
182
	type Event = Event;
183
184
	type DustRemoval = ();
	type TransferPayment = ();
Gavin Wood's avatar
Gavin Wood committed
185
186
187
	type ExistentialDeposit = ExistentialDeposit;
	type TransferFee = TransferFee;
	type CreationFee = CreationFee;
188
189
190
191
192
}

parameter_types! {
	pub const TransactionBaseFee: Balance = 1 * CENTS;
	pub const TransactionByteFee: Balance = 10 * MILLICENTS;
193
194
	// for a sane configuration, this should always be less than `AvailableBlockRatio`.
	pub const TargetBlockFullness: Perbill = Perbill::from_percent(25);
195
196
197
198
199
}

impl transaction_payment::Trait for Runtime {
	type Currency = Balances;
	type OnTransactionPayment = DealWithFees;
Gavin Wood's avatar
Gavin Wood committed
200
201
	type TransactionBaseFee = TransactionBaseFee;
	type TransactionByteFee = TransactionByteFee;
202
	type WeightToFee = WeightToFee;
203
	type FeeMultiplierUpdate = TargetedFeeAdjustment<TargetBlockFullness, Self>;
Gav's avatar
Gav committed
204
205
}

206
parameter_types! {
207
	pub const MinimumPeriod: u64 = SLOT_DURATION / 2;
208
}
209
impl timestamp::Trait for Runtime {
210
	type Moment = u64;
211
	type OnTimestampSet = Babe;
212
	type MinimumPeriod = MinimumPeriod;
213
214
}

Gavin Wood's avatar
Gavin Wood committed
215
parameter_types! {
216
	pub const UncleGenerations: u32 = 0;
Gavin Wood's avatar
Gavin Wood committed
217
218
219
220
}

// TODO: substrate#2986 implement this properly
impl authorship::Trait for Runtime {
221
	type FindAuthor = session::FindAccountFromAuthorIndex<Self, Babe>;
Gavin Wood's avatar
Gavin Wood committed
222
223
	type UncleGenerations = UncleGenerations;
	type FilterUncle = ();
Gavin Wood's avatar
Gavin Wood committed
224
	type EventHandler = (Staking, ImOnline);
Gavin Wood's avatar
Gavin Wood committed
225
226
}

227
228
229
230
231
232
parameter_types! {
	pub const Period: BlockNumber = 10 * MINUTES;
	pub const Offset: BlockNumber = 0;
}

impl_opaque_keys! {
233
	pub struct SessionKeys {
Gavin Wood's avatar
Gavin Wood committed
234
235
236
237
		pub grandpa: Grandpa,
		pub babe: Babe,
		pub im_online: ImOnline,
		pub parachain_validator: Parachains,
Gavin Wood's avatar
Gavin Wood committed
238
		pub authority_discovery: AuthorityDiscovery,
239
	}
240
241
}

thiolliere's avatar
thiolliere committed
242
243
244
245
parameter_types! {
	pub const DisabledValidatorsThreshold: Perbill = Perbill::from_percent(17);
}

246
impl session::Trait for Runtime {
247
	type OnSessionEnding = Staking;
Gavin Wood's avatar
Gavin Wood committed
248
	type SessionHandler = <SessionKeys as OpaqueKeys>::KeyTypeIdProviders;
249
	type ShouldEndSession = Babe;
Gav's avatar
Gav committed
250
	type Event = Event;
251
	type Keys = SessionKeys;
252
253
	type ValidatorId = AccountId;
	type ValidatorIdOf = staking::StashOf<Self>;
254
	type SelectInitialValidators = Staking;
thiolliere's avatar
thiolliere committed
255
	type DisabledValidatorsThreshold = DisabledValidatorsThreshold;
256
257
258
259
}

impl session::historical::Trait for Runtime {
	type FullIdentification = staking::Exposure<AccountId, Balance>;
260
	type FullIdentificationOf = staking::ExposureOf<Runtime>;
261
262
}

263
pallet_staking_reward_curve::build! {
thiolliere's avatar
thiolliere committed
264
265
266
267
268
269
270
271
272
273
	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,
	);
}

274
parameter_types! {
Gavin Wood's avatar
Gavin Wood committed
275
	// Six sessions in an era (24 hours).
276
	pub const SessionsPerEra: SessionIndex = 6;
Gavin Wood's avatar
Gavin Wood committed
277
	// 28 eras for unbonding (28 days).
Gavin Wood's avatar
Gavin Wood committed
278
279
	pub const BondingDuration: staking::EraIndex = 28;
	pub const SlashDeferDuration: staking::EraIndex = 28;
thiolliere's avatar
thiolliere committed
280
	pub const RewardCurve: &'static PiecewiseLinear<'static> = &REWARD_CURVE;
281
}
282

283
impl staking::Trait for Runtime {
284
	type RewardRemainder = Treasury;
285
	type CurrencyToVote = CurrencyToVoteHandler<Self>;
Gav's avatar
Gav committed
286
	type Event = Event;
287
	type Currency = Balances;
288
	type Slash = Treasury;
289
	type Reward = ();
290
291
	type SessionsPerEra = SessionsPerEra;
	type BondingDuration = BondingDuration;
Gavin Wood's avatar
Gavin Wood committed
292
293
	type SlashDeferDuration = SlashDeferDuration;
	// A super-majority of the council can cancel the slash.
Gavin Wood's avatar
Gavin Wood committed
294
	type SlashCancelOrigin = collective::EnsureProportionAtLeast<_3, _4, AccountId, CouncilCollective>;
295
	type SessionInterface = Self;
296
	type Time = Timestamp;
thiolliere's avatar
thiolliere committed
297
	type RewardCurve = RewardCurve;
298
299
}

300
parameter_types! {
301
302
	pub const LaunchPeriod: BlockNumber = 28 * DAYS;
	pub const VotingPeriod: BlockNumber = 28 * DAYS;
Gavin Wood's avatar
Gavin Wood committed
303
	pub const EmergencyVotingPeriod: BlockNumber = 3 * HOURS;
304
	pub const MinimumDeposit: Balance = 100 * DOLLARS;
305
306
	pub const EnactmentPeriod: BlockNumber = 8 * DAYS;
	pub const CooloffPeriod: BlockNumber = 7 * DAYS;
Gavin Wood's avatar
Gavin Wood committed
307
308
	// One cent: $10,000 / MB
	pub const PreimageByteDeposit: Balance = 1 * CENTS;
309
310
}

311
312
313
impl democracy::Trait for Runtime {
	type Proposal = Call;
	type Event = Event;
314
	type Currency = Balances;
315
316
317
	type EnactmentPeriod = EnactmentPeriod;
	type LaunchPeriod = LaunchPeriod;
	type VotingPeriod = VotingPeriod;
318
	type EmergencyVotingPeriod = EmergencyVotingPeriod;
319
	type MinimumDeposit = MinimumDeposit;
320
321
	/// A straight majority of the council can decide what their next motion is.
	type ExternalOrigin = collective::EnsureProportionAtLeast<_1, _2, AccountId, CouncilCollective>;
322
323
	/// A 60% super-majority can have the next scheduled referendum be a straight majority-carries vote.
	type ExternalMajorityOrigin = collective::EnsureProportionAtLeast<_3, _5, AccountId, CouncilCollective>;
324
325
326
327
328
329
330
331
332
333
334
	/// 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>;
335
	type CooloffPeriod = CooloffPeriod;
Gavin Wood's avatar
Gavin Wood committed
336
337
	type PreimageByteDeposit = PreimageByteDeposit;
	type Slash = Treasury;
338
}
339

340
341
type CouncilCollective = collective::Instance1;
impl collective::Trait<CouncilCollective> for Runtime {
342
343
344
345
346
	type Origin = Origin;
	type Proposal = Call;
	type Event = Event;
}

Gavin Wood's avatar
Gavin Wood committed
347
parameter_types! {
348
349
	pub const CandidacyBond: Balance = 100 * DOLLARS;
	pub const VotingBond: Balance = 5 * DOLLARS;
350
351
352
	/// Weekly council elections initially, later monthly.
	pub const TermDuration: BlockNumber = 7 * DAYS;
	/// 13 members initially, to be increased to 23 eventually.
Kian Paimani's avatar
Kian Paimani committed
353
	pub const DesiredMembers: u32 = 13;
354
	pub const DesiredRunnersUp: u32 = 20;
355
356
357
}

impl elections_phragmen::Trait for Runtime {
358
	type Event = Event;
359
360
	type Currency = Balances;
	type ChangeMembers = Council;
361
	type CurrencyToVote = CurrencyToVoteHandler<Self>;
Gavin Wood's avatar
Gavin Wood committed
362
363
	type CandidacyBond = CandidacyBond;
	type VotingBond = VotingBond;
Kian Paimani's avatar
Kian Paimani committed
364
365
366
	type TermDuration = TermDuration;
	type DesiredMembers = DesiredMembers;
	type DesiredRunnersUp = DesiredRunnersUp;
367
368
369
	type LoserCandidate = Treasury;
	type BadReport = Treasury;
	type KickedMember = Treasury;
370
371
}

372
373
type TechnicalCollective = collective::Instance2;
impl collective::Trait<TechnicalCollective> for Runtime {
374
375
376
377
378
	type Origin = Origin;
	type Proposal = Call;
	type Event = Event;
}

379
380
381
382
383
384
385
386
387
388
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
389
390
parameter_types! {
	pub const ProposalBond: Permill = Permill::from_percent(5);
391
392
393
	pub const ProposalBondMinimum: Balance = 100 * DOLLARS;
	pub const SpendPeriod: BlockNumber = 24 * DAYS;
	pub const Burn: Permill = Permill::from_percent(1);
Gavin Wood's avatar
Gavin Wood committed
394
395
}

396
impl treasury::Trait for Runtime {
Gavin Wood's avatar
Gavin Wood committed
397
	type Currency = Balances;
398
	type ApproveOrigin = collective::EnsureProportionAtLeast<_3, _5, AccountId, CouncilCollective>;
399
	type RejectOrigin = collective::EnsureProportionMoreThan<_1, _2, AccountId, CouncilCollective>;
400
	type Event = Event;
401
	type ProposalRejection = Treasury;
Gavin Wood's avatar
Gavin Wood committed
402
403
404
405
	type ProposalBond = ProposalBond;
	type ProposalBondMinimum = ProposalBondMinimum;
	type SpendPeriod = SpendPeriod;
	type Burn = Burn;
406
}
407

408
409
410
411
412
413
impl offences::Trait for Runtime {
	type Event = Event;
	type IdentificationTuple = session::historical::IdentificationTuple<Self>;
	type OnOffenceHandler = Staking;
}

Gavin Wood's avatar
Gavin Wood committed
414
415
impl authority_discovery::Trait for Runtime {}

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

418
419
420
421
parameter_types! {
	pub const SessionDuration: BlockNumber = EPOCH_DURATION_IN_BLOCKS as _;
}

422
impl im_online::Trait for Runtime {
thiolliere's avatar
thiolliere committed
423
	type AuthorityId = ImOnlineId;
424
	type Event = Event;
Gavin Wood's avatar
Gavin Wood committed
425
426
	type Call = Call;
	type SubmitTransaction = SubmitTransaction;
427
	type ReportUnresponsiveness = Offences;
428
	type SessionDuration = SessionDuration;
429
430
}

431
432
433
434
impl grandpa::Trait for Runtime {
	type Event = Event;
}

Gavin Wood's avatar
Gavin Wood committed
435
436
437
438
439
440
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 {
441
	type OnFinalizationStalled = ();
Gavin Wood's avatar
Gavin Wood committed
442
443
444
445
	type WindowSize = WindowSize;
	type ReportLatency = ReportLatency;
}

446
447
448
449
parameter_types! {
	pub const AttestationPeriod: BlockNumber = 50;
}

450
451
452
impl attestations::Trait for Runtime {
	type AttestationPeriod = AttestationPeriod;
	type ValidatorIdentities = parachains::ValidatorIdentities<Runtime>;
453
	type RewardAttestation = Staking;
454
455
}

456
457
458
impl parachains::Trait for Runtime {
	type Origin = Origin;
	type Call = Call;
459
	type ParachainCurrency = Balances;
460
	type Randomness = RandomnessCollectiveFlip;
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
	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;
479
}
480

Gavin Wood's avatar
Gavin Wood committed
481
parameter_types! {
482
	pub const LeasePeriod: BlockNumber = 100_000;
Gavin Wood's avatar
Gavin Wood committed
483
484
485
486
487
	pub const EndingPeriod: BlockNumber = 1000;
}

impl slots::Trait for Runtime {
	type Event = Event;
488
489
	type Currency = Balances;
	type Parachains = Registrar;
Gavin Wood's avatar
Gavin Wood committed
490
491
	type LeasePeriod = LeasePeriod;
	type EndingPeriod = EndingPeriod;
492
	type Randomness = RandomnessCollectiveFlip;
Gavin Wood's avatar
Gavin Wood committed
493
494
}

Gavin Wood's avatar
Gavin Wood committed
495
parameter_types! {
496
	pub const Prefix: &'static [u8] = b"Pay DOTs to the Polkadot account:";
497
498
499
500
501
502
503
504
}

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

505
506
507
508
509
impl sudo::Trait for Runtime {
	type Event = Event;
	type Proposal = Call;
}

Gavin Wood's avatar
Gavin Wood committed
510
construct_runtime! {
511
	pub enum Runtime where
512
		Block = Block,
513
		NodeBlock = primitives::Block,
514
		UncheckedExtrinsic = UncheckedExtrinsic
515
	{
516
		// Basic stuff; balances is uncallable initially.
Gavin Wood's avatar
Gavin Wood committed
517
		System: system::{Module, Call, Storage, Config, Event},
Ashley's avatar
Ashley committed
518
		RandomnessCollectiveFlip: randomness_collective_flip::{Module, Storage},
519
520

		// Must be before session.
521
		Babe: babe::{Module, Call, Storage, Config, Inherent(Timestamp)},
522
523

		Timestamp: timestamp::{Module, Call, Storage, Inherent},
Gav Wood's avatar
Gav Wood committed
524
		Indices: indices,
525
		Balances: balances::{Module, Call, Storage, Config<T>, Event<T>},
526
		TransactionPayment: transaction_payment::{Module, Storage},
527
528
529

		// Consensus support.
		Authorship: authorship::{Module, Call, Storage},
530
		Staking: staking::{default},
531
		Offences: offences::{Module, Call, Storage, Event},
532
		Session: session::{Module, Call, Storage, Event, Config<T>},
533
534
		FinalityTracker: finality_tracker::{Module, Call, Inherent},
		Grandpa: grandpa::{Module, Call, Storage, Config, Event},
thiolliere's avatar
thiolliere committed
535
		ImOnline: im_online::{Module, Call, Storage, Event<T>, ValidateUnsigned, Config<T>},
Gavin Wood's avatar
Gavin Wood committed
536
		AuthorityDiscovery: authority_discovery::{Module, Call, Config},
537

538
539
540
		// Sudo. Usable initially.
		Sudo: sudo,

541
		// Governance stuff; uncallable initially.
Gavin Wood's avatar
Gavin Wood committed
542
		Democracy: democracy::{Module, Call, Storage, Config, Event<T>},
543
544
		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
545
		ElectionsPhragmen: elections_phragmen::{Module, Call, Storage, Event<T>},
546
		TechnicalMembership: membership::<Instance1>::{Module, Call, Storage, Event<T>, Config<T>},
Gavin Wood's avatar
Gavin Wood committed
547
		Treasury: treasury::{Module, Call, Storage, Event<T>},
548
549
550
551
552
553

		// 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.
554
		Parachains: parachains::{Module, Call, Storage, Config, Inherent, Origin},
555
		Attestations: attestations::{Module, Call, Storage},
Gavin Wood's avatar
Gavin Wood committed
556
		Slots: slots::{Module, Call, Storage, Event<T>},
557
		Registrar: registrar::{Module, Call, Storage, Event, Config<T>},
Gav's avatar
Gav committed
558
	}
Gavin Wood's avatar
Gavin Wood committed
559
}
560
561

/// The address format for describing accounts.
Gav Wood's avatar
Gav Wood committed
562
pub type Address = <Indices as StaticLookup>::Source;
563
/// Block header type as expected by this runtime.
564
pub type Header = generic::Header<BlockNumber, BlakeTwo256>;
565
566
567
568
569
570
/// 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>;
571
572
/// The SignedExtension to the basic transaction logic.
pub type SignedExtra = (
573
574
	// RELEASE: remove this for release build.
	OnlyStakingAndClaims,
575
	system::CheckVersion<Runtime>,
576
	system::CheckGenesis<Runtime>,
577
578
579
	system::CheckEra<Runtime>,
	system::CheckNonce<Runtime>,
	system::CheckWeight<Runtime>,
580
	transaction_payment::ChargeTransactionPayment::<Runtime>,
581
	registrar::LimitParathreadCommits<Runtime>
582
);
583
/// Unchecked extrinsic type as expected by this runtime.
584
pub type UncheckedExtrinsic = generic::UncheckedExtrinsic<Address, Call, Signature, SignedExtra>;
585
/// Extrinsic type that has already been checked.
Gav Wood's avatar
Gav Wood committed
586
pub type CheckedExtrinsic = generic::CheckedExtrinsic<AccountId, Nonce, Call>;
587
/// Executive: handles dispatch to the various modules.
588
pub type Executive = executive::Executive<Runtime, Block, system::ChainContext<Runtime>, Runtime, AllModules>;
589

590
591
sp_api::impl_runtime_apis! {
	impl sp_api::Core<Block> for Runtime {
592
593
594
595
596
597
598
		fn version() -> RuntimeVersion {
			VERSION
		}

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

600
601
		fn initialize_block(header: &<Block as BlockT>::Header) {
			Executive::initialize_block(header)
602
603
		}
	}
Gav's avatar
Gav committed
604

605
	impl sp_api::Metadata<Block> for Runtime {
606
607
608
		fn metadata() -> OpaqueMetadata {
			Runtime::metadata().into()
		}
Gav's avatar
Gav committed
609
610
	}

611
	impl block_builder_api::BlockBuilder<Block> for Runtime {
612
		fn apply_extrinsic(extrinsic: <Block as BlockT>::Extrinsic) -> ApplyExtrinsicResult {
613
614
615
			Executive::apply_extrinsic(extrinsic)
		}

616
617
		fn finalize_block() -> <Block as BlockT>::Header {
			Executive::finalize_block()
618
		}
619

Gavin Wood's avatar
Gavin Wood committed
620
		fn inherent_extrinsics(data: inherents::InherentData) -> Vec<<Block as BlockT>::Extrinsic> {
621
			data.create_extrinsics()
622
		}
623

Gavin Wood's avatar
Gavin Wood committed
624
625
626
627
		fn check_inherents(
			block: Block,
			data: inherents::InherentData,
		) -> inherents::CheckInherentsResult {
628
			data.check_extrinsics(&block)
629
		}
630

631
		fn random_seed() -> <Block as BlockT>::Hash {
Ashley's avatar
Ashley committed
632
			RandomnessCollectiveFlip::random_seed()
633
		}
634
635
	}

636
	impl tx_pool_api::runtime_api::TaggedTransactionQueue<Block> for Runtime {
637
638
639
		fn validate_transaction(tx: <Block as BlockT>::Extrinsic) -> TransactionValidity {
			Executive::validate_transaction(tx)
		}
Gav's avatar
Gav committed
640
	}
641

642
	impl offchain_primitives::OffchainWorkerApi<Block> for Runtime {
643
		fn offchain_worker(number: sp_runtime::traits::NumberFor<Block>) {
644
645
646
647
			Executive::offchain_worker(number)
		}
	}

648
	impl parachain::ParachainHost<Block> for Runtime {
Gav Wood's avatar
Gav Wood committed
649
		fn validators() -> Vec<parachain::ValidatorId> {
650
			Parachains::authorities()
651
652
		}
		fn duty_roster() -> parachain::DutyRoster {
653
			Parachains::calculate_duty_roster().0
654
		}
655
656
		fn active_parachains() -> Vec<(parachain::Id, Option<(parachain::CollatorId, parachain::Retriable)>)> {
			Registrar::active_paras()
657
		}
658
659
		fn parachain_status(id: parachain::Id) -> Option<parachain::Status> {
			Parachains::parachain_status(&id)
660
661
662
663
		}
		fn parachain_code(id: parachain::Id) -> Option<Vec<u8>> {
			Parachains::parachain_code(&id)
		}
664
665
666
667
		fn ingress(to: parachain::Id, since: Option<BlockNumber>)
			-> Option<parachain::StructuredUnroutedIngress>
		{
			Parachains::ingress(to, since).map(parachain::StructuredUnroutedIngress)
668
		}
669
670
671
672
673
674
675
676
677
678
679
680
681
		fn get_heads(extrinsics: Vec<<Block as BlockT>::Extrinsic>) -> Option<Vec<CandidateReceipt>> {
			extrinsics
				.into_iter()
				.find_map(|ex| match UncheckedExtrinsic::decode(&mut ex.encode().as_slice()) {
					Ok(ex) => match ex.function {
						Call::Parachains(ParachainsCall::set_heads(heads)) => {
							Some(heads.into_iter().map(|c| c.candidate).collect())
						}
						_ => None,
					}
					Err(_) => None,
				})
		}
682
	}
683
684

	impl fg_primitives::GrandpaApi<Block> for Runtime {
685
		fn grandpa_authorities() -> Vec<(GrandpaId, u64)> {
686
687
688
689
			Grandpa::grandpa_authorities()
		}
	}

690
	impl babe_primitives::BabeApi<Block> for Runtime {
691
		fn configuration() -> babe_primitives::BabeConfiguration {
692
693
694
695
696
697
698
			// 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(),
699
				epoch_length: EpochDuration::get(),
700
				c: PRIMARY_PROBABILITY,
701
				genesis_authorities: Babe::authorities(),
702
				randomness: Babe::randomness(),
703
				secondary_slots: true,
704
			}
705
706
707
		}
	}

Gavin Wood's avatar
Gavin Wood committed
708
709
710
711
712
713
	impl authority_discovery_primitives::AuthorityDiscoveryApi<Block> for Runtime {
		fn authorities() -> Vec<AuthorityDiscoveryId> {
			AuthorityDiscovery::authorities()
		}
	}

Gavin Wood's avatar
Gavin Wood committed
714
	impl sp_session::SessionKeys<Block> for Runtime {
715
716
717
718
		fn generate_session_keys(seed: Option<Vec<u8>>) -> Vec<u8> {
			SessionKeys::generate(seed)
		}
	}
719
720
721
722
723
724

	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
725

726
	impl pallet_transaction_payment_rpc_runtime_api::TransactionPaymentApi<
Kian Paimani's avatar
Kian Paimani committed
727
728
729
730
731
732
733
734
		Block,
		Balance,
		UncheckedExtrinsic,
	> for Runtime {
		fn query_info(uxt: UncheckedExtrinsic, len: u32) -> RuntimeDispatchInfo<Balance> {
			TransactionPayment::query_info(uxt, len)
		}
	}
Gav's avatar
Gav committed
735
}