lib.rs 24.9 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};
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::{
thiolliere's avatar
thiolliere committed
43
	ApplyResult, generic, Permill, Perbill, impl_opaque_keys, create_runtime_str, key_types,
Gavin Wood's avatar
Gavin Wood committed
44
	transaction_validity::{TransactionValidity, InvalidTransaction, TransactionValidityError},
45
46
	weights::{Weight, DispatchInfo}, curve::PiecewiseLinear,
	traits::{BlakeTwo256, Block as BlockT, StaticLookup, SignedExtension},
Gav Wood's avatar
Gav Wood committed
47
};
Arkadiy Paronyan's avatar
Arkadiy Paronyan committed
48
use version::RuntimeVersion;
49
use grandpa::{AuthorityId as GrandpaId, fg_primitives};
thiolliere's avatar
thiolliere committed
50
use babe_primitives::{AuthorityId as BabeId, AuthoritySignature as BabeSignature};
51
use elections::VoteIndex;
52
53
54
#[cfg(any(feature = "std", test))]
use version::NativeVersion;
use substrate_primitives::OpaqueMetadata;
55
use sr_staking_primitives::SessionIndex;
Gavin Wood's avatar
Gavin Wood committed
56
use srml_support::{
57
	parameter_types, construct_runtime, traits::{SplitTwoWays, Currency}
Gavin Wood's avatar
Gavin Wood committed
58
};
59
use authority_discovery_primitives::{AuthorityId as EncodedAuthorityId, Signature as EncodedSignature};
thiolliere's avatar
thiolliere committed
60
use im_online::sr25519::AuthorityId as ImOnlineId;
Gavin Wood's avatar
Gavin Wood committed
61
use system::offchain::TransactionSubmitter;
62

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

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

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

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

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

// 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,
103
	spec_version: 1004,
104
105
106
	impl_version: 0,
	apis: RUNTIME_API_VERSIONS,
};
Arkadiy Paronyan's avatar
Arkadiy Paronyan committed
107

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

117
118
119
120
121
122
123
124
125
126
127
128
/// 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.
#[derive(Default, Encode, Decode, Clone, Eq, PartialEq)]
#[cfg_attr(feature = "std", derive(Debug))]
pub struct OnlyStakingAndClaims;
impl SignedExtension for OnlyStakingAndClaims {
	type AccountId = AccountId;
	type Call = Call;
	type AdditionalSigned = ();
	type Pre = ();
Gavin Wood's avatar
Gavin Wood committed
129
	fn additional_signed(&self) -> rstd::result::Result<(), TransactionValidityError> { Ok(()) }
130
	fn validate(&self, _: &Self::AccountId, call: &Self::Call, _: DispatchInfo, _: usize)
Gavin Wood's avatar
Gavin Wood committed
131
		-> TransactionValidity
132
133
	{
		match call {
134
135
			Call::Staking(_) | Call::Claims(_) | Call::Sudo(_) | Call::Session(_) =>
				Ok(Default::default()),
Gavin Wood's avatar
Gavin Wood committed
136
			_ => Err(InvalidTransaction::Custom(ValidityError::NoPermission.into()).into()),
137
138
139
140
		}
	}
}

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

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

151
152
impl system::Trait for Runtime {
	type Origin = Origin;
153
	type Call = Call;
Gav Wood's avatar
Gav Wood committed
154
	type Index = Nonce;
155
156
157
158
	type BlockNumber = BlockNumber;
	type Hash = Hash;
	type Hashing = BlakeTwo256;
	type AccountId = AccountId;
Gav Wood's avatar
Gav Wood committed
159
	type Lookup = Indices;
160
	type Header = generic::Header<BlockNumber, BlakeTwo256>;
161
	type WeightMultiplierUpdate = WeightMultiplierUpdateHandler;
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
200
201
	pub const TransferFee: Balance = 1 * CENTS;
	pub const CreationFee: Balance = 1 * CENTS;
	pub const TransactionBaseFee: Balance = 1 * CENTS;
	pub const TransactionByteFee: Balance = 10 * MILLICENTS;
}

/// Splits fees 80/20 between treasury and block author.
pub type DealWithFees = SplitTwoWays<
	Balance,
	NegativeImbalance,
202
203
	_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
204
205
>;

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

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

Gavin Wood's avatar
Gavin Wood committed
231
parameter_types! {
232
	pub const UncleGenerations: u32 = 0;
Gavin Wood's avatar
Gavin Wood committed
233
234
235
236
}

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

