lib.rs 9.17 KiB
Newer Older
// Copyright 2018 Parity Technologies (UK) Ltd.
Gav's avatar
Gav committed
// This file is part of Substrate Demo.

// Substrate Demo 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.

// Substrate Demo 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 Substrate Demo.  If not, see <http://www.gnu.org/licenses/>.

Gav Wood's avatar
Gav Wood committed
//! The Substrate Demo runtime. This can be compiled with ``#[no_std]`, ready for Wasm.
Gav's avatar
Gav committed

#![cfg_attr(not(feature = "std"), no_std)]

Gav Wood's avatar
Gav Wood committed
#[macro_use]
extern crate substrate_runtime_io as runtime_io;
Gav's avatar
Gav committed

Gav Wood's avatar
Gav Wood committed
#[macro_use]
Gav Wood's avatar
Gav Wood committed
extern crate substrate_runtime_support;
Gav Wood's avatar
Gav Wood committed
#[macro_use]
extern crate substrate_runtime_primitives as runtime_primitives;
Gav's avatar
Gav committed

Gav Wood's avatar
Gav Wood committed
#[cfg(feature = "std")]
#[macro_use]
extern crate serde_derive;

#[cfg(feature = "std")]
extern crate serde;

extern crate substrate_codec as codec;
extern crate substrate_primitives;

#[macro_use]
extern crate substrate_codec_derive;

#[cfg_attr(not(feature = "std"), macro_use)]
Gav Wood's avatar
Gav Wood committed
extern crate substrate_runtime_std as rstd;
extern crate substrate_runtime_balances as balances;
Gav Wood's avatar
Gav Wood committed
extern crate substrate_runtime_consensus as consensus;
extern crate substrate_runtime_council as council;
extern crate substrate_runtime_democracy as democracy;
extern crate substrate_runtime_executive as executive;
extern crate substrate_runtime_session as session;
extern crate substrate_runtime_staking as staking;
extern crate substrate_runtime_system as system;
extern crate substrate_runtime_timestamp as timestamp;
extern crate substrate_runtime_treasury as treasury;
Arkadiy Paronyan's avatar
Arkadiy Paronyan committed
#[macro_use]
extern crate substrate_runtime_version as version;
Gav's avatar
Gav committed
extern crate demo_primitives;

#[cfg(feature = "std")]
mod checked_block;

use rstd::prelude::*;
use demo_primitives::{AccountId, AccountIndex, Balance, BlockNumber, Hash, Index, SessionKey, Signature, InherentData};
Gav Wood's avatar
Gav Wood committed
use runtime_primitives::generic;
use runtime_primitives::traits::{Convert, BlakeTwo256, DigestItem};
Arkadiy Paronyan's avatar
Arkadiy Paronyan committed
use version::RuntimeVersion;
use council::motions as council_motions;
use substrate_primitives::u32_trait::{_2, _4};
Gav's avatar
Gav committed

Gav Wood's avatar
Gav Wood committed
#[cfg(any(feature = "std", test))]
pub use runtime_primitives::BuildStorage;
pub use consensus::Call as ConsensusCall;
pub use timestamp::Call as TimestampCall;
pub use runtime_primitives::Permill;
#[cfg(any(feature = "std", test))]
pub use checked_block::CheckedBlock;

const TIMESTAMP_SET_POSITION: u32 = 0;
const NOTE_OFFLINE_POSITION: u32 = 1;
Gav Wood's avatar
Gav Wood committed
// Workaround for https://github.com/rust-lang/rust/issues/26925 . Remove when sorted.
#[derive(Clone, Copy, PartialEq, Eq)]
#[cfg_attr(feature = "std", derive(Debug, Serialize, Deserialize))]
/// Runtime type used to collate and parameterize the various modules.
pub struct Runtime;
Arkadiy Paronyan's avatar
Arkadiy Paronyan committed
/// Runtime version.
pub const VERSION: RuntimeVersion = RuntimeVersion {
	spec_name: ver_str!("demo"),
	impl_name: ver_str!("substrate-demo"),
Gav Wood's avatar
Gav Wood committed
	authoring_version: 1,
	spec_version: 1,
Arkadiy Paronyan's avatar
Arkadiy Paronyan committed
	impl_version: 0,
};

