1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#![cfg_attr(not(feature = "std"), no_std)]

use codec::{Codec, Decode, Encode};
use sp_runtime::{traits::Block as BlockT, AccountId32};
use sp_std::vec::Vec;
use sp_weights::Weight;

pub type ConsumedWeight = frame_support::dispatch::PerDispatchClass<Weight>;

/// Information about extrinsic fetched from runtime API
#[derive(Encode, Decode, PartialEq)]
pub struct ExtrinsicInfo {
	/// extrinsic signer
	pub who: AccountId32,
}

sp_api::decl_runtime_apis! {
	/// The `VerApi` api trait for fetching information about extrinsic author and
	/// nonce
	pub trait VerApi {
		/// Provides information about extrinsic signer and nonce
		fn get_signer(tx: <Block as BlockT>::Extrinsic) -> Option<(AccountId32, u32)>;

		/// Checks if storage migration is scheuled
		fn is_storage_migration_scheduled() -> bool;

		/// stores shuffling seed for current block & shuffles
		/// previous block extrinsics if any enqueued
		fn store_seed(seed: sp_core::H256);

		// pops single tx from storage queue
		fn pop_txs(count: u64) -> Vec<Vec<u8>>;

		// fetches previous block extrinsics that are ready for execution (has been shuffled
		// already). Previous block reference is figured out based on current state of blockchain
		// storage (using current block number)
		fn get_previous_block_txs() -> Vec<Vec<u8>>;

		// creates inherent that injects new txs into storage queue
		fn can_enqueue_txs() -> bool;

		// creates inherent that injects new txs into storage queue
		fn create_enqueue_txs_inherent(txs: Vec<Block::Extrinsic>) -> Block::Extrinsic;

		// creates inherent that injects new txs into storage queue
		fn start_prevalidation();

		// creates inherent that injects new txs into storage queue
		fn account_extrinsic_dispatch_weight(consumed: ConsumedWeight, tx: <Block as BlockT>::Extrinsic) -> Result<ConsumedWeight, ()>;
	}

	pub trait VerNonceApi<Account> where
	Account : Codec
	{
		/// fetch number of enqueued txs from given account
		fn enqueued_txs_count(account: Account) -> u64;
	}
}