243
244
245
246
247
parameter_types! {
	pub const Period: BlockNumber = 10 * MINUTES;
	pub const Offset: BlockNumber = 0;
}

248
type SessionHandlers = (Grandpa, Babe, ImOnline, AuthorityDiscovery, Parachains);
249
impl_opaque_keys! {
250
	pub struct SessionKeys {
251
252
253
254
255
256
257
258
		#[id(key_types::GRANDPA)]
		pub grandpa: GrandpaId,
		#[id(key_types::BABE)]
		pub babe: BabeId,
		#[id(key_types::IM_ONLINE)]
		pub im_online: ImOnlineId,
		#[id(parachain::PARACHAIN_KEY_TYPE_ID)]
		pub parachain_validator: parachain::ValidatorId,
259
	}
260
261
262
263
264
265
266
267
}

// NOTE: `SessionHandler` and `SessionKeys` are co-dependent: One key will be used for each handler.
// The number and order of items in `SessionHandler` *MUST* be the same number and order of keys in
// `SessionKeys`.
// TODO: Introduce some structure to tie these together to make it a bit less of a footgun. This
// should be easy, since OneSessionHandler trait provides the `Key` as an associated type. #2858

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

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

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

thiolliere's avatar
thiolliere committed
289
290
291
292
293
294
295
296
297
298
299
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,
	);
}