impl system::Trait for Runtime {
	type Origin = Origin;
Gav Wood's avatar
Gav Wood committed
	type Index = Index;
	type BlockNumber = BlockNumber;
	type Hash = Hash;
	type Hashing = BlakeTwo256;
	type Digest = generic::Digest<Log>;
Gav Wood's avatar
Gav Wood committed
	type AccountId = AccountId;
	type Header = generic::Header<BlockNumber, BlakeTwo256, Log>;
	type Event = Event;
Gav Wood's avatar
Gav Wood committed
}

/// System module for this concrete runtime.
pub type System = system::Module<Runtime>;
Gav Wood's avatar
Gav Wood committed

impl balances::Trait for Runtime {
	type Balance = Balance;
	type AccountIndex = AccountIndex;
	type OnFreeBalanceZero = Staking;
	type EnsureAccountLiquid = Staking;
	type Event = Event;
}

/// Staking module for this concrete runtime.
pub type Balances = balances::Module<Runtime>;
impl consensus::Trait for Runtime {
	const NOTE_OFFLINE_POSITION: u32 = NOTE_OFFLINE_POSITION;
	type Log = Log;
	type SessionKey = SessionKey;
	type OnOfflineValidator = Staking;
}

/// Consensus module for this concrete runtime.
pub type Consensus = consensus::Module<Runtime>;
impl timestamp::Trait for Runtime {
	const TIMESTAMP_SET_POSITION: u32 = TIMESTAMP_SET_POSITION;
}

/// Timestamp module for this concrete runtime.
pub type Timestamp = timestamp::Module<Runtime>;
Gav Wood's avatar
Gav Wood committed
/// Session key conversion.
pub struct SessionKeyConversion;
impl Convert<AccountId, SessionKey> for SessionKeyConversion {
	fn convert(a: AccountId) -> SessionKey {
impl session::Trait for Runtime {
Gav Wood's avatar
Gav Wood committed
	type ConvertAccountIdToSessionKey = SessionKeyConversion;
	type OnSessionChange = Staking;
	type Event = Event;
Gav Wood's avatar
Gav Wood committed
}

/// Session module for this concrete runtime.
pub type Session = session::Module<Runtime>;
Gav Wood's avatar
Gav Wood committed

impl staking::Trait for Runtime {
	type OnRewardMinted = ();
	type Event = Event;
Gav Wood's avatar
Gav Wood committed
}

/// Staking module for this concrete runtime.
pub type Staking = staking::Module<Runtime>;
Gav Wood's avatar
Gav Wood committed

impl democracy::Trait for Runtime {
	type Proposal = Call;
Gav Wood's avatar
Gav Wood committed
	type Event = Event;
Gav Wood's avatar
Gav Wood committed
}

/// Democracy module for this concrete runtime.
pub type Democracy = democracy::Module<Runtime>;
Gav Wood's avatar
Gav Wood committed

impl council::Trait for Runtime {}
Gav Wood's avatar
Gav Wood committed

/// Council module for this concrete runtime.
pub type Council = council::Module<Runtime>;
Gav Wood's avatar
Gav Wood committed
/// Council voting module for this concrete runtime.
pub type CouncilVoting = council::voting::Module<Runtime>;
Gav Wood's avatar
Gav Wood committed

impl council::motions::Trait for Runtime {
	type Origin = Origin;
	type Proposal = Call;
	type Event = Event;
}

/// Council motions module for this concrete runtime.
pub type CouncilMotions = council_motions::Module<Runtime>;

impl treasury::Trait for Runtime {
	type ApproveOrigin = council_motions::EnsureMembers<_4>;
	type RejectOrigin = council_motions::EnsureMembers<_2>;
	type Event = Event;
}

/// Treasury module for this concrete runtime.
pub type Treasury = treasury::Module<Runtime>;

impl_outer_event! {
	pub enum Event for Runtime {
		balances, session, staking, democracy, treasury, council_motions
impl_outer_log! {
	pub enum Log for Runtime {
		consensus
	}
}

impl_outer_origin! {
	pub enum Origin for Runtime {
Gav Wood's avatar
Gav Wood committed
impl_outer_dispatch! {
	pub enum Call where origin: Origin {
		Consensus,
		Balances,
		Session,
		Staking,
		Timestamp,
		Democracy,
		Council,
		CouncilVoting,
		CouncilMotions,
		Treasury,
Gav Wood's avatar
Gav Wood committed
	}
Gav Wood's avatar
Gav Wood committed

impl_outer_config! {
	pub struct GenesisConfig for Runtime {
		ConsensusConfig => consensus,
		SystemConfig => system,
		BalancesConfig => balances,
		SessionConfig => session,
		StakingConfig => staking,
		DemocracyConfig => democracy,
		CouncilConfig => council,
		TimestampConfig => timestamp,
		TreasuryConfig => treasury,
	}
}

impl DigestItem for Log {
	type AuthoritiesChange = consensus::AuthoritiesChange<SessionKey>;

	fn as_authorities_change(&self) -> Option<&Self::AuthoritiesChange> {
		match *self {
			Log::consensus(ref item) => item.as_authorities_change(),
		}
/// The address format for describing accounts.
pub use balances::address::Address as RawAddress;
Gav Wood's avatar
Gav Wood committed
/// The address format for describing accounts.
pub type Address = balances::Address<Runtime>;
Gav Wood's avatar
Gav Wood committed
/// Block header type as expected by this runtime.
pub type Header = generic::Header<BlockNumber, BlakeTwo256, Log>;
Gav Wood's avatar
Gav Wood committed
/// Block type as expected by this runtime.
Gav Wood's avatar
Gav Wood committed
pub type Block = generic::Block<Header, UncheckedExtrinsic>;
/// BlockId type as expected by this runtime.
pub type BlockId = generic::BlockId<Block>;
Gav Wood's avatar
Gav Wood committed
/// Unchecked extrinsic type as expected by this runtime.
Gav Wood's avatar
Gav Wood committed
pub type UncheckedExtrinsic = generic::UncheckedExtrinsic<Address, Index, Call, Signature>;
/// Extrinsic type that has already been checked.
pub type CheckedExtrinsic = generic::CheckedExtrinsic<AccountId, Index, Call>;
Gav Wood's avatar
Gav Wood committed
/// Executive: handles dispatch to the various modules.
pub type Executive = executive::Executive<Runtime, Block, Balances, Balances,
	(((((((), Treasury), Council), Democracy), Staking), Session), Timestamp)>;
Gav Wood's avatar
Gav Wood committed

pub mod api {
	impl_stubs!(
		version => |()| super::VERSION,
Gav Wood's avatar
Gav Wood committed
		authorities => |()| super::Consensus::authorities(),
		initialise_block => |header| super::Executive::initialise_block(&header),
		apply_extrinsic => |extrinsic| super::Executive::apply_extrinsic(extrinsic),
		execute_block => |block| super::Executive::execute_block(block),
		finalise_block => |()| super::Executive::finalise_block(),
		inherent_extrinsics => |(inherent, spec_version)| super::inherent_extrinsics(inherent, spec_version),
Gav Wood's avatar
Gav Wood committed
		validator_count => |()| super::Session::validator_count(),
		validators => |()| super::Session::validators(),
		timestamp => |()| super::Timestamp::get(),
		random_seed => |()| super::System::random_seed(),
		account_nonce => |account| super::System::account_nonce(&account),
		lookup_address => |address| super::Balances::lookup_address(address)
Gav Wood's avatar
Gav Wood committed
	);
}

/// Produces the list of inherent extrinsics.
fn inherent_extrinsics(data: InherentData, _spec_version: u32) -> Vec<UncheckedExtrinsic> {
	let make_inherent = |function| UncheckedExtrinsic {
		signature: Default::default(),
		function,
		index: 0,
	};

	let mut inherent = vec![
		make_inherent(Call::Timestamp(TimestampCall::set(data.timestamp))),
	];

	if !data.offline_indices.is_empty() {
		inherent.push(make_inherent(
				Call::Consensus(ConsensusCall::note_offline(data.offline_indices))
		));
	}

	inherent
}