300
parameter_types! {
Gavin Wood's avatar
Gavin Wood committed
301
	// Six sessions in an era (24 hours).
302
	pub const SessionsPerEra: SessionIndex = 6;
Gavin Wood's avatar
Gavin Wood committed
303
304
	// 28 eras for unbonding (28 days).
	pub const BondingDuration: staking::EraIndex = 28;
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
323
324
parameter_types! {
	pub const LaunchPeriod: BlockNumber = 28 * 24 * 60 * MINUTES;
	pub const VotingPeriod: BlockNumber = 28 * 24 * 60 * MINUTES;
325
	pub const EmergencyVotingPeriod: BlockNumber = 3 * 24 * 60 * MINUTES;
326
	pub const MinimumDeposit: Balance = 100 * DOLLARS;
327
	pub const EnactmentPeriod: BlockNumber = 30 * 24 * 60 * MINUTES;
328
	pub const CooloffPeriod: BlockNumber = 28 * 24 * 60 * MINUTES;
329
330
}

331
332
333
impl democracy::Trait for Runtime {
	type Proposal = Call;
	type Event = Event;
334
	type Currency = Balances;
335
336
337
	type EnactmentPeriod = EnactmentPeriod;
	type LaunchPeriod = LaunchPeriod;
	type VotingPeriod = VotingPeriod;
338
	type EmergencyVotingPeriod = EmergencyVotingPeriod;
339
	type MinimumDeposit = MinimumDeposit;
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
	/// 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>;
355
	type CooloffPeriod = CooloffPeriod;
356
}
357

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

Gavin Wood's avatar
Gavin Wood committed
365
parameter_types! {
366
367
368
	pub const CandidacyBond: Balance = 10 * DOLLARS;
	pub const VotingBond: Balance = 1 * DOLLARS;
	pub const VotingFee: Balance = 2 * DOLLARS;
thiolliere's avatar
thiolliere committed
369
	pub const MinimumVotingLock: Balance = 1 * DOLLARS;
Gavin Wood's avatar
Gavin Wood committed
370
371
372
	pub const PresentSlashPerVoter: Balance = 1 * CENTS;
	pub const CarryCount: u32 = 6;
	// one additional vote should go by before an inactive voter can be reaped.
373
374
	pub const InactiveGracePeriod: VoteIndex = 1;
	pub const ElectionsVotingPeriod: BlockNumber = 2 * DAYS;
Gavin Wood's avatar
Gavin Wood committed
375
376
377
	pub const DecayRatio: u32 = 0;
}

378
impl elections::Trait for Runtime {
379
	type Event = Event;
380
	type Currency = Balances;
381
382
	type BadPresentation = ();
	type BadReaper = ();
383
384
	type BadVoterIndex = ();
	type LoserCandidate = ();
385
	type ChangeMembers = Council;
Gavin Wood's avatar
Gavin Wood committed
386
387
388
	type CandidacyBond = CandidacyBond;
	type VotingBond = VotingBond;
	type VotingFee = VotingFee;
thiolliere's avatar
thiolliere committed
389
	type MinimumVotingLock = MinimumVotingLock;
Gavin Wood's avatar
Gavin Wood committed
390
391
392
	type PresentSlashPerVoter = PresentSlashPerVoter;
	type CarryCount = CarryCount;
	type InactiveGracePeriod = InactiveGracePeriod;
393
	type VotingPeriod = ElectionsVotingPeriod;
Gavin Wood's avatar
Gavin Wood committed
394
	type DecayRatio = DecayRatio;
395
396
}

397
398
type TechnicalCollective = collective::Instance2;
impl collective::Trait<TechnicalCollective> for Runtime {
399
400
401
402
403
	type Origin = Origin;
	type Proposal = Call;
	type Event = Event;
}

404
405
406
407
408
409
410
411
412
413
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
414
415
parameter_types! {
	pub const ProposalBond: Permill = Permill::from_percent(5);
Gavin Wood's avatar
Gavin Wood committed
416
417
418
	pub const ProposalBondMinimum: Balance = 100 * DOLLARS;
	pub const SpendPeriod: BlockNumber = 24 * DAYS;
	pub const Burn: Permill = Permill::from_percent(5);
Gavin Wood's avatar
Gavin Wood committed
419
420
}

421
impl treasury::Trait for Runtime {
Gavin Wood's avatar
Gavin Wood committed
422
	type Currency = Balances;
423
424
	type ApproveOrigin = collective::EnsureProportionAtLeast<_2, _3, AccountId, CouncilCollective>;
	type RejectOrigin = collective::EnsureProportionMoreThan<_1, _2, AccountId, CouncilCollective>;
425
	type Event = Event;
426
427
	type MintedForSpending = ();
	type ProposalRejection = ();
Gavin Wood's avatar
Gavin Wood committed
428
429
430
431
	type ProposalBond = ProposalBond;
	type ProposalBondMinimum = ProposalBondMinimum;
	type SpendPeriod = SpendPeriod;
	type Burn = Burn;
432
}
433

434
435
436
437
438
439
impl offences::Trait for Runtime {
	type Event = Event;
	type IdentificationTuple = session::historical::IdentificationTuple<Self>;
	type OnOffenceHandler = Staking;
}

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

442
impl im_online::Trait for Runtime {
thiolliere's avatar
thiolliere committed
443
	type AuthorityId = ImOnlineId;
444
	type Event = Event;
Gavin Wood's avatar
Gavin Wood committed
445
446
	type Call = Call;
	type SubmitTransaction = SubmitTransaction;
447
	type ReportUnresponsiveness = ();
448
449
}

thiolliere's avatar
thiolliere committed
450
451
452
impl authority_discovery::Trait for Runtime {
    type AuthorityId = BabeId;
}
453

454
455
456
457
impl grandpa::Trait for Runtime {
	type Event = Event;
}

Gavin Wood's avatar
Gavin Wood committed
458
459
460
461
462
463
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 {
464
	type OnFinalizationStalled = ();
Gavin Wood's avatar
Gavin Wood committed
465
466
467
468
	type WindowSize = WindowSize;
	type ReportLatency = ReportLatency;
}

469
470
471
472
parameter_types! {
	pub const AttestationPeriod: BlockNumber = 50;
}

473
474
475
impl attestations::Trait for Runtime {
	type AttestationPeriod = AttestationPeriod;
	type ValidatorIdentities = parachains::ValidatorIdentities<Runtime>;
476
	type RewardAttestation = Staking;
477
478
}

479
480
481
impl parachains::Trait for Runtime {
	type Origin = Origin;
	type Call = Call;
482
	type ParachainCurrency = Balances;
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
	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;
501
}
502

Gavin Wood's avatar
Gavin Wood committed
503
parameter_types!{
504
	pub const LeasePeriod: BlockNumber = 100_000;
Gavin Wood's avatar
Gavin Wood committed
505
506
507
508
509
	pub const EndingPeriod: BlockNumber = 1000;
}

impl slots::Trait for Runtime {
	type Event = Event;
510
511
	type Currency = Balances;
	type Parachains = Registrar;
Gavin Wood's avatar
Gavin Wood committed
512
513
514
515
	type LeasePeriod = LeasePeriod;
	type EndingPeriod = EndingPeriod;
}

516
parameter_types!{
517
	// KUSAMA: for mainnet this should be removed.
518
	pub const Prefix: &'static [u8] = b"Pay KSMs to the Kusama account:";
519
520
	// KUSAMA: for mainnet this should be uncommented.
	//pub const Prefix: &'static [u8] = b"Pay DOTs to the Polkadot account:";
521
522
523
524
525
526
527
528
}

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

Gav Wood's avatar
Gav Wood committed
529
530
531
532
533
impl sudo::Trait for Runtime {
	type Event = Event;
	type Proposal = Call;
}

534
construct_runtime!(
535
	pub enum Runtime where
536
		Block = Block,
537
		NodeBlock = primitives::Block,
538
		UncheckedExtrinsic = UncheckedExtrinsic
539
	{
540
		// Basic stuff; balances is uncallable initially.
Gavin Wood's avatar
Gavin Wood committed
541
		System: system::{Module, Call, Storage, Config, Event},
Ashley's avatar
Ashley committed
542
		RandomnessCollectiveFlip: randomness_collective_flip::{Module, Storage},
543
544

		// Must be before session.
545
		Babe: babe::{Module, Call, Storage, Config, Inherent(Timestamp)},
546
547

		Timestamp: timestamp::{Module, Call, Storage, Inherent},
Gav Wood's avatar
Gav Wood committed
548
		Indices: indices,
549
550
551
552
		Balances: balances::{Module, Call, Storage, Config<T>, Event<T>},

		// Consensus support.
		Authorship: authorship::{Module, Call, Storage},
Gavin Wood's avatar
Gavin Wood committed
553
		Staking: staking::{default, OfflineWorker},
554
		Offences: offences::{Module, Call, Storage, Event},
555
		Session: session::{Module, Call, Storage, Event, Config<T>},
556
557
		FinalityTracker: finality_tracker::{Module, Call, Inherent},
		Grandpa: grandpa::{Module, Call, Storage, Config, Event},
thiolliere's avatar
thiolliere committed
558
		ImOnline: im_online::{Module, Call, Storage, Event<T>, ValidateUnsigned, Config<T>},
559
		AuthorityDiscovery: authority_discovery::{Module, Call, Config<T>},
560
561

		// Governance stuff; uncallable initially.
Gavin Wood's avatar
Gavin Wood committed
562
		Democracy: democracy::{Module, Call, Storage, Config, Event<T>},
563
564
565
		Council: collective::<Instance1>::{Module, Call, Storage, Origin<T>, Event<T>, Config<T>},
		TechnicalCommittee: collective::<Instance2>::{Module, Call, Storage, Origin<T>, Event<T>, Config<T>},
		Elections: elections::{Module, Call, Storage, Event<T>, Config<T>},
566
		TechnicalMembership: membership::<Instance1>::{Module, Call, Storage, Event<T>, Config<T>},
Gavin Wood's avatar
Gavin Wood committed
567
		Treasury: treasury::{Module, Call, Storage, Event<T>},
568
569
570
571
572
573

		// 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.
574
		Parachains: parachains::{Module, Call, Storage, Config, Inherent, Origin},
575
		Attestations: attestations::{Module, Call, Storage},
Gavin Wood's avatar
Gavin Wood committed
576
		Slots: slots::{Module, Call, Storage, Event<T>},
577
		Registrar: registrar::{Module, Call, Storage, Event, Config<T>},
578
579
580
581

		// Sudo. Usable initially.
		// RELEASE: remove this for release build.
		Sudo: sudo,
Gav's avatar
Gav committed
582
	}
583
584
585
);

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

impl_runtime_apis! {
615
	impl client_api::Core<Block> for Runtime {
616
617
618
619
620
621
622
		fn version() -> RuntimeVersion {
			VERSION
		}

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

624
625
		fn initialize_block(header: &<Block as BlockT>::Header) {
			Executive::initialize_block(header)
626
627
		}
	}
Gav's avatar
Gav committed
628

629
	impl client_api::Metadata<Block> for Runtime {
630
631
632
		fn metadata() -> OpaqueMetadata {
			Runtime::metadata().into()
		}
Gav's avatar
Gav committed
633
634
	}

635
	impl block_builder_api::BlockBuilder<Block> for Runtime {
636
637
638
639
		fn apply_extrinsic(extrinsic: <Block as BlockT>::Extrinsic) -> ApplyResult {
			Executive::apply_extrinsic(extrinsic)
		}

640
641
		fn finalize_block() -> <Block as BlockT>::Header {
			Executive::finalize_block()
642
		}
643

644
645
		fn inherent_extrinsics(data: InherentData) -> Vec<<Block as BlockT>::Extrinsic> {
			data.create_extrinsics()
646
		}
647

648
649
		fn check_inherents(block: Block, data: InherentData) -> CheckInherentsResult {
			data.check_extrinsics(&block)
650
		}
651

652
		fn random_seed() -> <Block as BlockT>::Hash {
Ashley's avatar
Ashley committed
653
			RandomnessCollectiveFlip::random_seed()
654
		}
655
656
	}

657
	impl client_api::TaggedTransactionQueue<Block> for Runtime {
658
659
660
		fn validate_transaction(tx: <Block as BlockT>::Extrinsic) -> TransactionValidity {
			Executive::validate_transaction(tx)
		}
Gav's avatar
Gav committed
661
	}
662

663
664
665
666
667
668
	impl offchain_primitives::OffchainWorkerApi<Block> for Runtime {
		fn offchain_worker(number: sr_primitives::traits::NumberFor<Block>) {
			Executive::offchain_worker(number)
		}
	}

669
	impl parachain::ParachainHost<Block> for Runtime {
Gav Wood's avatar
Gav Wood committed
670
		fn validators() -> Vec<parachain::ValidatorId> {
671
			Parachains::authorities()
672
673
		}
		fn duty_roster() -> parachain::DutyRoster {
674
			Parachains::calculate_duty_roster().0
675
		}
676
677
		fn active_parachains() -> Vec<(parachain::Id, Option<(parachain::CollatorId, parachain::Retriable)>)> {
			Registrar::active_paras()
678
		}
679
680
		fn parachain_status(id: parachain::Id) -> Option<parachain::Status> {
			Parachains::parachain_status(&id)
681
682
683
684
		}
		fn parachain_code(id: parachain::Id) -> Option<Vec<u8>> {
			Parachains::parachain_code(&id)
		}
685
686
687
688
		fn ingress(to: parachain::Id, since: Option<BlockNumber>)
			-> Option<parachain::StructuredUnroutedIngress>
		{
			Parachains::ingress(to, since).map(parachain::StructuredUnroutedIngress)
689
		}
690
	}
691
692

	impl fg_primitives::GrandpaApi<Block> for Runtime {
693
		fn grandpa_authorities() -> Vec<(GrandpaId, u64)> {
694
695
696
697
			Grandpa::grandpa_authorities()
		}
	}

698
	impl babe_primitives::BabeApi<Block> for Runtime {
699
		fn configuration() -> babe_primitives::BabeConfiguration {
700
701
702
703
704
705
706
			// 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(),
707
				epoch_length: EpochDuration::get(),
708
				c: PRIMARY_PROBABILITY,
709
				genesis_authorities: Babe::authorities(),
710
				randomness: Babe::randomness(),
711
				secondary_slots: true,
712
			}
713
714
715
		}
	}

716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
	impl authority_discovery_primitives::AuthorityDiscoveryApi<Block> for Runtime {
		fn authorities() -> Vec<EncodedAuthorityId> {
			AuthorityDiscovery::authorities().into_iter()
				.map(|id| id.encode())
				.map(EncodedAuthorityId)
				.collect()
		}

		fn sign(payload: &Vec<u8>) -> Option<(EncodedSignature, EncodedAuthorityId)> {
			AuthorityDiscovery::sign(payload).map(|(sig, id)| {
				(EncodedSignature(sig.encode()), EncodedAuthorityId(id.encode()))
			})
		}

		fn verify(payload: &Vec<u8>, signature: &EncodedSignature, authority_id: &EncodedAuthorityId) -> bool {
thiolliere's avatar
thiolliere committed
731
			let signature = match BabeSignature::decode(&mut &signature.0[..]) {
732
733
734
735
				Ok(s) => s,
				_ => return false,
			};

thiolliere's avatar
thiolliere committed
736
			let authority_id = match BabeId::decode(&mut &authority_id.0[..]) {
737
738
739
740
741
				Ok(id) => id,
				_ => return false,
			};

			AuthorityDiscovery::verify(payload, signature, authority_id)
thiolliere's avatar
thiolliere committed
742

743
744
745
		}
	}

746
747
748
749
750
751
	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)
		}
	}
Gav's avatar
Gav committed
752
}