difftreelog
Merge pull request #730 from UniqueNetwork/feature/pov-estimate-api
in: master
Feature/pov estimate api
34 files changed
Cargo.lockdiffbeforeafterboth--- a/Cargo.lock
+++ b/Cargo.lock
@@ -5362,6 +5362,7 @@
"substrate-wasm-builder",
"up-common",
"up-data-structs",
+ "up-pov-estimate-rpc",
"up-rpc",
"up-sponsorship",
"xcm",
@@ -5806,6 +5807,7 @@
"sp-runtime",
"sp-std",
"up-data-structs",
+ "up-pov-estimate-rpc",
]
[[package]]
@@ -8917,6 +8919,7 @@
"substrate-wasm-builder",
"up-common",
"up-data-structs",
+ "up-pov-estimate-rpc",
"up-rpc",
"up-sponsorship",
"xcm",
@@ -12824,18 +12827,34 @@
dependencies = [
"anyhow",
"app-promotion-rpc",
+ "frame-benchmarking",
"jsonrpsee",
+ "opal-runtime",
"pallet-common",
"pallet-evm",
"parity-scale-codec 3.2.1",
+ "quartz-runtime",
"rmrk-rpc",
+ "sc-client-api",
+ "sc-executor",
+ "sc-rpc-api",
+ "sc-service",
"sp-api",
"sp-blockchain",
"sp-core",
+ "sp-externalities",
+ "sp-keystore",
"sp-rpc",
"sp-runtime",
+ "sp-state-machine",
+ "sp-trie",
+ "trie-db",
+ "unique-runtime",
+ "up-common",
"up-data-structs",
+ "up-pov-estimate-rpc",
"up-rpc",
+ "zstd",
]
[[package]]
@@ -12978,10 +12997,12 @@
"substrate-prometheus-endpoint",
"tokio",
"try-runtime-cli",
+ "uc-rpc",
"unique-rpc",
"unique-runtime",
"up-common",
"up-data-structs",
+ "up-pov-estimate-rpc",
"up-rpc",
]
@@ -13032,6 +13053,7 @@
"uc-rpc",
"up-common",
"up-data-structs",
+ "up-pov-estimate-rpc",
"up-rpc",
]
@@ -13125,6 +13147,7 @@
"substrate-wasm-builder",
"up-common",
"up-data-structs",
+ "up-pov-estimate-rpc",
"up-rpc",
"up-sponsorship",
"xcm",
@@ -13194,6 +13217,19 @@
]
[[package]]
+name = "up-pov-estimate-rpc"
+version = "0.1.0"
+dependencies = [
+ "parity-scale-codec 3.2.1",
+ "scale-info",
+ "serde",
+ "sp-api",
+ "sp-core",
+ "sp-runtime",
+ "sp-std",
+]
+
+[[package]]
name = "up-rpc"
version = "0.1.3"
dependencies = [
Cargo.tomldiffbeforeafterboth--- a/Cargo.toml
+++ b/Cargo.toml
@@ -11,7 +11,7 @@
'runtime/unique',
'runtime/tests',
]
-default-members = ['node/*', 'runtime/opal']
+default-members = ['node/*', 'client/*', 'runtime/opal']
package.version = "0.9.36"
[profile.release]
client/rpc/Cargo.tomldiffbeforeafterboth--- a/client/rpc/Cargo.toml
+++ b/client/rpc/Cargo.toml
@@ -7,16 +7,43 @@
[dependencies]
pallet-common = { default-features = false, path = '../../pallets/common' }
up-data-structs = { default-features = false, path = '../../primitives/data-structs' }
+up-common = { default-features = false, path = '../../primitives/common' }
up-rpc = { path = "../../primitives/rpc" }
app-promotion-rpc = { path = "../../primitives/app_promotion_rpc" }
rmrk-rpc = { path = "../../primitives/rmrk-rpc" }
+up-pov-estimate-rpc = { path = "../../primitives/pov-estimate-rpc", optional = true }
codec = { package = "parity-scale-codec", version = "3.1.2" }
jsonrpsee = { version = "0.16.2", features = ["server", "macros"] }
anyhow = "1.0.57"
+zstd = { version = "0.11.2", default-features = false }
+trie-db = { version = "0.24.0", default-features = false }
+sc-rpc-api = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
+sc-service = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
+sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
+sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
+sp-externalities = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
sp-api = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
sp-blockchain = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
+sp-keystore = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
sp-rpc = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
+sp-trie = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }
+
+frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
+
+sc-executor = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
+
+unique-runtime = { path = '../../runtime/unique', optional = true }
+quartz-runtime = { path = '../../runtime/quartz', optional = true }
+opal-runtime = { path = '../../runtime/opal' }
+
+[features]
+pov-estimate = [
+ 'up-pov-estimate-rpc',
+ 'unique-runtime?/pov-estimate',
+ 'quartz-runtime?/pov-estimate',
+ 'opal-runtime/pov-estimate',
+]
client/rpc/src/lib.rsdiffbeforeafterboth--- a/client/rpc/src/lib.rs
+++ b/client/rpc/src/lib.rs
@@ -42,6 +42,9 @@
pub use app_promotion_unique_rpc::AppPromotionApiServer;
pub use rmrk_unique_rpc::RmrkApiServer;
+#[cfg(feature = "pov-estimate")]
+pub mod pov_estimate;
+
#[rpc(server)]
#[async_trait]
pub trait UniqueApi<BlockHash, CrossAccountId, AccountId> {
@@ -420,17 +423,18 @@
}
}
+#[macro_export]
macro_rules! define_struct_for_server_api {
- ($name:ident) => {
- pub struct $name<C, P> {
- client: Arc<C>,
- _marker: std::marker::PhantomData<P>,
+ ($name:ident { $($arg:ident: $arg_ty:ty),+ $(,)? }) => {
+ pub struct $name<Client, Block: BlockT> {
+ $($arg: $arg_ty),+,
+ _marker: std::marker::PhantomData<Block>,
}
- impl<C, P> $name<C, P> {
- pub fn new(client: Arc<C>) -> Self {
+ impl<Client, Block: BlockT> $name<Client, Block> {
+ pub fn new($($arg: $arg_ty),+) -> Self {
Self {
- client,
+ $($arg),+,
_marker: Default::default(),
}
}
@@ -438,9 +442,23 @@
};
}
-define_struct_for_server_api!(Unique);
-define_struct_for_server_api!(AppPromotion);
-define_struct_for_server_api!(Rmrk);
+define_struct_for_server_api! {
+ Unique {
+ client: Arc<Client>
+ }
+}
+
+define_struct_for_server_api! {
+ AppPromotion {
+ client: Arc<Client>
+ }
+}
+
+define_struct_for_server_api! {
+ Rmrk {
+ client: Arc<Client>
+ }
+}
macro_rules! pass_method {
(
client/rpc/src/pov_estimate.rsdiffbeforeafterboth--- /dev/null
+++ b/client/rpc/src/pov_estimate.rs
@@ -0,0 +1,290 @@
+// Copyright 2019-2022 Unique Network (Gibraltar) Ltd.
+// This file is part of Unique Network.
+
+// Unique Network 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.
+
+// Unique Network 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 Unique Network. If not, see <http://www.gnu.org/licenses/>.
+
+use std::sync::Arc;
+
+use codec::{Encode, Decode};
+use sp_externalities::Extensions;
+
+use up_pov_estimate_rpc::{PovEstimateApi as PovEstimateRuntimeApi};
+use up_common::types::opaque::RuntimeId;
+
+use sc_service::{NativeExecutionDispatch, config::ExecutionStrategy};
+use sp_state_machine::{StateMachine, TrieBackendBuilder};
+use trie_db::{Trie, TrieDBBuilder};
+
+use jsonrpsee::{core::RpcResult as Result, proc_macros::rpc};
+use anyhow::anyhow;
+
+use sc_client_api::backend::Backend;
+use sp_blockchain::HeaderBackend;
+use sp_core::{
+ Bytes,
+ offchain::{
+ testing::{TestOffchainExt, TestTransactionPoolExt},
+ OffchainDbExt, OffchainWorkerExt, TransactionPoolExt,
+ },
+ testing::TaskExecutor,
+ traits::TaskExecutorExt,
+};
+use sp_keystore::{testing::KeyStore, KeystoreExt};
+use sp_api::{AsTrieBackend, BlockId, BlockT, ProvideRuntimeApi};
+
+use sc_executor::NativeElseWasmExecutor;
+use sc_rpc_api::DenyUnsafe;
+
+use sp_runtime::traits::Header;
+
+use up_pov_estimate_rpc::{PovInfo, TrieKeyValue};
+
+use crate::define_struct_for_server_api;
+
+type HasherOf<Block> = <<Block as BlockT>::Header as Header>::Hashing;
+type StateOf<Block> = <sc_service::TFullBackend<Block> as Backend<Block>>::State;
+
+pub struct ExecutorParams {
+ pub wasm_method: sc_service::config::WasmExecutionMethod,
+ pub default_heap_pages: Option<u64>,
+ pub max_runtime_instances: usize,
+ pub runtime_cache_size: u8,
+}
+
+#[cfg(feature = "unique-runtime")]
+pub struct UniqueRuntimeExecutor;
+
+#[cfg(feature = "quartz-runtime")]
+pub struct QuartzRuntimeExecutor;
+
+pub struct OpalRuntimeExecutor;
+
+#[cfg(feature = "unique-runtime")]
+impl NativeExecutionDispatch for UniqueRuntimeExecutor {
+ type ExtendHostFunctions = frame_benchmarking::benchmarking::HostFunctions;
+
+ fn dispatch(method: &str, data: &[u8]) -> Option<Vec<u8>> {
+ unique_runtime::api::dispatch(method, data)
+ }
+
+ fn native_version() -> sc_executor::NativeVersion {
+ unique_runtime::native_version()
+ }
+}
+
+#[cfg(feature = "quartz-runtime")]
+impl NativeExecutionDispatch for QuartzRuntimeExecutor {
+ type ExtendHostFunctions = frame_benchmarking::benchmarking::HostFunctions;
+
+ fn dispatch(method: &str, data: &[u8]) -> Option<Vec<u8>> {
+ quartz_runtime::api::dispatch(method, data)
+ }
+
+ fn native_version() -> sc_executor::NativeVersion {
+ quartz_runtime::native_version()
+ }
+}
+
+impl NativeExecutionDispatch for OpalRuntimeExecutor {
+ type ExtendHostFunctions = frame_benchmarking::benchmarking::HostFunctions;
+
+ fn dispatch(method: &str, data: &[u8]) -> Option<Vec<u8>> {
+ opal_runtime::api::dispatch(method, data)
+ }
+
+ fn native_version() -> sc_executor::NativeVersion {
+ opal_runtime::native_version()
+ }
+}
+
+#[cfg(feature = "pov-estimate")]
+define_struct_for_server_api! {
+ PovEstimate {
+ client: Arc<Client>,
+ backend: Arc<sc_service::TFullBackend<Block>>,
+ deny_unsafe: DenyUnsafe,
+ exec_params: ExecutorParams,
+ runtime_id: RuntimeId,
+ }
+}
+
+#[rpc(server)]
+#[async_trait]
+pub trait PovEstimateApi<BlockHash> {
+ #[method(name = "povinfo_estimateExtrinsicPoV")]
+ fn estimate_extrinsic_pov(
+ &self,
+ encoded_xts: Vec<Bytes>,
+ at: Option<BlockHash>,
+ ) -> Result<PovInfo>;
+}
+
+#[allow(deprecated)]
+#[cfg(feature = "pov-estimate")]
+impl<C, Block> PovEstimateApiServer<<Block as BlockT>::Hash> for PovEstimate<C, Block>
+where
+ Block: BlockT,
+ C: 'static + ProvideRuntimeApi<Block> + HeaderBackend<Block>,
+ C::Api: PovEstimateRuntimeApi<Block>,
+{
+ fn estimate_extrinsic_pov(
+ &self,
+ encoded_xts: Vec<Bytes>,
+ at: Option<<Block as BlockT>::Hash>,
+ ) -> Result<PovInfo> {
+ self.deny_unsafe.check_if_safe()?;
+
+ let at = at.unwrap_or_else(|| self.client.info().best_hash);
+ let state = self
+ .backend
+ .state_at(at)
+ .map_err(|_| anyhow!("unable to fetch the state at {at:?}"))?;
+
+ match &self.runtime_id {
+ #[cfg(feature = "unique-runtime")]
+ RuntimeId::Unique => execute_extrinsic_in_sandbox::<Block, UniqueRuntimeExecutor>(
+ state,
+ &self.exec_params,
+ encoded_xts,
+ ),
+
+ #[cfg(feature = "quartz-runtime")]
+ RuntimeId::Quartz => execute_extrinsic_in_sandbox::<Block, QuartzRuntimeExecutor>(
+ state,
+ &self.exec_params,
+ encoded_xts,
+ ),
+
+ RuntimeId::Opal => execute_extrinsic_in_sandbox::<Block, OpalRuntimeExecutor>(
+ state,
+ &self.exec_params,
+ encoded_xts,
+ ),
+
+ runtime_id => Err(anyhow!("unknown runtime id {:?}", runtime_id).into()),
+ }
+ }
+}
+
+fn full_extensions() -> Extensions {
+ let mut extensions = Extensions::default();
+ extensions.register(TaskExecutorExt::new(TaskExecutor::new()));
+ let (offchain, _offchain_state) = TestOffchainExt::new();
+ let (pool, _pool_state) = TestTransactionPoolExt::new();
+ extensions.register(OffchainDbExt::new(offchain.clone()));
+ extensions.register(OffchainWorkerExt::new(offchain));
+ extensions.register(KeystoreExt(std::sync::Arc::new(KeyStore::new())));
+ extensions.register(TransactionPoolExt::new(pool));
+
+ extensions
+}
+
+fn execute_extrinsic_in_sandbox<Block, D>(
+ state: StateOf<Block>,
+ exec_params: &ExecutorParams,
+ encoded_xts: Vec<Bytes>,
+) -> Result<PovInfo>
+where
+ Block: BlockT,
+ D: NativeExecutionDispatch + 'static,
+{
+ let backend = state.as_trie_backend().clone();
+ let mut changes = Default::default();
+ let runtime_code_backend = sp_state_machine::backend::BackendRuntimeCode::new(backend);
+
+ let proving_backend = TrieBackendBuilder::wrap(&backend)
+ .with_recorder(Default::default())
+ .build();
+
+ let runtime_code = runtime_code_backend
+ .runtime_code()
+ .map_err(|_| anyhow!("runtime code backend creation failed"))?;
+
+ let pre_root = *backend.root();
+
+ let executor = NativeElseWasmExecutor::<D>::new(
+ exec_params.wasm_method,
+ exec_params.default_heap_pages,
+ exec_params.max_runtime_instances,
+ exec_params.runtime_cache_size,
+ );
+ let execution = ExecutionStrategy::NativeElseWasm;
+
+ let mut results = Vec::new();
+
+ for encoded_xt in encoded_xts {
+ let encoded_bytes = encoded_xt.encode();
+
+ let xt_result = StateMachine::new(
+ &proving_backend,
+ &mut changes,
+ &executor,
+ "PovEstimateApi_pov_estimate",
+ encoded_bytes.as_slice(),
+ full_extensions(),
+ &runtime_code,
+ sp_core::testing::TaskExecutor::new(),
+ )
+ .execute(execution.into())
+ .map_err(|e| anyhow!("failed to execute the extrinsic {:?}", e))?;
+
+ let xt_result = Decode::decode(&mut &*xt_result)
+ .map_err(|e| anyhow!("failed to decode the extrinsic result {:?}", e))?;
+
+ results.push(xt_result);
+ }
+
+ let root = proving_backend.root().clone();
+
+ let proof = proving_backend
+ .extract_proof()
+ .expect("A recorder was set and thus, a storage proof can be extracted; qed");
+ let proof_size = proof.encoded_size();
+
+ let memory_db = proof.clone().into_memory_db();
+
+ let tree_db =
+ TrieDBBuilder::<sp_trie::LayoutV1<HasherOf<Block>>>::new(&memory_db, &root).build();
+
+ let key_values = tree_db
+ .iter()
+ .map_err(|e| anyhow!("failed to retrieve tree db key values: {:?}", e))?
+ .filter_map(|item| {
+ let item = item.ok()?;
+
+ Some(TrieKeyValue {
+ key: item.0,
+ value: item.1,
+ })
+ })
+ .collect();
+
+ let compact_proof = proof
+ .clone()
+ .into_compact_proof::<HasherOf<Block>>(pre_root)
+ .map_err(|e| anyhow!("failed to generate compact proof {:?}", e))?;
+ let compact_proof_size = compact_proof.encoded_size();
+
+ let compressed_proof = zstd::stream::encode_all(&compact_proof.encode()[..], 0)
+ .map_err(|e| anyhow!("failed to generate compact proof {:?}", e))?;
+ let compressed_proof_size = compressed_proof.len();
+
+ Ok(PovInfo {
+ proof_size: proof_size as u64,
+ compact_proof_size: compact_proof_size as u64,
+ compressed_proof_size: compressed_proof_size as u64,
+ results,
+ key_values,
+ })
+}
node/cli/Cargo.tomldiffbeforeafterboth--- a/node/cli/Cargo.toml
+++ b/node/cli/Cargo.toml
@@ -319,8 +319,10 @@
pallet-ethereum = { git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }
unique-rpc = { default-features = false, path = "../rpc" }
+uc-rpc = { default-features = false, path = "../../client/rpc" }
app-promotion-rpc = { path = "../../primitives/app_promotion_rpc", default-features = false }
rmrk-rpc = { path = "../../primitives/rmrk-rpc" }
+up-pov-estimate-rpc = { path = "../../primitives/pov-estimate-rpc", default-features = false }
[features]
default = ["opal-runtime"]
@@ -339,3 +341,10 @@
'try-runtime-cli/try-runtime',
]
sapphire-runtime = ['opal-runtime', 'opal-runtime/become-sapphire']
+pov-estimate = [
+ 'unique-runtime?/pov-estimate',
+ 'quartz-runtime?/pov-estimate',
+ 'opal-runtime/pov-estimate',
+ 'uc-rpc/pov-estimate',
+ 'unique-rpc/pov-estimate',
+]
node/cli/src/chain_spec.rsdiffbeforeafterboth--- a/node/cli/src/chain_spec.rs
+++ b/node/cli/src/chain_spec.rs
@@ -54,17 +54,6 @@
#[cfg(all(not(feature = "unique-runtime"), not(feature = "quartz-runtime")))]
pub type DefaultChainSpec = OpalChainSpec;
-pub enum RuntimeId {
- #[cfg(feature = "unique-runtime")]
- Unique,
-
- #[cfg(feature = "quartz-runtime")]
- Quartz,
-
- Opal,
- Unknown(String),
-}
-
#[cfg(not(feature = "unique-runtime"))]
/// PARA_ID for Opal/Sapphire/Quartz
const PARA_ID: u32 = 2095;
node/cli/src/command.rsdiffbeforeafterboth--- a/node/cli/src/command.rs
+++ b/node/cli/src/command.rs
@@ -33,7 +33,7 @@
// limitations under the License.
use crate::{
- chain_spec::{self, RuntimeId, RuntimeIdentification, ServiceId, ServiceIdentification},
+ chain_spec::{self, RuntimeIdentification, ServiceId, ServiceIdentification},
cli::{Cli, RelayChainCli, Subcommand},
service::{new_partial, start_node, start_dev_node},
};
@@ -66,13 +66,13 @@
use sp_runtime::traits::{AccountIdConversion, Block as BlockT};
use std::{net::SocketAddr, time::Duration};
-use up_common::types::opaque::Block;
+use up_common::types::opaque::{Block, RuntimeId};
macro_rules! no_runtime_err {
- ($chain_name:expr) => {
+ ($runtime_id:expr) => {
format!(
- "No runtime valid runtime was found for chain {}",
- $chain_name
+ "No runtime valid runtime was found for chain {:#?}",
+ $runtime_id
)
};
}
@@ -94,7 +94,7 @@
RuntimeId::Quartz => Box::new(chain_spec::QuartzChainSpec::from_json_file(path)?),
RuntimeId::Opal => chain_spec,
- RuntimeId::Unknown(chain) => return Err(no_runtime_err!(chain)),
+ runtime_id => return Err(no_runtime_err!(runtime_id)),
}
}
})
@@ -147,7 +147,7 @@
RuntimeId::Quartz => &quartz_runtime::VERSION,
RuntimeId::Opal => &opal_runtime::VERSION,
- RuntimeId::Unknown(chain) => panic!("{}", no_runtime_err!(chain)),
+ runtime_id => panic!("{}", no_runtime_err!(runtime_id)),
}
}
}
@@ -235,7 +235,7 @@
runner, $components, $cli, $cmd, $config, $( $code )*
),
- RuntimeId::Unknown(chain) => Err(no_runtime_err!(chain).into())
+ runtime_id => Err(no_runtime_err!(runtime_id).into())
}
}}
}
@@ -274,7 +274,7 @@
runner, $components, $cli, $cmd, $config, $( $code )*
),
- RuntimeId::Unknown(chain) => Err(no_runtime_err!(chain).into())
+ runtime_id => Err(no_runtime_err!(runtime_id).into())
}
}}
}
@@ -302,7 +302,7 @@
OpalRuntimeExecutor,
>($config $(, $($args),+)?) $($code)*,
- RuntimeId::Unknown(chain) => Err(no_runtime_err!(chain).into()),
+ runtime_id => Err(no_runtime_err!(runtime_id).into()),
}
};
}
@@ -445,7 +445,7 @@
sp_io::SubstrateHostFunctions,
<OpalRuntimeExecutor as NativeExecutionDispatch>::ExtendHostFunctions,
>>()),
- RuntimeId::Unknown(chain) => return Err(no_runtime_err!(chain).into()),
+ runtime_id => return Err(no_runtime_err!(runtime_id).into()),
},
task_manager,
))
node/cli/src/service.rsdiffbeforeafterboth1// Copyright 2019-2022 Unique Network (Gibraltar) Ltd.2// This file is part of Unique Network.34// Unique Network is free software: you can redistribute it and/or modify5// it under the terms of the GNU General Public License as published by6// the Free Software Foundation, either version 3 of the License, or7// (at your option) any later version.89// Unique Network is distributed in the hope that it will be useful,10// but WITHOUT ANY WARRANTY; without even the implied warranty of11// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the12// GNU General Public License for more details.1314// You should have received a copy of the GNU General Public License15// along with Unique Network. If not, see <http://www.gnu.org/licenses/>.1617// std18use std::sync::Arc;19use std::sync::Mutex;20use std::collections::BTreeMap;21use std::time::Duration;22use std::pin::Pin;23use fc_rpc_core::types::FeeHistoryCache;24use futures::{25 Stream, StreamExt,26 stream::select,27 task::{Context, Poll},28};29use tokio::time::Interval;3031use unique_rpc::overrides_handle;3233use serde::{Serialize, Deserialize};3435// Cumulus Imports36use cumulus_client_consensus_aura::{AuraConsensus, BuildAuraConsensusParams, SlotProportion};37use cumulus_client_consensus_common::{38 ParachainConsensus, ParachainBlockImport as TParachainBlockImport,39};40use cumulus_client_service::{41 prepare_node_config, start_collator, start_full_node, StartCollatorParams, StartFullNodeParams,42};43use cumulus_client_cli::CollatorOptions;44use cumulus_client_network::BlockAnnounceValidator;45use cumulus_primitives_core::ParaId;46use cumulus_relay_chain_inprocess_interface::build_inprocess_relay_chain;47use cumulus_relay_chain_interface::{RelayChainError, RelayChainInterface, RelayChainResult};48use cumulus_relay_chain_minimal_node::build_minimal_relay_chain_node;4950// Substrate Imports51use sp_api::BlockT;52use sc_executor::NativeElseWasmExecutor;53use sc_executor::NativeExecutionDispatch;54use sc_network::{NetworkService, NetworkBlock};55use sc_service::{BasePath, Configuration, PartialComponents, TaskManager};56use sc_telemetry::{Telemetry, TelemetryHandle, TelemetryWorker, TelemetryWorkerHandle};57use sp_keystore::SyncCryptoStorePtr;58use sp_runtime::traits::BlakeTwo256;59use substrate_prometheus_endpoint::Registry;60use sc_client_api::BlockchainEvents;61use sc_consensus::ImportQueue;6263use polkadot_service::CollatorPair;6465// Frontier Imports66use fc_rpc_core::types::FilterPool;67use fc_mapping_sync::{MappingSyncWorker, SyncStrategy};6869use up_common::types::opaque::{70 AuraId, RuntimeInstance, AccountId, Balance, Index, Hash, Block, BlockNumber,71};7273// RMRK74use up_data_structs::{75 RmrkCollectionInfo, RmrkInstanceInfo, RmrkResourceInfo, RmrkPropertyInfo, RmrkBaseInfo,76 RmrkPartType, RmrkTheme,77};7879/// Unique native executor instance.80#[cfg(feature = "unique-runtime")]81pub struct UniqueRuntimeExecutor;8283#[cfg(feature = "quartz-runtime")]84/// Quartz native executor instance.85pub struct QuartzRuntimeExecutor;8687/// Opal native executor instance.88pub struct OpalRuntimeExecutor;8990#[cfg(all(feature = "unique-runtime", feature = "runtime-benchmarks"))]91pub type DefaultRuntimeExecutor = UniqueRuntimeExecutor;9293#[cfg(all(94 not(feature = "unique-runtime"),95 feature = "quartz-runtime",96 feature = "runtime-benchmarks"97))]98pub type DefaultRuntimeExecutor = QuartzRuntimeExecutor;99100#[cfg(all(101 not(feature = "unique-runtime"),102 not(feature = "quartz-runtime"),103 feature = "runtime-benchmarks"104))]105pub type DefaultRuntimeExecutor = OpalRuntimeExecutor;106107#[cfg(feature = "unique-runtime")]108impl NativeExecutionDispatch for UniqueRuntimeExecutor {109 /// Only enable the benchmarking host functions when we actually want to benchmark.110 #[cfg(feature = "runtime-benchmarks")]111 type ExtendHostFunctions = frame_benchmarking::benchmarking::HostFunctions;112 /// Otherwise we only use the default Substrate host functions.113 #[cfg(not(feature = "runtime-benchmarks"))]114 type ExtendHostFunctions = ();115116 fn dispatch(method: &str, data: &[u8]) -> Option<Vec<u8>> {117 unique_runtime::api::dispatch(method, data)118 }119120 fn native_version() -> sc_executor::NativeVersion {121 unique_runtime::native_version()122 }123}124125#[cfg(feature = "quartz-runtime")]126impl NativeExecutionDispatch for QuartzRuntimeExecutor {127 /// Only enable the benchmarking host functions when we actually want to benchmark.128 #[cfg(feature = "runtime-benchmarks")]129 type ExtendHostFunctions = frame_benchmarking::benchmarking::HostFunctions;130 /// Otherwise we only use the default Substrate host functions.131 #[cfg(not(feature = "runtime-benchmarks"))]132 type ExtendHostFunctions = ();133134 fn dispatch(method: &str, data: &[u8]) -> Option<Vec<u8>> {135 quartz_runtime::api::dispatch(method, data)136 }137138 fn native_version() -> sc_executor::NativeVersion {139 quartz_runtime::native_version()140 }141}142143impl NativeExecutionDispatch for OpalRuntimeExecutor {144 /// Only enable the benchmarking host functions when we actually want to benchmark.145 #[cfg(feature = "runtime-benchmarks")]146 type ExtendHostFunctions = frame_benchmarking::benchmarking::HostFunctions;147 /// Otherwise we only use the default Substrate host functions.148 #[cfg(not(feature = "runtime-benchmarks"))]149 type ExtendHostFunctions = ();150151 fn dispatch(method: &str, data: &[u8]) -> Option<Vec<u8>> {152 opal_runtime::api::dispatch(method, data)153 }154155 fn native_version() -> sc_executor::NativeVersion {156 opal_runtime::native_version()157 }158}159160pub struct AutosealInterval {161 interval: Interval,162}163164impl AutosealInterval {165 pub fn new(config: &Configuration, interval: Duration) -> Self {166 let _tokio_runtime = config.tokio_handle.enter();167 let interval = tokio::time::interval(interval);168169 Self { interval }170 }171}172173impl Stream for AutosealInterval {174 type Item = tokio::time::Instant;175176 fn poll_next(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<Self::Item>> {177 self.interval.poll_tick(cx).map(Some)178 }179}180181pub fn open_frontier_backend<Block: BlockT, C: sp_blockchain::HeaderBackend<Block>>(182 client: Arc<C>,183 config: &Configuration,184) -> Result<Arc<fc_db::Backend<Block>>, String> {185 let config_dir = config186 .base_path187 .as_ref()188 .map(|base_path| base_path.config_dir(config.chain_spec.id()))189 .unwrap_or_else(|| {190 BasePath::from_project("", "", "unique").config_dir(config.chain_spec.id())191 });192 let database_dir = config_dir.join("frontier").join("db");193194 Ok(Arc::new(fc_db::Backend::<Block>::new(195 client,196 &fc_db::DatabaseSettings {197 source: fc_db::DatabaseSource::RocksDb {198 path: database_dir,199 cache_size: 0,200 },201 },202 )?))203}204205type FullClient<RuntimeApi, ExecutorDispatch> =206 sc_service::TFullClient<Block, RuntimeApi, NativeElseWasmExecutor<ExecutorDispatch>>;207type FullBackend = sc_service::TFullBackend<Block>;208type FullSelectChain = sc_consensus::LongestChain<FullBackend, Block>;209type ParachainBlockImport<RuntimeApi, ExecutorDispatch> =210 TParachainBlockImport<Block, Arc<FullClient<RuntimeApi, ExecutorDispatch>>, FullBackend>;211212/// Starts a `ServiceBuilder` for a full service.213///214/// Use this macro if you don't actually need the full service, but just the builder in order to215/// be able to perform chain operations.216#[allow(clippy::type_complexity)]217pub fn new_partial<RuntimeApi, ExecutorDispatch, BIQ>(218 config: &Configuration,219 build_import_queue: BIQ,220) -> Result<221 PartialComponents<222 FullClient<RuntimeApi, ExecutorDispatch>,223 FullBackend,224 FullSelectChain,225 sc_consensus::DefaultImportQueue<Block, FullClient<RuntimeApi, ExecutorDispatch>>,226 sc_transaction_pool::FullPool<Block, FullClient<RuntimeApi, ExecutorDispatch>>,227 (228 Option<Telemetry>,229 Option<FilterPool>,230 Arc<fc_db::Backend<Block>>,231 Option<TelemetryWorkerHandle>,232 FeeHistoryCache,233 ),234 >,235 sc_service::Error,236>237where238 sc_client_api::StateBackendFor<FullBackend, Block>: sp_api::StateBackend<BlakeTwo256>,239 RuntimeApi: sp_api::ConstructRuntimeApi<Block, FullClient<RuntimeApi, ExecutorDispatch>>240 + Send241 + Sync242 + 'static,243 RuntimeApi::RuntimeApi: sp_transaction_pool::runtime_api::TaggedTransactionQueue<Block>,244 ExecutorDispatch: NativeExecutionDispatch + 'static,245 BIQ: FnOnce(246 Arc<FullClient<RuntimeApi, ExecutorDispatch>>,247 Arc<FullBackend>,248 &Configuration,249 Option<TelemetryHandle>,250 &TaskManager,251 ) -> Result<252 sc_consensus::DefaultImportQueue<Block, FullClient<RuntimeApi, ExecutorDispatch>>,253 sc_service::Error,254 >,255{256 let _telemetry = config257 .telemetry_endpoints258 .clone()259 .filter(|x| !x.is_empty())260 .map(|endpoints| -> Result<_, sc_telemetry::Error> {261 let worker = TelemetryWorker::new(16)?;262 let telemetry = worker.handle().new_telemetry(endpoints);263 Ok((worker, telemetry))264 })265 .transpose()?;266267 let telemetry = config268 .telemetry_endpoints269 .clone()270 .filter(|x| !x.is_empty())271 .map(|endpoints| -> Result<_, sc_telemetry::Error> {272 let worker = TelemetryWorker::new(16)?;273 let telemetry = worker.handle().new_telemetry(endpoints);274 Ok((worker, telemetry))275 })276 .transpose()?;277278 let executor = NativeElseWasmExecutor::<ExecutorDispatch>::new(279 config.wasm_method,280 config.default_heap_pages,281 config.max_runtime_instances,282 config.runtime_cache_size,283 );284285 let (client, backend, keystore_container, task_manager) =286 sc_service::new_full_parts::<Block, RuntimeApi, _>(287 config,288 telemetry.as_ref().map(|(_, telemetry)| telemetry.handle()),289 executor,290 )?;291 let client = Arc::new(client);292293 let telemetry_worker_handle = telemetry.as_ref().map(|(worker, _)| worker.handle());294295 let telemetry = telemetry.map(|(worker, telemetry)| {296 task_manager297 .spawn_handle()298 .spawn("telemetry", None, worker.run());299 telemetry300 });301302 let select_chain = sc_consensus::LongestChain::new(backend.clone());303304 let transaction_pool = sc_transaction_pool::BasicPool::new_full(305 config.transaction_pool.clone(),306 config.role.is_authority().into(),307 config.prometheus_registry(),308 task_manager.spawn_essential_handle(),309 client.clone(),310 );311312 let filter_pool: Option<FilterPool> = Some(Arc::new(Mutex::new(BTreeMap::new())));313314 let frontier_backend = open_frontier_backend(client.clone(), config)?;315316 let import_queue = build_import_queue(317 client.clone(),318 backend.clone(),319 config,320 telemetry.as_ref().map(|telemetry| telemetry.handle()),321 &task_manager,322 )?;323 let fee_history_cache: FeeHistoryCache = Arc::new(Mutex::new(BTreeMap::new()));324325 let params = PartialComponents {326 backend,327 client,328 import_queue,329 keystore_container,330 task_manager,331 transaction_pool,332 select_chain,333 other: (334 telemetry,335 filter_pool,336 frontier_backend,337 telemetry_worker_handle,338 fee_history_cache,339 ),340 };341342 Ok(params)343}344345async fn build_relay_chain_interface(346 polkadot_config: Configuration,347 parachain_config: &Configuration,348 telemetry_worker_handle: Option<TelemetryWorkerHandle>,349 task_manager: &mut TaskManager,350 collator_options: CollatorOptions,351 hwbench: Option<sc_sysinfo::HwBench>,352) -> RelayChainResult<(353 Arc<(dyn RelayChainInterface + 'static)>,354 Option<CollatorPair>,355)> {356 if collator_options.relay_chain_rpc_urls.is_empty() {357 build_inprocess_relay_chain(358 polkadot_config,359 parachain_config,360 telemetry_worker_handle,361 task_manager,362 hwbench,363 )364 } else {365 build_minimal_relay_chain_node(366 polkadot_config,367 task_manager,368 collator_options.relay_chain_rpc_urls,369 )370 .await371 }372}373374/// Start a node with the given parachain `Configuration` and relay chain `Configuration`.375///376/// This is the actual implementation that is abstract over the executor and the runtime api.377#[sc_tracing::logging::prefix_logs_with("Parachain")]378async fn start_node_impl<Runtime, RuntimeApi, ExecutorDispatch, BIQ, BIC>(379 parachain_config: Configuration,380 polkadot_config: Configuration,381 collator_options: CollatorOptions,382 id: ParaId,383 build_import_queue: BIQ,384 build_consensus: BIC,385 hwbench: Option<sc_sysinfo::HwBench>,386) -> sc_service::error::Result<(TaskManager, Arc<FullClient<RuntimeApi, ExecutorDispatch>>)>387where388 sc_client_api::StateBackendFor<FullBackend, Block>: sp_api::StateBackend<BlakeTwo256>,389 Runtime: RuntimeInstance + Send + Sync + 'static,390 <Runtime as RuntimeInstance>::CrossAccountId: Serialize,391 for<'de> <Runtime as RuntimeInstance>::CrossAccountId: Deserialize<'de>,392 RuntimeApi: sp_api::ConstructRuntimeApi<Block, FullClient<RuntimeApi, ExecutorDispatch>>393 + Send394 + Sync395 + 'static,396 RuntimeApi::RuntimeApi: sp_transaction_pool::runtime_api::TaggedTransactionQueue<Block>397 + fp_rpc::EthereumRuntimeRPCApi<Block>398 + fp_rpc::ConvertTransactionRuntimeApi<Block>399 + sp_session::SessionKeys<Block>400 + sp_block_builder::BlockBuilder<Block>401 + pallet_transaction_payment_rpc_runtime_api::TransactionPaymentApi<Block, Balance>402 + sp_api::ApiExt<Block, StateBackend = sc_client_api::StateBackendFor<FullBackend, Block>>403 + up_rpc::UniqueApi<Block, Runtime::CrossAccountId, AccountId>404 + app_promotion_rpc::AppPromotionApi<Block, BlockNumber, Runtime::CrossAccountId, AccountId>405 + rmrk_rpc::RmrkApi<406 Block,407 AccountId,408 RmrkCollectionInfo<AccountId>,409 RmrkInstanceInfo<AccountId>,410 RmrkResourceInfo,411 RmrkPropertyInfo,412 RmrkBaseInfo<AccountId>,413 RmrkPartType,414 RmrkTheme,415 > + substrate_frame_rpc_system::AccountNonceApi<Block, AccountId, Index>416 + sp_api::Metadata<Block>417 + sp_offchain::OffchainWorkerApi<Block>418 + cumulus_primitives_core::CollectCollationInfo<Block>,419 ExecutorDispatch: NativeExecutionDispatch + 'static,420 BIQ: FnOnce(421 Arc<FullClient<RuntimeApi, ExecutorDispatch>>,422 Arc<FullBackend>,423 &Configuration,424 Option<TelemetryHandle>,425 &TaskManager,426 ) -> Result<427 sc_consensus::DefaultImportQueue<Block, FullClient<RuntimeApi, ExecutorDispatch>>,428 sc_service::Error,429 >,430 BIC: FnOnce(431 Arc<FullClient<RuntimeApi, ExecutorDispatch>>,432 Arc<FullBackend>,433 Option<&Registry>,434 Option<TelemetryHandle>,435 &TaskManager,436 Arc<dyn RelayChainInterface>,437 Arc<sc_transaction_pool::FullPool<Block, FullClient<RuntimeApi, ExecutorDispatch>>>,438 Arc<NetworkService<Block, Hash>>,439 SyncCryptoStorePtr,440 bool,441 ) -> Result<Box<dyn ParachainConsensus<Block>>, sc_service::Error>,442{443 let parachain_config = prepare_node_config(parachain_config);444445 let params =446 new_partial::<RuntimeApi, ExecutorDispatch, BIQ>(¶chain_config, build_import_queue)?;447 let (mut telemetry, filter_pool, frontier_backend, telemetry_worker_handle, fee_history_cache) =448 params.other;449450 let client = params.client.clone();451 let backend = params.backend.clone();452 let mut task_manager = params.task_manager;453454 let (relay_chain_interface, collator_key) = build_relay_chain_interface(455 polkadot_config,456 ¶chain_config,457 telemetry_worker_handle,458 &mut task_manager,459 collator_options.clone(),460 hwbench.clone(),461 )462 .await463 .map_err(|e| match e {464 RelayChainError::ServiceError(polkadot_service::Error::Sub(x)) => x,465 s => s.to_string().into(),466 })?;467468 let block_announce_validator = BlockAnnounceValidator::new(relay_chain_interface.clone(), id);469470 let force_authoring = parachain_config.force_authoring;471 let validator = parachain_config.role.is_authority();472 let prometheus_registry = parachain_config.prometheus_registry().cloned();473 let transaction_pool = params.transaction_pool.clone();474 let import_queue_service = params.import_queue.service();475476 let (network, system_rpc_tx, tx_handler_controller, start_network) =477 sc_service::build_network(sc_service::BuildNetworkParams {478 config: ¶chain_config,479 client: client.clone(),480 transaction_pool: transaction_pool.clone(),481 spawn_handle: task_manager.spawn_handle(),482 import_queue: params.import_queue,483 block_announce_validator_builder: Some(Box::new(|_| {484 Box::new(block_announce_validator)485 })),486 warp_sync: None,487 })?;488489 let rpc_client = client.clone();490 let rpc_pool = transaction_pool.clone();491 let select_chain = params.select_chain.clone();492 let rpc_network = network.clone();493494 let rpc_frontier_backend = frontier_backend.clone();495496 let block_data_cache = Arc::new(fc_rpc::EthBlockDataCacheTask::new(497 task_manager.spawn_handle(),498 overrides_handle::<_, _, Runtime>(client.clone()),499 50,500 50,501 prometheus_registry.clone(),502 ));503504 task_manager.spawn_essential_handle().spawn(505 "frontier-mapping-sync-worker",506 None,507 MappingSyncWorker::new(508 client.import_notification_stream(),509 Duration::new(6, 0),510 client.clone(),511 backend.clone(),512 frontier_backend.clone(),513 3,514 0,515 SyncStrategy::Normal,516 )517 .for_each(|()| futures::future::ready(())),518 );519520 let rpc_builder = Box::new(move |deny_unsafe, subscription_task_executor| {521 let full_deps = unique_rpc::FullDeps {522 backend: rpc_frontier_backend.clone(),523 deny_unsafe,524 client: rpc_client.clone(),525 pool: rpc_pool.clone(),526 graph: rpc_pool.pool().clone(),527 // TODO: Unhardcode528 enable_dev_signer: false,529 filter_pool: filter_pool.clone(),530 network: rpc_network.clone(),531 select_chain: select_chain.clone(),532 is_authority: validator,533 // TODO: Unhardcode534 max_past_logs: 10000,535 block_data_cache: block_data_cache.clone(),536 fee_history_cache: fee_history_cache.clone(),537 // TODO: Unhardcode538 fee_history_limit: 2048,539 };540541 unique_rpc::create_full::<_, _, _, _, Runtime, RuntimeApi, _>(542 full_deps,543 subscription_task_executor,544 )545 .map_err(Into::into)546 });547548 sc_service::spawn_tasks(sc_service::SpawnTasksParams {549 rpc_builder,550 client: client.clone(),551 transaction_pool: transaction_pool.clone(),552 task_manager: &mut task_manager,553 config: parachain_config,554 keystore: params.keystore_container.sync_keystore(),555 backend: backend.clone(),556 network: network.clone(),557 system_rpc_tx,558 telemetry: telemetry.as_mut(),559 tx_handler_controller,560 })?;561562 if let Some(hwbench) = hwbench {563 sc_sysinfo::print_hwbench(&hwbench);564565 if let Some(ref mut telemetry) = telemetry {566 let telemetry_handle = telemetry.handle();567 task_manager.spawn_handle().spawn(568 "telemetry_hwbench",569 None,570 sc_sysinfo::initialize_hwbench_telemetry(telemetry_handle, hwbench),571 );572 }573 }574575 let announce_block = {576 let network = network.clone();577 Arc::new(Box::new(move |hash, data| {578 network.announce_block(hash, data)579 }))580 };581582 let relay_chain_slot_duration = Duration::from_secs(6);583584 if validator {585 let parachain_consensus = build_consensus(586 client.clone(),587 backend.clone(),588 prometheus_registry.as_ref(),589 telemetry.as_ref().map(|t| t.handle()),590 &task_manager,591 relay_chain_interface.clone(),592 transaction_pool,593 network,594 params.keystore_container.sync_keystore(),595 force_authoring,596 )?;597598 let spawner = task_manager.spawn_handle();599600 let params = StartCollatorParams {601 para_id: id,602 block_status: client.clone(),603 announce_block,604 client: client.clone(),605 task_manager: &mut task_manager,606 spawner,607 parachain_consensus,608 import_queue: import_queue_service,609 collator_key: collator_key.expect("Command line arguments do not allow this. qed"),610 relay_chain_interface,611 relay_chain_slot_duration,612 };613614 start_collator(params).await?;615 } else {616 let params = StartFullNodeParams {617 client: client.clone(),618 announce_block,619 task_manager: &mut task_manager,620 para_id: id,621 import_queue: import_queue_service,622 relay_chain_interface,623 relay_chain_slot_duration,624 };625626 start_full_node(params)?;627 }628629 start_network.start_network();630631 Ok((task_manager, client))632}633634/// Build the import queue for the the parachain runtime.635pub fn parachain_build_import_queue<RuntimeApi, ExecutorDispatch>(636 client: Arc<FullClient<RuntimeApi, ExecutorDispatch>>,637 backend: Arc<FullBackend>,638 config: &Configuration,639 telemetry: Option<TelemetryHandle>,640 task_manager: &TaskManager,641) -> Result<642 sc_consensus::DefaultImportQueue<Block, FullClient<RuntimeApi, ExecutorDispatch>>,643 sc_service::Error,644>645where646 RuntimeApi: sp_api::ConstructRuntimeApi<Block, FullClient<RuntimeApi, ExecutorDispatch>>647 + Send648 + Sync649 + 'static,650 RuntimeApi::RuntimeApi: sp_transaction_pool::runtime_api::TaggedTransactionQueue<Block>651 + sp_block_builder::BlockBuilder<Block>652 + sp_consensus_aura::AuraApi<Block, AuraId>653 + sp_api::ApiExt<Block, StateBackend = sc_client_api::StateBackendFor<FullBackend, Block>>,654 ExecutorDispatch: NativeExecutionDispatch + 'static,655{656 let slot_duration = cumulus_client_consensus_aura::slot_duration(&*client)?;657658 let block_import = ParachainBlockImport::new(client.clone(), backend.clone());659660 cumulus_client_consensus_aura::import_queue::<661 sp_consensus_aura::sr25519::AuthorityPair,662 _,663 _,664 _,665 _,666 _,667 >(cumulus_client_consensus_aura::ImportQueueParams {668 block_import,669 client: client.clone(),670 create_inherent_data_providers: move |_, _| async move {671 let time = sp_timestamp::InherentDataProvider::from_system_time();672673 let slot =674 sp_consensus_aura::inherents::InherentDataProvider::from_timestamp_and_slot_duration(675 *time,676 slot_duration,677 );678679 Ok((slot, time))680 },681 registry: config.prometheus_registry(),682 spawner: &task_manager.spawn_essential_handle(),683 telemetry,684 })685 .map_err(Into::into)686}687688/// Start a normal parachain node.689pub async fn start_node<Runtime, RuntimeApi, ExecutorDispatch>(690 parachain_config: Configuration,691 polkadot_config: Configuration,692 collator_options: CollatorOptions,693 id: ParaId,694 hwbench: Option<sc_sysinfo::HwBench>,695) -> sc_service::error::Result<(TaskManager, Arc<FullClient<RuntimeApi, ExecutorDispatch>>)>696where697 Runtime: RuntimeInstance + Send + Sync + 'static,698 <Runtime as RuntimeInstance>::CrossAccountId: Serialize,699 for<'de> <Runtime as RuntimeInstance>::CrossAccountId: Deserialize<'de>,700 RuntimeApi: sp_api::ConstructRuntimeApi<Block, FullClient<RuntimeApi, ExecutorDispatch>>701 + Send702 + Sync703 + 'static,704 RuntimeApi::RuntimeApi: sp_transaction_pool::runtime_api::TaggedTransactionQueue<Block>705 + fp_rpc::EthereumRuntimeRPCApi<Block>706 + fp_rpc::ConvertTransactionRuntimeApi<Block>707 + sp_session::SessionKeys<Block>708 + sp_block_builder::BlockBuilder<Block>709 + pallet_transaction_payment_rpc_runtime_api::TransactionPaymentApi<Block, Balance>710 + sp_api::ApiExt<Block, StateBackend = sc_client_api::StateBackendFor<FullBackend, Block>>711 + up_rpc::UniqueApi<Block, Runtime::CrossAccountId, AccountId>712 + app_promotion_rpc::AppPromotionApi<Block, BlockNumber, Runtime::CrossAccountId, AccountId>713 + rmrk_rpc::RmrkApi<714 Block,715 AccountId,716 RmrkCollectionInfo<AccountId>,717 RmrkInstanceInfo<AccountId>,718 RmrkResourceInfo,719 RmrkPropertyInfo,720 RmrkBaseInfo<AccountId>,721 RmrkPartType,722 RmrkTheme,723 > + substrate_frame_rpc_system::AccountNonceApi<Block, AccountId, Index>724 + sp_api::Metadata<Block>725 + sp_offchain::OffchainWorkerApi<Block>726 + cumulus_primitives_core::CollectCollationInfo<Block>727 + sp_consensus_aura::AuraApi<Block, AuraId>,728 ExecutorDispatch: NativeExecutionDispatch + 'static,729{730 start_node_impl::<Runtime, RuntimeApi, ExecutorDispatch, _, _>(731 parachain_config,732 polkadot_config,733 collator_options,734 id,735 parachain_build_import_queue,736 |client,737 backend,738 prometheus_registry,739 telemetry,740 task_manager,741 relay_chain_interface,742 transaction_pool,743 sync_oracle,744 keystore,745 force_authoring| {746 let slot_duration = cumulus_client_consensus_aura::slot_duration(&*client)?;747748 let proposer_factory = sc_basic_authorship::ProposerFactory::with_proof_recording(749 task_manager.spawn_handle(),750 client.clone(),751 transaction_pool,752 prometheus_registry,753 telemetry.clone(),754 );755756 let block_import = ParachainBlockImport::new(client.clone(), backend.clone());757758 Ok(AuraConsensus::build::<759 sp_consensus_aura::sr25519::AuthorityPair,760 _,761 _,762 _,763 _,764 _,765 _,766 >(BuildAuraConsensusParams {767 proposer_factory,768 create_inherent_data_providers: move |_, (relay_parent, validation_data)| {769 let relay_chain_interface = relay_chain_interface.clone();770 async move {771 let parachain_inherent =772 cumulus_primitives_parachain_inherent::ParachainInherentData::create_at(773 relay_parent,774 &relay_chain_interface,775 &validation_data,776 id,777 ).await;778779 let time = sp_timestamp::InherentDataProvider::from_system_time();780781 let slot =782 sp_consensus_aura::inherents::InherentDataProvider::from_timestamp_and_slot_duration(783 *time,784 slot_duration,785 );786787 let parachain_inherent = parachain_inherent.ok_or_else(|| {788 Box::<dyn std::error::Error + Send + Sync>::from(789 "Failed to create parachain inherent",790 )791 })?;792 Ok((slot, time, parachain_inherent))793 }794 },795 block_import,796 para_client: client,797 backoff_authoring_blocks: Option::<()>::None,798 sync_oracle,799 keystore,800 force_authoring,801 slot_duration,802 // We got around 500ms for proposing803 block_proposal_slot_portion: SlotProportion::new(1f32 / 24f32),804 telemetry,805 max_block_proposal_slot_portion: None,806 }))807 },808 hwbench,809 )810 .await811}812813fn dev_build_import_queue<RuntimeApi, ExecutorDispatch>(814 client: Arc<FullClient<RuntimeApi, ExecutorDispatch>>,815 _: Arc<FullBackend>,816 config: &Configuration,817 _: Option<TelemetryHandle>,818 task_manager: &TaskManager,819) -> Result<820 sc_consensus::DefaultImportQueue<Block, FullClient<RuntimeApi, ExecutorDispatch>>,821 sc_service::Error,822>823where824 RuntimeApi: sp_api::ConstructRuntimeApi<Block, FullClient<RuntimeApi, ExecutorDispatch>>825 + Send826 + Sync827 + 'static,828 RuntimeApi::RuntimeApi: sp_transaction_pool::runtime_api::TaggedTransactionQueue<Block>829 + sp_api::ApiExt<Block, StateBackend = sc_client_api::StateBackendFor<FullBackend, Block>>,830 ExecutorDispatch: NativeExecutionDispatch + 'static,831{832 Ok(sc_consensus_manual_seal::import_queue(833 Box::new(client.clone()),834 &task_manager.spawn_essential_handle(),835 config.prometheus_registry(),836 ))837}838839/// Builds a new development service. This service uses instant seal, and mocks840/// the parachain inherent841pub fn start_dev_node<Runtime, RuntimeApi, ExecutorDispatch>(842 config: Configuration,843 autoseal_interval: Duration,844) -> sc_service::error::Result<TaskManager>845where846 Runtime: RuntimeInstance + Send + Sync + 'static,847 <Runtime as RuntimeInstance>::CrossAccountId: Serialize,848 for<'de> <Runtime as RuntimeInstance>::CrossAccountId: Deserialize<'de>,849 RuntimeApi: sp_api::ConstructRuntimeApi<Block, FullClient<RuntimeApi, ExecutorDispatch>>850 + Send851 + Sync852 + 'static,853 RuntimeApi::RuntimeApi: sp_transaction_pool::runtime_api::TaggedTransactionQueue<Block>854 + fp_rpc::EthereumRuntimeRPCApi<Block>855 + fp_rpc::ConvertTransactionRuntimeApi<Block>856 + sp_session::SessionKeys<Block>857 + sp_block_builder::BlockBuilder<Block>858 + pallet_transaction_payment_rpc_runtime_api::TransactionPaymentApi<Block, Balance>859 + sp_api::ApiExt<Block, StateBackend = sc_client_api::StateBackendFor<FullBackend, Block>>860 + up_rpc::UniqueApi<Block, Runtime::CrossAccountId, AccountId>861 + app_promotion_rpc::AppPromotionApi<Block, BlockNumber, Runtime::CrossAccountId, AccountId>862 + rmrk_rpc::RmrkApi<863 Block,864 AccountId,865 RmrkCollectionInfo<AccountId>,866 RmrkInstanceInfo<AccountId>,867 RmrkResourceInfo,868 RmrkPropertyInfo,869 RmrkBaseInfo<AccountId>,870 RmrkPartType,871 RmrkTheme,872 > + substrate_frame_rpc_system::AccountNonceApi<Block, AccountId, Index>873 + sp_api::Metadata<Block>874 + sp_offchain::OffchainWorkerApi<Block>875 + cumulus_primitives_core::CollectCollationInfo<Block>876 + sp_consensus_aura::AuraApi<Block, AuraId>,877 ExecutorDispatch: NativeExecutionDispatch + 'static,878{879 use sc_consensus_manual_seal::{run_manual_seal, EngineCommand, ManualSealParams};880 use fc_consensus::FrontierBlockImport;881 use sc_client_api::HeaderBackend;882883 let sc_service::PartialComponents {884 client,885 backend,886 mut task_manager,887 import_queue,888 keystore_container,889 select_chain: maybe_select_chain,890 transaction_pool,891 other:892 (telemetry, filter_pool, frontier_backend, _telemetry_worker_handle, fee_history_cache),893 } = new_partial::<RuntimeApi, ExecutorDispatch, _>(894 &config,895 dev_build_import_queue::<RuntimeApi, ExecutorDispatch>,896 )?;897 let prometheus_registry = config.prometheus_registry().cloned();898899 let block_data_cache = Arc::new(fc_rpc::EthBlockDataCacheTask::new(900 task_manager.spawn_handle(),901 overrides_handle::<_, _, Runtime>(client.clone()),902 50,903 50,904 prometheus_registry.clone(),905 ));906907 let (network, system_rpc_tx, tx_handler_controller, network_starter) =908 sc_service::build_network(sc_service::BuildNetworkParams {909 config: &config,910 client: client.clone(),911 transaction_pool: transaction_pool.clone(),912 spawn_handle: task_manager.spawn_handle(),913 import_queue,914 block_announce_validator_builder: None,915 warp_sync: None,916 })?;917918 if config.offchain_worker.enabled {919 sc_service::build_offchain_workers(920 &config,921 task_manager.spawn_handle(),922 client.clone(),923 network.clone(),924 );925 }926927 let collator = config.role.is_authority();928929 let select_chain = maybe_select_chain.clone();930931 if collator {932 let block_import =933 FrontierBlockImport::new(client.clone(), client.clone(), frontier_backend.clone());934935 let env = sc_basic_authorship::ProposerFactory::new(936 task_manager.spawn_handle(),937 client.clone(),938 transaction_pool.clone(),939 prometheus_registry.as_ref(),940 telemetry.as_ref().map(|x| x.handle()),941 );942943 let transactions_commands_stream: Box<944 dyn Stream<Item = EngineCommand<Hash>> + Send + Sync + Unpin,945 > = Box::new(946 transaction_pool947 .pool()948 .validated_pool()949 .import_notification_stream()950 .map(|_| EngineCommand::SealNewBlock {951 create_empty: true,952 finalize: false,953 parent_hash: None,954 sender: None,955 }),956 );957958 let autoseal_interval = Box::pin(AutosealInterval::new(&config, autoseal_interval));959 let idle_commands_stream: Box<960 dyn Stream<Item = EngineCommand<Hash>> + Send + Sync + Unpin,961 > = Box::new(autoseal_interval.map(|_| EngineCommand::SealNewBlock {962 create_empty: true,963 finalize: false,964 parent_hash: None,965 sender: None,966 }));967968 let commands_stream = select(transactions_commands_stream, idle_commands_stream);969970 let slot_duration = cumulus_client_consensus_aura::slot_duration(&*client)?;971 let client_set_aside_for_cidp = client.clone();972973 task_manager.spawn_essential_handle().spawn_blocking(974 "authorship_task",975 Some("block-authoring"),976 run_manual_seal(ManualSealParams {977 block_import,978 env,979 client: client.clone(),980 pool: transaction_pool.clone(),981 commands_stream,982 select_chain: select_chain.clone(),983 consensus_data_provider: None,984 create_inherent_data_providers: move |block: Hash, ()| {985 let current_para_block = client_set_aside_for_cidp986 .number(block)987 .expect("Header lookup should succeed")988 .expect("Header passed in as parent should be present in backend.");989990 let client_for_xcm = client_set_aside_for_cidp.clone();991 async move {992 let time = sp_timestamp::InherentDataProvider::from_system_time();993994 let mocked_parachain = cumulus_primitives_parachain_inherent::MockValidationDataInherentDataProvider {995 current_para_block,996 relay_offset: 1000,997 relay_blocks_per_para_block: 2,998 para_blocks_per_relay_epoch: 0,999 xcm_config: cumulus_primitives_parachain_inherent::MockXcmConfig::new(1000 &*client_for_xcm,1001 block,1002 Default::default(),1003 Default::default(),1004 ),1005 relay_randomness_config: (),1006 raw_downward_messages: vec![],1007 raw_horizontal_messages: vec![],1008 };10091010 let slot =1011 sp_consensus_aura::inherents::InherentDataProvider::from_timestamp_and_slot_duration(1012 *time,1013 slot_duration,1014 );10151016 Ok((time, slot, mocked_parachain))1017 }1018 },1019 }),1020 );1021 }10221023 task_manager.spawn_essential_handle().spawn(1024 "frontier-mapping-sync-worker",1025 Some("block-authoring"),1026 MappingSyncWorker::new(1027 client.import_notification_stream(),1028 Duration::new(6, 0),1029 client.clone(),1030 backend.clone(),1031 frontier_backend.clone(),1032 3,1033 0,1034 SyncStrategy::Normal,1035 )1036 .for_each(|()| futures::future::ready(())),1037 );10381039 let rpc_client = client.clone();1040 let rpc_pool = transaction_pool.clone();1041 let rpc_network = network.clone();1042 let rpc_frontier_backend = frontier_backend.clone();1043 let rpc_builder = Box::new(move |deny_unsafe, subscription_executor| {1044 let full_deps = unique_rpc::FullDeps {1045 backend: rpc_frontier_backend.clone(),1046 deny_unsafe,1047 client: rpc_client.clone(),1048 pool: rpc_pool.clone(),1049 graph: rpc_pool.pool().clone(),1050 // TODO: Unhardcode1051 enable_dev_signer: false,1052 filter_pool: filter_pool.clone(),1053 network: rpc_network.clone(),1054 select_chain: select_chain.clone(),1055 is_authority: collator,1056 // TODO: Unhardcode1057 max_past_logs: 10000,1058 block_data_cache: block_data_cache.clone(),1059 fee_history_cache: fee_history_cache.clone(),1060 // TODO: Unhardcode1061 fee_history_limit: 2048,1062 };10631064 unique_rpc::create_full::<_, _, _, _, Runtime, RuntimeApi, _>(1065 full_deps,1066 subscription_executor,1067 )1068 .map_err(Into::into)1069 });10701071 sc_service::spawn_tasks(sc_service::SpawnTasksParams {1072 network,1073 client,1074 keystore: keystore_container.sync_keystore(),1075 task_manager: &mut task_manager,1076 transaction_pool,1077 rpc_builder,1078 backend,1079 system_rpc_tx,1080 config,1081 telemetry: None,1082 tx_handler_controller,1083 })?;10841085 network_starter.start_network();1086 Ok(task_manager)1087}1// Copyright 2019-2022 Unique Network (Gibraltar) Ltd.2// This file is part of Unique Network.34// Unique Network is free software: you can redistribute it and/or modify5// it under the terms of the GNU General Public License as published by6// the Free Software Foundation, either version 3 of the License, or7// (at your option) any later version.89// Unique Network is distributed in the hope that it will be useful,10// but WITHOUT ANY WARRANTY; without even the implied warranty of11// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the12// GNU General Public License for more details.1314// You should have received a copy of the GNU General Public License15// along with Unique Network. If not, see <http://www.gnu.org/licenses/>.1617// std18use std::sync::Arc;19use std::sync::Mutex;20use std::collections::BTreeMap;21use std::time::Duration;22use std::pin::Pin;23use fc_rpc_core::types::FeeHistoryCache;24use futures::{25 Stream, StreamExt,26 stream::select,27 task::{Context, Poll},28};29use tokio::time::Interval;3031use unique_rpc::overrides_handle;3233use serde::{Serialize, Deserialize};3435// Cumulus Imports36use cumulus_client_consensus_aura::{AuraConsensus, BuildAuraConsensusParams, SlotProportion};37use cumulus_client_consensus_common::{38 ParachainConsensus, ParachainBlockImport as TParachainBlockImport,39};40use cumulus_client_service::{41 prepare_node_config, start_collator, start_full_node, StartCollatorParams, StartFullNodeParams,42};43use cumulus_client_cli::CollatorOptions;44use cumulus_client_network::BlockAnnounceValidator;45use cumulus_primitives_core::ParaId;46use cumulus_relay_chain_inprocess_interface::build_inprocess_relay_chain;47use cumulus_relay_chain_interface::{RelayChainError, RelayChainInterface, RelayChainResult};48use cumulus_relay_chain_minimal_node::build_minimal_relay_chain_node;4950// Substrate Imports51use sp_api::BlockT;52use sc_executor::NativeElseWasmExecutor;53use sc_executor::NativeExecutionDispatch;54use sc_network::{NetworkService, NetworkBlock};55use sc_service::{BasePath, Configuration, PartialComponents, TaskManager};56use sc_telemetry::{Telemetry, TelemetryHandle, TelemetryWorker, TelemetryWorkerHandle};57use sp_keystore::SyncCryptoStorePtr;58use sp_runtime::traits::BlakeTwo256;59use substrate_prometheus_endpoint::Registry;60use sc_client_api::BlockchainEvents;61use sc_consensus::ImportQueue;6263use polkadot_service::CollatorPair;6465// Frontier Imports66use fc_rpc_core::types::FilterPool;67use fc_mapping_sync::{MappingSyncWorker, SyncStrategy};6869use up_common::types::opaque::*;7071#[cfg(feature = "pov-estimate")]72use crate::chain_spec::RuntimeIdentification;7374// RMRK75use up_data_structs::{76 RmrkCollectionInfo, RmrkInstanceInfo, RmrkResourceInfo, RmrkPropertyInfo, RmrkBaseInfo,77 RmrkPartType, RmrkTheme,78};7980/// Unique native executor instance.81#[cfg(feature = "unique-runtime")]82pub struct UniqueRuntimeExecutor;8384#[cfg(feature = "quartz-runtime")]85/// Quartz native executor instance.86pub struct QuartzRuntimeExecutor;8788/// Opal native executor instance.89pub struct OpalRuntimeExecutor;9091#[cfg(all(feature = "unique-runtime", feature = "runtime-benchmarks"))]92pub type DefaultRuntimeExecutor = UniqueRuntimeExecutor;9394#[cfg(all(95 not(feature = "unique-runtime"),96 feature = "quartz-runtime",97 feature = "runtime-benchmarks"98))]99pub type DefaultRuntimeExecutor = QuartzRuntimeExecutor;100101#[cfg(all(102 not(feature = "unique-runtime"),103 not(feature = "quartz-runtime"),104 feature = "runtime-benchmarks"105))]106pub type DefaultRuntimeExecutor = OpalRuntimeExecutor;107108#[cfg(feature = "unique-runtime")]109impl NativeExecutionDispatch for UniqueRuntimeExecutor {110 /// Only enable the benchmarking host functions when we actually want to benchmark.111 #[cfg(feature = "runtime-benchmarks")]112 type ExtendHostFunctions = frame_benchmarking::benchmarking::HostFunctions;113 /// Otherwise we only use the default Substrate host functions.114 #[cfg(not(feature = "runtime-benchmarks"))]115 type ExtendHostFunctions = ();116117 fn dispatch(method: &str, data: &[u8]) -> Option<Vec<u8>> {118 unique_runtime::api::dispatch(method, data)119 }120121 fn native_version() -> sc_executor::NativeVersion {122 unique_runtime::native_version()123 }124}125126#[cfg(feature = "quartz-runtime")]127impl NativeExecutionDispatch for QuartzRuntimeExecutor {128 /// Only enable the benchmarking host functions when we actually want to benchmark.129 #[cfg(feature = "runtime-benchmarks")]130 type ExtendHostFunctions = frame_benchmarking::benchmarking::HostFunctions;131 /// Otherwise we only use the default Substrate host functions.132 #[cfg(not(feature = "runtime-benchmarks"))]133 type ExtendHostFunctions = ();134135 fn dispatch(method: &str, data: &[u8]) -> Option<Vec<u8>> {136 quartz_runtime::api::dispatch(method, data)137 }138139 fn native_version() -> sc_executor::NativeVersion {140 quartz_runtime::native_version()141 }142}143144impl NativeExecutionDispatch for OpalRuntimeExecutor {145 /// Only enable the benchmarking host functions when we actually want to benchmark.146 #[cfg(feature = "runtime-benchmarks")]147 type ExtendHostFunctions = frame_benchmarking::benchmarking::HostFunctions;148 /// Otherwise we only use the default Substrate host functions.149 #[cfg(not(feature = "runtime-benchmarks"))]150 type ExtendHostFunctions = ();151152 fn dispatch(method: &str, data: &[u8]) -> Option<Vec<u8>> {153 opal_runtime::api::dispatch(method, data)154 }155156 fn native_version() -> sc_executor::NativeVersion {157 opal_runtime::native_version()158 }159}160161pub struct AutosealInterval {162 interval: Interval,163}164165impl AutosealInterval {166 pub fn new(config: &Configuration, interval: Duration) -> Self {167 let _tokio_runtime = config.tokio_handle.enter();168 let interval = tokio::time::interval(interval);169170 Self { interval }171 }172}173174impl Stream for AutosealInterval {175 type Item = tokio::time::Instant;176177 fn poll_next(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<Self::Item>> {178 self.interval.poll_tick(cx).map(Some)179 }180}181182pub fn open_frontier_backend<Block: BlockT, C: sp_blockchain::HeaderBackend<Block>>(183 client: Arc<C>,184 config: &Configuration,185) -> Result<Arc<fc_db::Backend<Block>>, String> {186 let config_dir = config187 .base_path188 .as_ref()189 .map(|base_path| base_path.config_dir(config.chain_spec.id()))190 .unwrap_or_else(|| {191 BasePath::from_project("", "", "unique").config_dir(config.chain_spec.id())192 });193 let database_dir = config_dir.join("frontier").join("db");194195 Ok(Arc::new(fc_db::Backend::<Block>::new(196 client,197 &fc_db::DatabaseSettings {198 source: fc_db::DatabaseSource::RocksDb {199 path: database_dir,200 cache_size: 0,201 },202 },203 )?))204}205206type FullClient<RuntimeApi, ExecutorDispatch> =207 sc_service::TFullClient<Block, RuntimeApi, NativeElseWasmExecutor<ExecutorDispatch>>;208type FullBackend = sc_service::TFullBackend<Block>;209type FullSelectChain = sc_consensus::LongestChain<FullBackend, Block>;210type ParachainBlockImport<RuntimeApi, ExecutorDispatch> =211 TParachainBlockImport<Block, Arc<FullClient<RuntimeApi, ExecutorDispatch>>, FullBackend>;212213/// Starts a `ServiceBuilder` for a full service.214///215/// Use this macro if you don't actually need the full service, but just the builder in order to216/// be able to perform chain operations.217#[allow(clippy::type_complexity)]218pub fn new_partial<RuntimeApi, ExecutorDispatch, BIQ>(219 config: &Configuration,220 build_import_queue: BIQ,221) -> Result<222 PartialComponents<223 FullClient<RuntimeApi, ExecutorDispatch>,224 FullBackend,225 FullSelectChain,226 sc_consensus::DefaultImportQueue<Block, FullClient<RuntimeApi, ExecutorDispatch>>,227 sc_transaction_pool::FullPool<Block, FullClient<RuntimeApi, ExecutorDispatch>>,228 (229 Option<Telemetry>,230 Option<FilterPool>,231 Arc<fc_db::Backend<Block>>,232 Option<TelemetryWorkerHandle>,233 FeeHistoryCache,234 ),235 >,236 sc_service::Error,237>238where239 sc_client_api::StateBackendFor<FullBackend, Block>: sp_api::StateBackend<BlakeTwo256>,240 RuntimeApi: sp_api::ConstructRuntimeApi<Block, FullClient<RuntimeApi, ExecutorDispatch>>241 + Send242 + Sync243 + 'static,244 RuntimeApi::RuntimeApi: sp_transaction_pool::runtime_api::TaggedTransactionQueue<Block>,245 ExecutorDispatch: NativeExecutionDispatch + 'static,246 BIQ: FnOnce(247 Arc<FullClient<RuntimeApi, ExecutorDispatch>>,248 Arc<FullBackend>,249 &Configuration,250 Option<TelemetryHandle>,251 &TaskManager,252 ) -> Result<253 sc_consensus::DefaultImportQueue<Block, FullClient<RuntimeApi, ExecutorDispatch>>,254 sc_service::Error,255 >,256{257 let _telemetry = config258 .telemetry_endpoints259 .clone()260 .filter(|x| !x.is_empty())261 .map(|endpoints| -> Result<_, sc_telemetry::Error> {262 let worker = TelemetryWorker::new(16)?;263 let telemetry = worker.handle().new_telemetry(endpoints);264 Ok((worker, telemetry))265 })266 .transpose()?;267268 let telemetry = config269 .telemetry_endpoints270 .clone()271 .filter(|x| !x.is_empty())272 .map(|endpoints| -> Result<_, sc_telemetry::Error> {273 let worker = TelemetryWorker::new(16)?;274 let telemetry = worker.handle().new_telemetry(endpoints);275 Ok((worker, telemetry))276 })277 .transpose()?;278279 let executor = NativeElseWasmExecutor::<ExecutorDispatch>::new(280 config.wasm_method,281 config.default_heap_pages,282 config.max_runtime_instances,283 config.runtime_cache_size,284 );285286 let (client, backend, keystore_container, task_manager) =287 sc_service::new_full_parts::<Block, RuntimeApi, _>(288 config,289 telemetry.as_ref().map(|(_, telemetry)| telemetry.handle()),290 executor,291 )?;292 let client = Arc::new(client);293294 let telemetry_worker_handle = telemetry.as_ref().map(|(worker, _)| worker.handle());295296 let telemetry = telemetry.map(|(worker, telemetry)| {297 task_manager298 .spawn_handle()299 .spawn("telemetry", None, worker.run());300 telemetry301 });302303 let select_chain = sc_consensus::LongestChain::new(backend.clone());304305 let transaction_pool = sc_transaction_pool::BasicPool::new_full(306 config.transaction_pool.clone(),307 config.role.is_authority().into(),308 config.prometheus_registry(),309 task_manager.spawn_essential_handle(),310 client.clone(),311 );312313 let filter_pool: Option<FilterPool> = Some(Arc::new(Mutex::new(BTreeMap::new())));314315 let frontier_backend = open_frontier_backend(client.clone(), config)?;316317 let import_queue = build_import_queue(318 client.clone(),319 backend.clone(),320 config,321 telemetry.as_ref().map(|telemetry| telemetry.handle()),322 &task_manager,323 )?;324 let fee_history_cache: FeeHistoryCache = Arc::new(Mutex::new(BTreeMap::new()));325326 let params = PartialComponents {327 backend,328 client,329 import_queue,330 keystore_container,331 task_manager,332 transaction_pool,333 select_chain,334 other: (335 telemetry,336 filter_pool,337 frontier_backend,338 telemetry_worker_handle,339 fee_history_cache,340 ),341 };342343 Ok(params)344}345346async fn build_relay_chain_interface(347 polkadot_config: Configuration,348 parachain_config: &Configuration,349 telemetry_worker_handle: Option<TelemetryWorkerHandle>,350 task_manager: &mut TaskManager,351 collator_options: CollatorOptions,352 hwbench: Option<sc_sysinfo::HwBench>,353) -> RelayChainResult<(354 Arc<(dyn RelayChainInterface + 'static)>,355 Option<CollatorPair>,356)> {357 if collator_options.relay_chain_rpc_urls.is_empty() {358 build_inprocess_relay_chain(359 polkadot_config,360 parachain_config,361 telemetry_worker_handle,362 task_manager,363 hwbench,364 )365 } else {366 build_minimal_relay_chain_node(367 polkadot_config,368 task_manager,369 collator_options.relay_chain_rpc_urls,370 )371 .await372 }373}374375/// Start a node with the given parachain `Configuration` and relay chain `Configuration`.376///377/// This is the actual implementation that is abstract over the executor and the runtime api.378#[sc_tracing::logging::prefix_logs_with("Parachain")]379async fn start_node_impl<Runtime, RuntimeApi, ExecutorDispatch, BIQ, BIC>(380 parachain_config: Configuration,381 polkadot_config: Configuration,382 collator_options: CollatorOptions,383 id: ParaId,384 build_import_queue: BIQ,385 build_consensus: BIC,386 hwbench: Option<sc_sysinfo::HwBench>,387) -> sc_service::error::Result<(TaskManager, Arc<FullClient<RuntimeApi, ExecutorDispatch>>)>388where389 sc_client_api::StateBackendFor<FullBackend, Block>: sp_api::StateBackend<BlakeTwo256>,390 Runtime: RuntimeInstance + Send + Sync + 'static,391 <Runtime as RuntimeInstance>::CrossAccountId: Serialize,392 for<'de> <Runtime as RuntimeInstance>::CrossAccountId: Deserialize<'de>,393 RuntimeApi: sp_api::ConstructRuntimeApi<Block, FullClient<RuntimeApi, ExecutorDispatch>>394 + Send395 + Sync396 + 'static,397 RuntimeApi::RuntimeApi: sp_transaction_pool::runtime_api::TaggedTransactionQueue<Block>398 + fp_rpc::EthereumRuntimeRPCApi<Block>399 + fp_rpc::ConvertTransactionRuntimeApi<Block>400 + sp_session::SessionKeys<Block>401 + sp_block_builder::BlockBuilder<Block>402 + pallet_transaction_payment_rpc_runtime_api::TransactionPaymentApi<Block, Balance>403 + sp_api::ApiExt<Block, StateBackend = sc_client_api::StateBackendFor<FullBackend, Block>>404 + up_rpc::UniqueApi<Block, Runtime::CrossAccountId, AccountId>405 + app_promotion_rpc::AppPromotionApi<Block, BlockNumber, Runtime::CrossAccountId, AccountId>406 + rmrk_rpc::RmrkApi<407 Block,408 AccountId,409 RmrkCollectionInfo<AccountId>,410 RmrkInstanceInfo<AccountId>,411 RmrkResourceInfo,412 RmrkPropertyInfo,413 RmrkBaseInfo<AccountId>,414 RmrkPartType,415 RmrkTheme,416 > + up_pov_estimate_rpc::PovEstimateApi<Block>417 + substrate_frame_rpc_system::AccountNonceApi<Block, AccountId, Index>418 + sp_api::Metadata<Block>419 + sp_offchain::OffchainWorkerApi<Block>420 + cumulus_primitives_core::CollectCollationInfo<Block>,421 ExecutorDispatch: NativeExecutionDispatch + 'static,422 BIQ: FnOnce(423 Arc<FullClient<RuntimeApi, ExecutorDispatch>>,424 Arc<FullBackend>,425 &Configuration,426 Option<TelemetryHandle>,427 &TaskManager,428 ) -> Result<429 sc_consensus::DefaultImportQueue<Block, FullClient<RuntimeApi, ExecutorDispatch>>,430 sc_service::Error,431 >,432 BIC: FnOnce(433 Arc<FullClient<RuntimeApi, ExecutorDispatch>>,434 Arc<FullBackend>,435 Option<&Registry>,436 Option<TelemetryHandle>,437 &TaskManager,438 Arc<dyn RelayChainInterface>,439 Arc<sc_transaction_pool::FullPool<Block, FullClient<RuntimeApi, ExecutorDispatch>>>,440 Arc<NetworkService<Block, Hash>>,441 SyncCryptoStorePtr,442 bool,443 ) -> Result<Box<dyn ParachainConsensus<Block>>, sc_service::Error>,444{445 let parachain_config = prepare_node_config(parachain_config);446447 let params =448 new_partial::<RuntimeApi, ExecutorDispatch, BIQ>(¶chain_config, build_import_queue)?;449 let (mut telemetry, filter_pool, frontier_backend, telemetry_worker_handle, fee_history_cache) =450 params.other;451452 let client = params.client.clone();453 let backend = params.backend.clone();454 let mut task_manager = params.task_manager;455456 let (relay_chain_interface, collator_key) = build_relay_chain_interface(457 polkadot_config,458 ¶chain_config,459 telemetry_worker_handle,460 &mut task_manager,461 collator_options.clone(),462 hwbench.clone(),463 )464 .await465 .map_err(|e| match e {466 RelayChainError::ServiceError(polkadot_service::Error::Sub(x)) => x,467 s => s.to_string().into(),468 })?;469470 let block_announce_validator = BlockAnnounceValidator::new(relay_chain_interface.clone(), id);471472 let force_authoring = parachain_config.force_authoring;473 let validator = parachain_config.role.is_authority();474 let prometheus_registry = parachain_config.prometheus_registry().cloned();475 let transaction_pool = params.transaction_pool.clone();476 let import_queue_service = params.import_queue.service();477478 let (network, system_rpc_tx, tx_handler_controller, start_network) =479 sc_service::build_network(sc_service::BuildNetworkParams {480 config: ¶chain_config,481 client: client.clone(),482 transaction_pool: transaction_pool.clone(),483 spawn_handle: task_manager.spawn_handle(),484 import_queue: params.import_queue,485 block_announce_validator_builder: Some(Box::new(|_| {486 Box::new(block_announce_validator)487 })),488 warp_sync: None,489 })?;490491 let rpc_client = client.clone();492 let rpc_pool = transaction_pool.clone();493 let select_chain = params.select_chain.clone();494 let rpc_network = network.clone();495496 let rpc_frontier_backend = frontier_backend.clone();497498 let block_data_cache = Arc::new(fc_rpc::EthBlockDataCacheTask::new(499 task_manager.spawn_handle(),500 overrides_handle::<_, _, Runtime>(client.clone()),501 50,502 50,503 prometheus_registry.clone(),504 ));505506 task_manager.spawn_essential_handle().spawn(507 "frontier-mapping-sync-worker",508 None,509 MappingSyncWorker::new(510 client.import_notification_stream(),511 Duration::new(6, 0),512 client.clone(),513 backend.clone(),514 frontier_backend.clone(),515 3,516 0,517 SyncStrategy::Normal,518 )519 .for_each(|()| futures::future::ready(())),520 );521522 #[cfg(feature = "pov-estimate")]523 let rpc_backend = backend.clone();524525 #[cfg(feature = "pov-estimate")]526 let runtime_id = parachain_config.chain_spec.runtime_id();527528 let rpc_builder = Box::new(move |deny_unsafe, subscription_task_executor| {529 let full_deps = unique_rpc::FullDeps {530 #[cfg(feature = "pov-estimate")]531 runtime_id: runtime_id.clone(),532533 #[cfg(feature = "pov-estimate")]534 exec_params: uc_rpc::pov_estimate::ExecutorParams {535 wasm_method: parachain_config.wasm_method,536 default_heap_pages: parachain_config.default_heap_pages,537 max_runtime_instances: parachain_config.max_runtime_instances,538 runtime_cache_size: parachain_config.runtime_cache_size,539 },540541 #[cfg(feature = "pov-estimate")]542 backend: rpc_backend.clone(),543544 eth_backend: rpc_frontier_backend.clone(),545 deny_unsafe,546 client: rpc_client.clone(),547 pool: rpc_pool.clone(),548 graph: rpc_pool.pool().clone(),549 // TODO: Unhardcode550 enable_dev_signer: false,551 filter_pool: filter_pool.clone(),552 network: rpc_network.clone(),553 select_chain: select_chain.clone(),554 is_authority: validator,555 // TODO: Unhardcode556 max_past_logs: 10000,557 block_data_cache: block_data_cache.clone(),558 fee_history_cache: fee_history_cache.clone(),559 // TODO: Unhardcode560 fee_history_limit: 2048,561 };562563 unique_rpc::create_full::<_, _, _, _, Runtime, RuntimeApi, _>(564 full_deps,565 subscription_task_executor,566 )567 .map_err(Into::into)568 });569570 sc_service::spawn_tasks(sc_service::SpawnTasksParams {571 rpc_builder,572 client: client.clone(),573 transaction_pool: transaction_pool.clone(),574 task_manager: &mut task_manager,575 config: parachain_config,576 keystore: params.keystore_container.sync_keystore(),577 backend: backend.clone(),578 network: network.clone(),579 system_rpc_tx,580 telemetry: telemetry.as_mut(),581 tx_handler_controller,582 })?;583584 if let Some(hwbench) = hwbench {585 sc_sysinfo::print_hwbench(&hwbench);586587 if let Some(ref mut telemetry) = telemetry {588 let telemetry_handle = telemetry.handle();589 task_manager.spawn_handle().spawn(590 "telemetry_hwbench",591 None,592 sc_sysinfo::initialize_hwbench_telemetry(telemetry_handle, hwbench),593 );594 }595 }596597 let announce_block = {598 let network = network.clone();599 Arc::new(Box::new(move |hash, data| {600 network.announce_block(hash, data)601 }))602 };603604 let relay_chain_slot_duration = Duration::from_secs(6);605606 if validator {607 let parachain_consensus = build_consensus(608 client.clone(),609 backend.clone(),610 prometheus_registry.as_ref(),611 telemetry.as_ref().map(|t| t.handle()),612 &task_manager,613 relay_chain_interface.clone(),614 transaction_pool,615 network,616 params.keystore_container.sync_keystore(),617 force_authoring,618 )?;619620 let spawner = task_manager.spawn_handle();621622 let params = StartCollatorParams {623 para_id: id,624 block_status: client.clone(),625 announce_block,626 client: client.clone(),627 task_manager: &mut task_manager,628 spawner,629 parachain_consensus,630 import_queue: import_queue_service,631 collator_key: collator_key.expect("Command line arguments do not allow this. qed"),632 relay_chain_interface,633 relay_chain_slot_duration,634 };635636 start_collator(params).await?;637 } else {638 let params = StartFullNodeParams {639 client: client.clone(),640 announce_block,641 task_manager: &mut task_manager,642 para_id: id,643 import_queue: import_queue_service,644 relay_chain_interface,645 relay_chain_slot_duration,646 };647648 start_full_node(params)?;649 }650651 start_network.start_network();652653 Ok((task_manager, client))654}655656/// Build the import queue for the the parachain runtime.657pub fn parachain_build_import_queue<RuntimeApi, ExecutorDispatch>(658 client: Arc<FullClient<RuntimeApi, ExecutorDispatch>>,659 backend: Arc<FullBackend>,660 config: &Configuration,661 telemetry: Option<TelemetryHandle>,662 task_manager: &TaskManager,663) -> Result<664 sc_consensus::DefaultImportQueue<Block, FullClient<RuntimeApi, ExecutorDispatch>>,665 sc_service::Error,666>667where668 RuntimeApi: sp_api::ConstructRuntimeApi<Block, FullClient<RuntimeApi, ExecutorDispatch>>669 + Send670 + Sync671 + 'static,672 RuntimeApi::RuntimeApi: sp_transaction_pool::runtime_api::TaggedTransactionQueue<Block>673 + sp_block_builder::BlockBuilder<Block>674 + sp_consensus_aura::AuraApi<Block, AuraId>675 + sp_api::ApiExt<Block, StateBackend = sc_client_api::StateBackendFor<FullBackend, Block>>,676 ExecutorDispatch: NativeExecutionDispatch + 'static,677{678 let slot_duration = cumulus_client_consensus_aura::slot_duration(&*client)?;679680 let block_import = ParachainBlockImport::new(client.clone(), backend.clone());681682 cumulus_client_consensus_aura::import_queue::<683 sp_consensus_aura::sr25519::AuthorityPair,684 _,685 _,686 _,687 _,688 _,689 >(cumulus_client_consensus_aura::ImportQueueParams {690 block_import,691 client: client.clone(),692 create_inherent_data_providers: move |_, _| async move {693 let time = sp_timestamp::InherentDataProvider::from_system_time();694695 let slot =696 sp_consensus_aura::inherents::InherentDataProvider::from_timestamp_and_slot_duration(697 *time,698 slot_duration,699 );700701 Ok((slot, time))702 },703 registry: config.prometheus_registry(),704 spawner: &task_manager.spawn_essential_handle(),705 telemetry,706 })707 .map_err(Into::into)708}709710/// Start a normal parachain node.711pub async fn start_node<Runtime, RuntimeApi, ExecutorDispatch>(712 parachain_config: Configuration,713 polkadot_config: Configuration,714 collator_options: CollatorOptions,715 id: ParaId,716 hwbench: Option<sc_sysinfo::HwBench>,717) -> sc_service::error::Result<(TaskManager, Arc<FullClient<RuntimeApi, ExecutorDispatch>>)>718where719 Runtime: RuntimeInstance + Send + Sync + 'static,720 <Runtime as RuntimeInstance>::CrossAccountId: Serialize,721 for<'de> <Runtime as RuntimeInstance>::CrossAccountId: Deserialize<'de>,722 RuntimeApi: sp_api::ConstructRuntimeApi<Block, FullClient<RuntimeApi, ExecutorDispatch>>723 + Send724 + Sync725 + 'static,726 RuntimeApi::RuntimeApi: sp_transaction_pool::runtime_api::TaggedTransactionQueue<Block>727 + fp_rpc::EthereumRuntimeRPCApi<Block>728 + fp_rpc::ConvertTransactionRuntimeApi<Block>729 + sp_session::SessionKeys<Block>730 + sp_block_builder::BlockBuilder<Block>731 + pallet_transaction_payment_rpc_runtime_api::TransactionPaymentApi<Block, Balance>732 + sp_api::ApiExt<Block, StateBackend = sc_client_api::StateBackendFor<FullBackend, Block>>733 + up_rpc::UniqueApi<Block, Runtime::CrossAccountId, AccountId>734 + app_promotion_rpc::AppPromotionApi<Block, BlockNumber, Runtime::CrossAccountId, AccountId>735 + rmrk_rpc::RmrkApi<736 Block,737 AccountId,738 RmrkCollectionInfo<AccountId>,739 RmrkInstanceInfo<AccountId>,740 RmrkResourceInfo,741 RmrkPropertyInfo,742 RmrkBaseInfo<AccountId>,743 RmrkPartType,744 RmrkTheme,745 > + up_pov_estimate_rpc::PovEstimateApi<Block>746 + substrate_frame_rpc_system::AccountNonceApi<Block, AccountId, Index>747 + sp_api::Metadata<Block>748 + sp_offchain::OffchainWorkerApi<Block>749 + cumulus_primitives_core::CollectCollationInfo<Block>750 + sp_consensus_aura::AuraApi<Block, AuraId>,751 ExecutorDispatch: NativeExecutionDispatch + 'static,752{753 start_node_impl::<Runtime, RuntimeApi, ExecutorDispatch, _, _>(754 parachain_config,755 polkadot_config,756 collator_options,757 id,758 parachain_build_import_queue,759 |client,760 backend,761 prometheus_registry,762 telemetry,763 task_manager,764 relay_chain_interface,765 transaction_pool,766 sync_oracle,767 keystore,768 force_authoring| {769 let slot_duration = cumulus_client_consensus_aura::slot_duration(&*client)?;770771 let proposer_factory = sc_basic_authorship::ProposerFactory::with_proof_recording(772 task_manager.spawn_handle(),773 client.clone(),774 transaction_pool,775 prometheus_registry,776 telemetry.clone(),777 );778779 let block_import = ParachainBlockImport::new(client.clone(), backend.clone());780781 Ok(AuraConsensus::build::<782 sp_consensus_aura::sr25519::AuthorityPair,783 _,784 _,785 _,786 _,787 _,788 _,789 >(BuildAuraConsensusParams {790 proposer_factory,791 create_inherent_data_providers: move |_, (relay_parent, validation_data)| {792 let relay_chain_interface = relay_chain_interface.clone();793 async move {794 let parachain_inherent =795 cumulus_primitives_parachain_inherent::ParachainInherentData::create_at(796 relay_parent,797 &relay_chain_interface,798 &validation_data,799 id,800 ).await;801802 let time = sp_timestamp::InherentDataProvider::from_system_time();803804 let slot =805 sp_consensus_aura::inherents::InherentDataProvider::from_timestamp_and_slot_duration(806 *time,807 slot_duration,808 );809810 let parachain_inherent = parachain_inherent.ok_or_else(|| {811 Box::<dyn std::error::Error + Send + Sync>::from(812 "Failed to create parachain inherent",813 )814 })?;815 Ok((slot, time, parachain_inherent))816 }817 },818 block_import,819 para_client: client,820 backoff_authoring_blocks: Option::<()>::None,821 sync_oracle,822 keystore,823 force_authoring,824 slot_duration,825 // We got around 500ms for proposing826 block_proposal_slot_portion: SlotProportion::new(1f32 / 24f32),827 telemetry,828 max_block_proposal_slot_portion: None,829 }))830 },831 hwbench,832 )833 .await834}835836fn dev_build_import_queue<RuntimeApi, ExecutorDispatch>(837 client: Arc<FullClient<RuntimeApi, ExecutorDispatch>>,838 _: Arc<FullBackend>,839 config: &Configuration,840 _: Option<TelemetryHandle>,841 task_manager: &TaskManager,842) -> Result<843 sc_consensus::DefaultImportQueue<Block, FullClient<RuntimeApi, ExecutorDispatch>>,844 sc_service::Error,845>846where847 RuntimeApi: sp_api::ConstructRuntimeApi<Block, FullClient<RuntimeApi, ExecutorDispatch>>848 + Send849 + Sync850 + 'static,851 RuntimeApi::RuntimeApi: sp_transaction_pool::runtime_api::TaggedTransactionQueue<Block>852 + sp_api::ApiExt<Block, StateBackend = sc_client_api::StateBackendFor<FullBackend, Block>>,853 ExecutorDispatch: NativeExecutionDispatch + 'static,854{855 Ok(sc_consensus_manual_seal::import_queue(856 Box::new(client.clone()),857 &task_manager.spawn_essential_handle(),858 config.prometheus_registry(),859 ))860}861862/// Builds a new development service. This service uses instant seal, and mocks863/// the parachain inherent864pub fn start_dev_node<Runtime, RuntimeApi, ExecutorDispatch>(865 config: Configuration,866 autoseal_interval: Duration,867) -> sc_service::error::Result<TaskManager>868where869 Runtime: RuntimeInstance + Send + Sync + 'static,870 <Runtime as RuntimeInstance>::CrossAccountId: Serialize,871 for<'de> <Runtime as RuntimeInstance>::CrossAccountId: Deserialize<'de>,872 RuntimeApi: sp_api::ConstructRuntimeApi<Block, FullClient<RuntimeApi, ExecutorDispatch>>873 + Send874 + Sync875 + 'static,876 RuntimeApi::RuntimeApi: sp_transaction_pool::runtime_api::TaggedTransactionQueue<Block>877 + fp_rpc::EthereumRuntimeRPCApi<Block>878 + fp_rpc::ConvertTransactionRuntimeApi<Block>879 + sp_session::SessionKeys<Block>880 + sp_block_builder::BlockBuilder<Block>881 + pallet_transaction_payment_rpc_runtime_api::TransactionPaymentApi<Block, Balance>882 + sp_api::ApiExt<Block, StateBackend = sc_client_api::StateBackendFor<FullBackend, Block>>883 + up_rpc::UniqueApi<Block, Runtime::CrossAccountId, AccountId>884 + app_promotion_rpc::AppPromotionApi<Block, BlockNumber, Runtime::CrossAccountId, AccountId>885 + rmrk_rpc::RmrkApi<886 Block,887 AccountId,888 RmrkCollectionInfo<AccountId>,889 RmrkInstanceInfo<AccountId>,890 RmrkResourceInfo,891 RmrkPropertyInfo,892 RmrkBaseInfo<AccountId>,893 RmrkPartType,894 RmrkTheme,895 > + up_pov_estimate_rpc::PovEstimateApi<Block>896 + substrate_frame_rpc_system::AccountNonceApi<Block, AccountId, Index>897 + sp_api::Metadata<Block>898 + sp_offchain::OffchainWorkerApi<Block>899 + cumulus_primitives_core::CollectCollationInfo<Block>900 + sp_consensus_aura::AuraApi<Block, AuraId>,901 ExecutorDispatch: NativeExecutionDispatch + 'static,902{903 use sc_consensus_manual_seal::{run_manual_seal, EngineCommand, ManualSealParams};904 use fc_consensus::FrontierBlockImport;905 use sc_client_api::HeaderBackend;906907 let sc_service::PartialComponents {908 client,909 backend,910 mut task_manager,911 import_queue,912 keystore_container,913 select_chain: maybe_select_chain,914 transaction_pool,915 other:916 (telemetry, filter_pool, frontier_backend, _telemetry_worker_handle, fee_history_cache),917 } = new_partial::<RuntimeApi, ExecutorDispatch, _>(918 &config,919 dev_build_import_queue::<RuntimeApi, ExecutorDispatch>,920 )?;921 let prometheus_registry = config.prometheus_registry().cloned();922923 let block_data_cache = Arc::new(fc_rpc::EthBlockDataCacheTask::new(924 task_manager.spawn_handle(),925 overrides_handle::<_, _, Runtime>(client.clone()),926 50,927 50,928 prometheus_registry.clone(),929 ));930931 let (network, system_rpc_tx, tx_handler_controller, network_starter) =932 sc_service::build_network(sc_service::BuildNetworkParams {933 config: &config,934 client: client.clone(),935 transaction_pool: transaction_pool.clone(),936 spawn_handle: task_manager.spawn_handle(),937 import_queue,938 block_announce_validator_builder: None,939 warp_sync: None,940 })?;941942 if config.offchain_worker.enabled {943 sc_service::build_offchain_workers(944 &config,945 task_manager.spawn_handle(),946 client.clone(),947 network.clone(),948 );949 }950951 let collator = config.role.is_authority();952953 let select_chain = maybe_select_chain.clone();954955 if collator {956 let block_import =957 FrontierBlockImport::new(client.clone(), client.clone(), frontier_backend.clone());958959 let env = sc_basic_authorship::ProposerFactory::new(960 task_manager.spawn_handle(),961 client.clone(),962 transaction_pool.clone(),963 prometheus_registry.as_ref(),964 telemetry.as_ref().map(|x| x.handle()),965 );966967 let transactions_commands_stream: Box<968 dyn Stream<Item = EngineCommand<Hash>> + Send + Sync + Unpin,969 > = Box::new(970 transaction_pool971 .pool()972 .validated_pool()973 .import_notification_stream()974 .map(|_| EngineCommand::SealNewBlock {975 create_empty: true,976 finalize: false,977 parent_hash: None,978 sender: None,979 }),980 );981982 let autoseal_interval = Box::pin(AutosealInterval::new(&config, autoseal_interval));983 let idle_commands_stream: Box<984 dyn Stream<Item = EngineCommand<Hash>> + Send + Sync + Unpin,985 > = Box::new(autoseal_interval.map(|_| EngineCommand::SealNewBlock {986 create_empty: true,987 finalize: false,988 parent_hash: None,989 sender: None,990 }));991992 let commands_stream = select(transactions_commands_stream, idle_commands_stream);993994 let slot_duration = cumulus_client_consensus_aura::slot_duration(&*client)?;995 let client_set_aside_for_cidp = client.clone();996997 task_manager.spawn_essential_handle().spawn_blocking(998 "authorship_task",999 Some("block-authoring"),1000 run_manual_seal(ManualSealParams {1001 block_import,1002 env,1003 client: client.clone(),1004 pool: transaction_pool.clone(),1005 commands_stream,1006 select_chain: select_chain.clone(),1007 consensus_data_provider: None,1008 create_inherent_data_providers: move |block: Hash, ()| {1009 let current_para_block = client_set_aside_for_cidp1010 .number(block)1011 .expect("Header lookup should succeed")1012 .expect("Header passed in as parent should be present in backend.");10131014 let client_for_xcm = client_set_aside_for_cidp.clone();1015 async move {1016 let time = sp_timestamp::InherentDataProvider::from_system_time();10171018 let mocked_parachain = cumulus_primitives_parachain_inherent::MockValidationDataInherentDataProvider {1019 current_para_block,1020 relay_offset: 1000,1021 relay_blocks_per_para_block: 2,1022 para_blocks_per_relay_epoch: 0,1023 xcm_config: cumulus_primitives_parachain_inherent::MockXcmConfig::new(1024 &*client_for_xcm,1025 block,1026 Default::default(),1027 Default::default(),1028 ),1029 relay_randomness_config: (),1030 raw_downward_messages: vec![],1031 raw_horizontal_messages: vec![],1032 };10331034 let slot =1035 sp_consensus_aura::inherents::InherentDataProvider::from_timestamp_and_slot_duration(1036 *time,1037 slot_duration,1038 );10391040 Ok((time, slot, mocked_parachain))1041 }1042 },1043 }),1044 );1045 }10461047 task_manager.spawn_essential_handle().spawn(1048 "frontier-mapping-sync-worker",1049 Some("block-authoring"),1050 MappingSyncWorker::new(1051 client.import_notification_stream(),1052 Duration::new(6, 0),1053 client.clone(),1054 backend.clone(),1055 frontier_backend.clone(),1056 3,1057 0,1058 SyncStrategy::Normal,1059 )1060 .for_each(|()| futures::future::ready(())),1061 );10621063 let rpc_client = client.clone();1064 let rpc_pool = transaction_pool.clone();1065 let rpc_network = network.clone();1066 let rpc_frontier_backend = frontier_backend.clone();10671068 #[cfg(feature = "pov-estimate")]1069 let rpc_backend = backend.clone();10701071 #[cfg(feature = "pov-estimate")]1072 let runtime_id = config.chain_spec.runtime_id();10731074 let rpc_builder = Box::new(move |deny_unsafe, subscription_executor| {1075 let full_deps = unique_rpc::FullDeps {1076 #[cfg(feature = "pov-estimate")]1077 runtime_id: runtime_id.clone(),10781079 #[cfg(feature = "pov-estimate")]1080 exec_params: uc_rpc::pov_estimate::ExecutorParams {1081 wasm_method: config.wasm_method,1082 default_heap_pages: config.default_heap_pages,1083 max_runtime_instances: config.max_runtime_instances,1084 runtime_cache_size: config.runtime_cache_size,1085 },10861087 #[cfg(feature = "pov-estimate")]1088 backend: rpc_backend.clone(),1089 eth_backend: rpc_frontier_backend.clone(),1090 deny_unsafe,1091 client: rpc_client.clone(),1092 pool: rpc_pool.clone(),1093 graph: rpc_pool.pool().clone(),1094 // TODO: Unhardcode1095 enable_dev_signer: false,1096 filter_pool: filter_pool.clone(),1097 network: rpc_network.clone(),1098 select_chain: select_chain.clone(),1099 is_authority: collator,1100 // TODO: Unhardcode1101 max_past_logs: 10000,1102 block_data_cache: block_data_cache.clone(),1103 fee_history_cache: fee_history_cache.clone(),1104 // TODO: Unhardcode1105 fee_history_limit: 2048,1106 };11071108 unique_rpc::create_full::<_, _, _, _, Runtime, RuntimeApi, _>(1109 full_deps,1110 subscription_executor,1111 )1112 .map_err(Into::into)1113 });11141115 sc_service::spawn_tasks(sc_service::SpawnTasksParams {1116 network,1117 client,1118 keystore: keystore_container.sync_keystore(),1119 task_manager: &mut task_manager,1120 transaction_pool,1121 rpc_builder,1122 backend,1123 system_rpc_tx,1124 config,1125 telemetry: None,1126 tx_handler_controller,1127 })?;11281129 network_starter.start_network();1130 Ok(task_manager)1131}node/rpc/Cargo.tomldiffbeforeafterboth--- a/node/rpc/Cargo.toml
+++ b/node/rpc/Cargo.toml
@@ -55,6 +55,7 @@
up-rpc = { path = "../../primitives/rpc" }
app-promotion-rpc = { path = "../../primitives/app_promotion_rpc" }
rmrk-rpc = { path = "../../primitives/rmrk-rpc" }
+up-pov-estimate-rpc = { path = "../../primitives/pov-estimate-rpc" }
up-data-structs = { default-features = false, path = "../../primitives/data-structs" }
[dependencies.serde]
@@ -65,3 +66,4 @@
default = []
std = []
unique-runtime = []
+pov-estimate = ['uc-rpc/pov-estimate']
node/rpc/src/lib.rsdiffbeforeafterboth--- a/node/rpc/src/lib.rs
+++ b/node/rpc/src/lib.rs
@@ -40,7 +40,7 @@
use sc_service::TransactionPool;
use std::{collections::BTreeMap, sync::Arc};
-use up_common::types::opaque::{Hash, AccountId, RuntimeInstance, Index, Block, BlockNumber, Balance};
+use up_common::types::opaque::*;
// RMRK
use up_data_structs::{
@@ -48,6 +48,9 @@
RmrkPartType, RmrkTheme,
};
+#[cfg(feature = "pov-estimate")]
+type FullBackend = sc_service::TFullBackend<Block>;
+
/// Extra dependencies for GRANDPA
pub struct GrandpaDeps<B> {
/// Voting round info.
@@ -82,8 +85,18 @@
pub deny_unsafe: DenyUnsafe,
/// EthFilterApi pool.
pub filter_pool: Option<FilterPool>,
- /// Backend.
- pub backend: Arc<fc_db::Backend<Block>>,
+
+ #[cfg(feature = "pov-estimate")]
+ pub runtime_id: RuntimeId,
+ /// Executor params for PoV estimating
+ #[cfg(feature = "pov-estimate")]
+ pub exec_params: uc_rpc::pov_estimate::ExecutorParams,
+ /// Substrate Backend.
+ #[cfg(feature = "pov-estimate")]
+ pub backend: Arc<FullBackend>,
+
+ /// Ethereum Backend.
+ pub eth_backend: Arc<fc_db::Backend<Block>>,
/// Maximum number of logs in a query.
pub max_past_logs: u32,
/// Maximum fee history cache size.
@@ -162,6 +175,7 @@
RmrkPartType,
RmrkTheme,
>,
+ C::Api: up_pov_estimate_rpc::PovEstimateApi<Block>,
B: sc_client_api::Backend<Block> + Send + Sync + 'static,
B::State: sc_client_api::backend::StateBackend<sp_runtime::traits::HashFor<Block>>,
P: TransactionPool<Block = Block> + 'static,
@@ -182,6 +196,9 @@
#[cfg(not(feature = "unique-runtime"))]
use uc_rpc::{RmrkApiServer, Rmrk};
+ #[cfg(feature = "pov-estimate")]
+ use uc_rpc::pov_estimate::{PovEstimateApiServer, PovEstimate};
+
// use pallet_contracts_rpc::{Contracts, ContractsApi};
use pallet_transaction_payment_rpc::{TransactionPayment, TransactionPaymentApiServer};
use substrate_frame_rpc_system::{System, SystemApiServer};
@@ -200,7 +217,17 @@
network,
deny_unsafe,
filter_pool,
+
+ #[cfg(feature = "pov-estimate")]
+ runtime_id,
+
+ #[cfg(feature = "pov-estimate")]
+ exec_params,
+
+ #[cfg(feature = "pov-estimate")]
backend,
+
+ eth_backend,
max_past_logs,
} = deps;
@@ -226,7 +253,7 @@
network.clone(),
signers,
overrides.clone(),
- backend.clone(),
+ eth_backend.clone(),
is_authority,
block_data_cache.clone(),
fee_history_cache,
@@ -244,11 +271,23 @@
#[cfg(not(feature = "unique-runtime"))]
io.merge(Rmrk::new(client.clone()).into_rpc())?;
+ #[cfg(feature = "pov-estimate")]
+ io.merge(
+ PovEstimate::new(
+ client.clone(),
+ backend,
+ deny_unsafe,
+ exec_params,
+ runtime_id,
+ )
+ .into_rpc(),
+ )?;
+
if let Some(filter_pool) = filter_pool {
io.merge(
EthFilter::new(
client.clone(),
- backend,
+ eth_backend,
filter_pool,
500_usize, // max stored filters
max_past_logs,
pallets/common/Cargo.tomldiffbeforeafterboth--- a/pallets/common/Cargo.toml
+++ b/pallets/common/Cargo.toml
@@ -23,6 +23,7 @@
evm-coder = { default-features = false, path = '../../crates/evm-coder' }
ethereum = { version = "0.14.0", default-features = false }
pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }
+up-pov-estimate-rpc = { default-features = false, path = "../../primitives/pov-estimate-rpc" }
serde = { version = "1.0.130", default-features = false }
scale-info = { version = "2.0.1", default-features = false, features = [
@@ -39,6 +40,7 @@
"fp-evm-mapping/std",
"up-data-structs/std",
"pallet-evm/std",
+ "up-pov-estimate-rpc/std",
]
runtime-benchmarks = [
"frame-benchmarking/runtime-benchmarks",
pallets/common/src/lib.rsdiffbeforeafterboth--- a/pallets/common/src/lib.rs
+++ b/pallets/common/src/lib.rs
@@ -115,6 +115,7 @@
RmrkNftChild,
CollectionPermissions,
};
+use up_pov_estimate_rpc::PovInfo;
pub use pallet::*;
use sp_core::H160;
@@ -881,6 +882,8 @@
RmrkPartType,
RmrkBoundedTheme,
RmrkNftChild,
+ // PoV Estimate Info
+ PovInfo,
)>,
),
QueryKind = OptionQuery,
primitives/common/src/types.rsdiffbeforeafterboth--- a/primitives/common/src/types.rs
+++ b/primitives/common/src/types.rs
@@ -29,6 +29,14 @@
pub use super::{BlockNumber, Signature, AccountId, Balance, Index, Hash, AuraId};
+ #[derive(Debug, Clone)]
+ pub enum RuntimeId {
+ Unique,
+ Quartz,
+ Opal,
+ Unknown(sp_std::vec::Vec<u8>),
+ }
+
/// Opaque block header type.
pub type Header = generic::Header<BlockNumber, BlakeTwo256>;
primitives/pov-estimate-rpc/Cargo.tomldiffbeforeafterboth--- /dev/null
+++ b/primitives/pov-estimate-rpc/Cargo.toml
@@ -0,0 +1,28 @@
+[package]
+name = "up-pov-estimate-rpc"
+version = "0.1.0"
+license = "GPLv3"
+edition = "2021"
+
+[dependencies]
+codec = { package = "parity-scale-codec", version = "3.1.2", default-features = false, features = [
+ "derive",
+] }
+serde = { version = "1.0.130", features = ["derive"], default-features = false, optional = true }
+scale-info = { version = "2.0.1", default-features = false, features = ["derive"] }
+sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
+sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
+sp-api = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
+sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
+
+[features]
+default = ["std"]
+std = [
+ "codec/std",
+ "serde/std",
+ "scale-info/std",
+ "sp-core/std",
+ "sp-std/std",
+ "sp-api/std",
+ "sp-runtime/std",
+]
primitives/pov-estimate-rpc/src/lib.rsdiffbeforeafterboth--- /dev/null
+++ b/primitives/pov-estimate-rpc/src/lib.rs
@@ -0,0 +1,49 @@
+// Copyright 2019-2022 Unique Network (Gibraltar) Ltd.
+// This file is part of Unique Network.
+
+// Unique Network 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.
+
+// Unique Network 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 Unique Network. If not, see <http://www.gnu.org/licenses/>.
+
+#![cfg_attr(not(feature = "std"), no_std)]
+
+use scale_info::TypeInfo;
+use sp_std::vec::Vec;
+
+#[cfg(feature = "std")]
+use serde::Serialize;
+
+use sp_runtime::ApplyExtrinsicResult;
+use sp_core::Bytes;
+
+#[cfg_attr(feature = "std", derive(Serialize))]
+#[derive(Debug, TypeInfo)]
+pub struct PovInfo {
+ pub proof_size: u64,
+ pub compact_proof_size: u64,
+ pub compressed_proof_size: u64,
+ pub results: Vec<ApplyExtrinsicResult>,
+ pub key_values: Vec<TrieKeyValue>,
+}
+
+#[cfg_attr(feature = "std", derive(Serialize))]
+#[derive(Debug, TypeInfo)]
+pub struct TrieKeyValue {
+ pub key: Vec<u8>,
+ pub value: Vec<u8>,
+}
+
+sp_api::decl_runtime_apis! {
+ pub trait PovEstimateApi {
+ fn pov_estimate(uxt: Bytes) -> ApplyExtrinsicResult;
+ }
+}
runtime/common/runtime_apis.rsdiffbeforeafterboth--- a/runtime/common/runtime_apis.rs
+++ b/runtime/common/runtime_apis.rs
@@ -35,7 +35,7 @@
) => {
use sp_std::prelude::*;
use sp_api::impl_runtime_apis;
- use sp_core::{crypto::KeyTypeId, OpaqueMetadata, H256, U256, H160};
+ use sp_core::{crypto::KeyTypeId, OpaqueMetadata, H256, U256, H160, Bytes};
use sp_runtime::{
Permill,
traits::Block as BlockT,
@@ -778,6 +778,29 @@
}
}
+ impl up_pov_estimate_rpc::PovEstimateApi<Block> for Runtime {
+ #[allow(unused_variables)]
+ fn pov_estimate(uxt: Bytes) -> ApplyExtrinsicResult {
+ #[cfg(feature = "pov-estimate")]
+ {
+ use codec::Decode;
+
+ let uxt_decode = <<Block as BlockT>::Extrinsic as Decode>::decode(&mut &*uxt)
+ .map_err(|_| DispatchError::Other("failed to decode the extrinsic"));
+
+ let uxt = match uxt_decode {
+ Ok(uxt) => uxt,
+ Err(err) => return Ok(err.into()),
+ };
+
+ Executive::apply_extrinsic(uxt)
+ }
+
+ #[cfg(not(feature = "pov-estimate"))]
+ return Ok(unsupported!());
+ }
+ }
+
#[cfg(feature = "try-runtime")]
impl frame_try_runtime::TryRuntime<Block> for Runtime {
fn on_runtime_upgrade(checks: bool) -> (frame_support::pallet_prelude::Weight, frame_support::pallet_prelude::Weight) {
runtime/opal/Cargo.tomldiffbeforeafterboth--- a/runtime/opal/Cargo.toml
+++ b/runtime/opal/Cargo.toml
@@ -127,6 +127,7 @@
'pallet-base-fee/std',
'fp-rpc/std',
'up-rpc/std',
+ 'up-pov-estimate-rpc/std',
'app-promotion-rpc/std',
'fp-evm-mapping/std',
'fp-self-contained/std',
@@ -184,6 +185,7 @@
'pallet-test-utils',
]
become-sapphire = []
+pov-estimate = []
refungible = []
scheduler = []
@@ -468,6 +470,7 @@
derivative = "2.2.0"
pallet-unique = { path = '../../pallets/unique', default-features = false }
up-rpc = { path = "../../primitives/rpc", default-features = false }
+up-pov-estimate-rpc = { path = "../../primitives/pov-estimate-rpc", default-features = false }
app-promotion-rpc = { path = "../../primitives/app_promotion_rpc", default-features = false }
rmrk-rpc = { path = "../../primitives/rmrk-rpc", default-features = false }
fp-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }
runtime/quartz/Cargo.tomldiffbeforeafterboth--- a/runtime/quartz/Cargo.toml
+++ b/runtime/quartz/Cargo.toml
@@ -122,6 +122,7 @@
'pallet-base-fee/std',
'fp-rpc/std',
'up-rpc/std',
+ 'up-pov-estimate-rpc/std',
'app-promotion-rpc/std',
'fp-evm-mapping/std',
'fp-self-contained/std',
@@ -169,6 +170,7 @@
]
limit-testing = ['pallet-unique/limit-testing', 'up-data-structs/limit-testing']
quartz-runtime = ['refungible', 'app-promotion', 'foreign-assets']
+pov-estimate = []
refungible = []
scheduler = []
@@ -461,6 +463,7 @@
derivative = "2.2.0"
pallet-unique = { path = '../../pallets/unique', default-features = false }
up-rpc = { path = "../../primitives/rpc", default-features = false }
+up-pov-estimate-rpc = { path = "../../primitives/pov-estimate-rpc", default-features = false }
app-promotion-rpc = { path = "../../primitives/app_promotion_rpc", default-features = false }
fp-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }
fp-evm-mapping = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }
runtime/unique/Cargo.tomldiffbeforeafterboth--- a/runtime/unique/Cargo.toml
+++ b/runtime/unique/Cargo.toml
@@ -123,6 +123,7 @@
'pallet-base-fee/std',
'fp-rpc/std',
'up-rpc/std',
+ 'up-pov-estimate-rpc/std',
'app-promotion-rpc/std',
'fp-evm-mapping/std',
'fp-self-contained/std',
@@ -170,6 +171,7 @@
]
limit-testing = ['pallet-unique/limit-testing', 'up-data-structs/limit-testing']
unique-runtime = ['foreign-assets']
+pov-estimate = []
stubgen = ["evm-coder/stubgen"]
refungible = []
@@ -454,6 +456,7 @@
derivative = "2.2.0"
pallet-unique = { path = '../../pallets/unique', default-features = false }
up-rpc = { path = "../../primitives/rpc", default-features = false }
+up-pov-estimate-rpc = { path = "../../primitives/pov-estimate-rpc", default-features = false }
app-promotion-rpc = { path = "../../primitives/app_promotion_rpc", default-features = false }
rmrk-rpc = { path = "../../primitives/rmrk-rpc", default-features = false }
pallet-inflation = { path = '../../pallets/inflation', default-features = false }
tests/src/interfaces/augment-api-rpc.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-api-rpc.ts
+++ b/tests/src/interfaces/augment-api-rpc.ts
@@ -5,7 +5,7 @@
// this is required to allow for ambient/previous definitions
import '@polkadot/rpc-core/types/jsonrpc';
-import type { PalletEvmAccountBasicCrossAccountIdRepr, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsPartPartType, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsTheme, UpDataStructsCollectionLimits, UpDataStructsCollectionStats, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsRpcCollection, UpDataStructsTokenChild, UpDataStructsTokenData } from './default';
+import type { PalletEvmAccountBasicCrossAccountIdRepr, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsPartPartType, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsTheme, UpDataStructsCollectionLimits, UpDataStructsCollectionStats, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsRpcCollection, UpDataStructsTokenChild, UpDataStructsTokenData, UpPovEstimateRpcPovInfo } from './default';
import type { AugmentedRpc } from '@polkadot/rpc-core/types';
import type { Metadata, StorageKey } from '@polkadot/types';
import type { Bytes, HashMap, Json, Null, Option, Text, U256, U64, Vec, bool, f64, u128, u32, u64 } from '@polkadot/types-codec';
@@ -436,6 +436,12 @@
**/
queryInfo: AugmentedRpc<(extrinsic: Bytes | string | Uint8Array, at?: BlockHash | string | Uint8Array) => Observable<RuntimeDispatchInfoV1>>;
};
+ povinfo: {
+ /**
+ * Estimate PoV size of encoded signed extrinsics
+ **/
+ estimateExtrinsicPoV: AugmentedRpc<(encodedXt: Vec<Bytes> | (Bytes | string | Uint8Array)[], at?: Hash | string | Uint8Array) => Observable<UpPovEstimateRpcPovInfo>>;
+ };
rmrk: {
/**
* Get tokens owned by an account in a collection
tests/src/interfaces/augment-types.tsdiffbeforeafterboth--- a/tests/src/interfaces/augment-types.ts
+++ b/tests/src/interfaces/augment-types.ts
@@ -5,7 +5,7 @@
// this is required to allow for ambient/previous definitions
import '@polkadot/types/types/registry';
-import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletConfigurationAppPromotionConfiguration, PalletConfigurationCall, PalletConfigurationError, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletXcmCall, PalletXcmError, PalletXcmEvent, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsNftRoyaltyInfo, RmrkTraitsPartEquippableList, RmrkTraitsPartFixedPart, RmrkTraitsPartPartType, RmrkTraitsPartSlotPart, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceInfo, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, RmrkTraitsThemeThemeProperty, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from './default';
+import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletConfigurationAppPromotionConfiguration, PalletConfigurationCall, PalletConfigurationError, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletXcmCall, PalletXcmError, PalletXcmEvent, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsNftRoyaltyInfo, RmrkTraitsPartEquippableList, RmrkTraitsPartFixedPart, RmrkTraitsPartPartType, RmrkTraitsPartSlotPart, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceInfo, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, RmrkTraitsThemeThemeProperty, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionValidityInvalidTransaction, SpRuntimeTransactionValidityTransactionValidityError, SpRuntimeTransactionValidityUnknownTransaction, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, UpPovEstimateRpcPovInfo, UpPovEstimateRpcTrieKeyValue, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from './default';
import type { Data, StorageKey } from '@polkadot/types';
import type { BitVec, Bool, Bytes, F32, F64, I128, I16, I256, I32, I64, I8, Json, Null, OptionBool, Raw, Text, Type, U128, U16, U256, U32, U64, U8, USize, bool, f32, f64, i128, i16, i256, i32, i64, i8, u128, u16, u256, u32, u64, u8, usize } from '@polkadot/types-codec';
import type { AssetApproval, AssetApprovalKey, AssetBalance, AssetDestroyWitness, AssetDetails, AssetMetadata, TAssetBalance, TAssetDepositBalance } from '@polkadot/types/interfaces/assets';
@@ -1186,6 +1186,9 @@
SpRuntimeMultiSignature: SpRuntimeMultiSignature;
SpRuntimeTokenError: SpRuntimeTokenError;
SpRuntimeTransactionalError: SpRuntimeTransactionalError;
+ SpRuntimeTransactionValidityInvalidTransaction: SpRuntimeTransactionValidityInvalidTransaction;
+ SpRuntimeTransactionValidityTransactionValidityError: SpRuntimeTransactionValidityTransactionValidityError;
+ SpRuntimeTransactionValidityUnknownTransaction: SpRuntimeTransactionValidityUnknownTransaction;
SpTrieStorageProof: SpTrieStorageProof;
SpVersionRuntimeVersion: SpVersionRuntimeVersion;
SpWeightsRuntimeDbWeight: SpWeightsRuntimeDbWeight;
@@ -1325,6 +1328,8 @@
UpDataStructsTokenData: UpDataStructsTokenData;
UpgradeGoAhead: UpgradeGoAhead;
UpgradeRestriction: UpgradeRestriction;
+ UpPovEstimateRpcPovInfo: UpPovEstimateRpcPovInfo;
+ UpPovEstimateRpcTrieKeyValue: UpPovEstimateRpcTrieKeyValue;
UpwardMessage: UpwardMessage;
usize: usize;
USize: USize;
tests/src/interfaces/default/types.tsdiffbeforeafterboth--- a/tests/src/interfaces/default/types.ts
+++ b/tests/src/interfaces/default/types.ts
@@ -2444,7 +2444,7 @@
}
/** @name PhantomTypeUpDataStructs */
-export interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild]>> {}
+export interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild, UpPovEstimateRpcPovInfo]>> {}
/** @name PolkadotCorePrimitivesInboundDownwardMessage */
export interface PolkadotCorePrimitivesInboundDownwardMessage extends Struct {
@@ -2748,6 +2748,41 @@
readonly type: 'LimitReached' | 'NoLayer';
}
+/** @name SpRuntimeTransactionValidityInvalidTransaction */
+export interface SpRuntimeTransactionValidityInvalidTransaction extends Enum {
+ readonly isCall: boolean;
+ readonly isPayment: boolean;
+ readonly isFuture: boolean;
+ readonly isStale: boolean;
+ readonly isBadProof: boolean;
+ readonly isAncientBirthBlock: boolean;
+ readonly isExhaustsResources: boolean;
+ readonly isCustom: boolean;
+ readonly asCustom: u8;
+ readonly isBadMandatory: boolean;
+ readonly isMandatoryValidation: boolean;
+ readonly isBadSigner: boolean;
+ readonly type: 'Call' | 'Payment' | 'Future' | 'Stale' | 'BadProof' | 'AncientBirthBlock' | 'ExhaustsResources' | 'Custom' | 'BadMandatory' | 'MandatoryValidation' | 'BadSigner';
+}
+
+/** @name SpRuntimeTransactionValidityTransactionValidityError */
+export interface SpRuntimeTransactionValidityTransactionValidityError extends Enum {
+ readonly isInvalid: boolean;
+ readonly asInvalid: SpRuntimeTransactionValidityInvalidTransaction;
+ readonly isUnknown: boolean;
+ readonly asUnknown: SpRuntimeTransactionValidityUnknownTransaction;
+ readonly type: 'Invalid' | 'Unknown';
+}
+
+/** @name SpRuntimeTransactionValidityUnknownTransaction */
+export interface SpRuntimeTransactionValidityUnknownTransaction extends Enum {
+ readonly isCannotLookup: boolean;
+ readonly isNoUnsignedValidator: boolean;
+ readonly isCustom: boolean;
+ readonly asCustom: u8;
+ readonly type: 'CannotLookup' | 'NoUnsignedValidator' | 'Custom';
+}
+
/** @name SpTrieStorageProof */
export interface SpTrieStorageProof extends Struct {
readonly trieNodes: BTreeSet<Bytes>;
@@ -3018,6 +3053,21 @@
readonly pieces: u128;
}
+/** @name UpPovEstimateRpcPovInfo */
+export interface UpPovEstimateRpcPovInfo extends Struct {
+ readonly proofSize: u64;
+ readonly compactProofSize: u64;
+ readonly compressedProofSize: u64;
+ readonly results: Vec<Result<Result<Null, SpRuntimeDispatchError>, SpRuntimeTransactionValidityTransactionValidityError>>;
+ readonly keyValues: Vec<UpPovEstimateRpcTrieKeyValue>;
+}
+
+/** @name UpPovEstimateRpcTrieKeyValue */
+export interface UpPovEstimateRpcTrieKeyValue extends Struct {
+ readonly key: Bytes;
+ readonly value: Bytes;
+}
+
/** @name XcmDoubleEncoded */
export interface XcmDoubleEncoded extends Struct {
readonly encoded: Bytes;
tests/src/interfaces/definitions.tsdiffbeforeafterboth--- a/tests/src/interfaces/definitions.ts
+++ b/tests/src/interfaces/definitions.ts
@@ -17,4 +17,5 @@
export {default as unique} from './unique/definitions';
export {default as appPromotion} from './appPromotion/definitions';
export {default as rmrk} from './rmrk/definitions';
-export {default as default} from './default/definitions';
\ No newline at end of file
+export {default as povinfo} from './povinfo/definitions';
+export {default as default} from './default/definitions';
tests/src/interfaces/lookup.tsdiffbeforeafterboth--- a/tests/src/interfaces/lookup.ts
+++ b/tests/src/interfaces/lookup.ts
@@ -3106,7 +3106,7 @@
/**
* Lookup399: PhantomType::up_data_structs<T>
**/
- PhantomTypeUpDataStructs: '[(UpDataStructsTokenData,UpDataStructsRpcCollection,RmrkTraitsCollectionCollectionInfo,RmrkTraitsNftNftInfo,RmrkTraitsResourceResourceInfo,RmrkTraitsPropertyPropertyInfo,RmrkTraitsBaseBaseInfo,RmrkTraitsPartPartType,RmrkTraitsTheme,RmrkTraitsNftNftChild);0]',
+ PhantomTypeUpDataStructs: '[(UpDataStructsTokenData,UpDataStructsRpcCollection,RmrkTraitsCollectionCollectionInfo,RmrkTraitsNftNftInfo,RmrkTraitsResourceResourceInfo,RmrkTraitsPropertyPropertyInfo,RmrkTraitsBaseBaseInfo,RmrkTraitsPartPartType,RmrkTraitsTheme,RmrkTraitsNftNftChild,UpPovEstimateRpcPovInfo);0]',
/**
* Lookup401: up_data_structs::TokenData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
@@ -3198,79 +3198,133 @@
nftId: 'u32'
},
/**
- * Lookup414: pallet_common::pallet::Error<T>
+ * Lookup413: up_pov_estimate_rpc::PovInfo
+ **/
+ UpPovEstimateRpcPovInfo: {
+ proofSize: 'u64',
+ compactProofSize: 'u64',
+ compressedProofSize: 'u64',
+ results: 'Vec<Result<Result<Null, SpRuntimeDispatchError>, SpRuntimeTransactionValidityTransactionValidityError>>',
+ keyValues: 'Vec<UpPovEstimateRpcTrieKeyValue>'
+ },
+ /**
+ * Lookup416: sp_runtime::transaction_validity::TransactionValidityError
+ **/
+ SpRuntimeTransactionValidityTransactionValidityError: {
+ _enum: {
+ Invalid: 'SpRuntimeTransactionValidityInvalidTransaction',
+ Unknown: 'SpRuntimeTransactionValidityUnknownTransaction'
+ }
+ },
+ /**
+ * Lookup417: sp_runtime::transaction_validity::InvalidTransaction
+ **/
+ SpRuntimeTransactionValidityInvalidTransaction: {
+ _enum: {
+ Call: 'Null',
+ Payment: 'Null',
+ Future: 'Null',
+ Stale: 'Null',
+ BadProof: 'Null',
+ AncientBirthBlock: 'Null',
+ ExhaustsResources: 'Null',
+ Custom: 'u8',
+ BadMandatory: 'Null',
+ MandatoryValidation: 'Null',
+ BadSigner: 'Null'
+ }
+ },
+ /**
+ * Lookup418: sp_runtime::transaction_validity::UnknownTransaction
+ **/
+ SpRuntimeTransactionValidityUnknownTransaction: {
+ _enum: {
+ CannotLookup: 'Null',
+ NoUnsignedValidator: 'Null',
+ Custom: 'u8'
+ }
+ },
+ /**
+ * Lookup420: up_pov_estimate_rpc::TrieKeyValue
+ **/
+ UpPovEstimateRpcTrieKeyValue: {
+ key: 'Bytes',
+ value: 'Bytes'
+ },
+ /**
+ * Lookup422: pallet_common::pallet::Error<T>
**/
PalletCommonError: {
_enum: ['CollectionNotFound', 'MustBeTokenOwner', 'NoPermission', 'CantDestroyNotEmptyCollection', 'PublicMintingNotAllowed', 'AddressNotInAllowlist', 'CollectionNameLimitExceeded', 'CollectionDescriptionLimitExceeded', 'CollectionTokenPrefixLimitExceeded', 'TotalCollectionsLimitExceeded', 'CollectionAdminCountExceeded', 'CollectionLimitBoundsExceeded', 'OwnerPermissionsCantBeReverted', 'TransferNotAllowed', 'AccountTokenLimitExceeded', 'CollectionTokenLimitExceeded', 'MetadataFlagFrozen', 'TokenNotFound', 'TokenValueTooLow', 'ApprovedValueTooLow', 'CantApproveMoreThanOwned', 'AddressIsZero', 'UnsupportedOperation', 'NotSufficientFounds', 'UserIsNotAllowedToNest', 'SourceCollectionIsNotAllowedToNest', 'CollectionFieldSizeExceeded', 'NoSpaceForProperty', 'PropertyLimitReached', 'PropertyKeyIsTooLong', 'InvalidCharacterInPropertyKey', 'EmptyPropertyKey', 'CollectionIsExternal', 'CollectionIsInternal', 'ConfirmSponsorshipFail', 'UserIsNotCollectionAdmin']
},
/**
- * Lookup416: pallet_fungible::pallet::Error<T>
+ * Lookup424: pallet_fungible::pallet::Error<T>
**/
PalletFungibleError: {
_enum: ['NotFungibleDataUsedToMintFungibleCollectionToken', 'FungibleItemsHaveNoId', 'FungibleItemsDontHaveData', 'FungibleDisallowsNesting', 'SettingPropertiesNotAllowed', 'SettingAllowanceForAllNotAllowed', 'FungibleTokensAreAlwaysValid']
},
/**
- * Lookup420: pallet_refungible::pallet::Error<T>
+ * Lookup428: pallet_refungible::pallet::Error<T>
**/
PalletRefungibleError: {
_enum: ['NotRefungibleDataUsedToMintFungibleCollectionToken', 'WrongRefungiblePieces', 'RepartitionWhileNotOwningAllPieces', 'RefungibleDisallowsNesting', 'SettingPropertiesNotAllowed']
},
/**
- * Lookup421: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup429: pallet_nonfungible::ItemData<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
PalletNonfungibleItemData: {
owner: 'PalletEvmAccountBasicCrossAccountIdRepr'
},
/**
- * Lookup423: up_data_structs::PropertyScope
+ * Lookup431: up_data_structs::PropertyScope
**/
UpDataStructsPropertyScope: {
_enum: ['None', 'Rmrk']
},
/**
- * Lookup426: pallet_nonfungible::pallet::Error<T>
+ * Lookup434: pallet_nonfungible::pallet::Error<T>
**/
PalletNonfungibleError: {
_enum: ['NotNonfungibleDataUsedToMintFungibleCollectionToken', 'NonfungibleItemsHaveNoAmount', 'CantBurnNftWithChildren']
},
/**
- * Lookup427: pallet_structure::pallet::Error<T>
+ * Lookup435: pallet_structure::pallet::Error<T>
**/
PalletStructureError: {
_enum: ['OuroborosDetected', 'DepthLimit', 'BreadthLimit', 'TokenNotFound']
},
/**
- * Lookup428: pallet_rmrk_core::pallet::Error<T>
+ * Lookup436: pallet_rmrk_core::pallet::Error<T>
**/
PalletRmrkCoreError: {
_enum: ['CorruptedCollectionType', 'RmrkPropertyKeyIsTooLong', 'RmrkPropertyValueIsTooLong', 'RmrkPropertyIsNotFound', 'UnableToDecodeRmrkData', 'CollectionNotEmpty', 'NoAvailableCollectionId', 'NoAvailableNftId', 'CollectionUnknown', 'NoPermission', 'NonTransferable', 'CollectionFullOrLocked', 'ResourceDoesntExist', 'CannotSendToDescendentOrSelf', 'CannotAcceptNonOwnedNft', 'CannotRejectNonOwnedNft', 'CannotRejectNonPendingNft', 'ResourceNotPending', 'NoAvailableResourceId']
},
/**
- * Lookup430: pallet_rmrk_equip::pallet::Error<T>
+ * Lookup438: pallet_rmrk_equip::pallet::Error<T>
**/
PalletRmrkEquipError: {
_enum: ['PermissionError', 'NoAvailableBaseId', 'NoAvailablePartId', 'BaseDoesntExist', 'NeedsDefaultThemeFirst', 'PartDoesntExist', 'NoEquippableOnFixedPart']
},
/**
- * Lookup436: pallet_app_promotion::pallet::Error<T>
+ * Lookup444: pallet_app_promotion::pallet::Error<T>
**/
PalletAppPromotionError: {
_enum: ['AdminNotSet', 'NoPermission', 'NotSufficientFunds', 'PendingForBlockOverflow', 'SponsorNotSet', 'IncorrectLockedBalanceOperation']
},
/**
- * Lookup437: pallet_foreign_assets::module::Error<T>
+ * Lookup445: pallet_foreign_assets::module::Error<T>
**/
PalletForeignAssetsModuleError: {
_enum: ['BadLocation', 'MultiLocationExisted', 'AssetIdNotExists', 'AssetIdExisted']
},
/**
- * Lookup439: pallet_evm::pallet::Error<T>
+ * Lookup447: pallet_evm::pallet::Error<T>
**/
PalletEvmError: {
_enum: ['BalanceLow', 'FeeOverflow', 'PaymentOverflow', 'WithdrawFailed', 'GasPriceTooLow', 'InvalidNonce', 'GasLimitTooLow', 'GasLimitTooHigh', 'Undefined', 'Reentrancy', 'TransactionMustComeFromEOA']
},
/**
- * Lookup442: fp_rpc::TransactionStatus
+ * Lookup450: fp_rpc::TransactionStatus
**/
FpRpcTransactionStatus: {
transactionHash: 'H256',
@@ -3282,11 +3336,11 @@
logsBloom: 'EthbloomBloom'
},
/**
- * Lookup444: ethbloom::Bloom
+ * Lookup452: ethbloom::Bloom
**/
EthbloomBloom: '[u8;256]',
/**
- * Lookup446: ethereum::receipt::ReceiptV3
+ * Lookup454: ethereum::receipt::ReceiptV3
**/
EthereumReceiptReceiptV3: {
_enum: {
@@ -3296,7 +3350,7 @@
}
},
/**
- * Lookup447: ethereum::receipt::EIP658ReceiptData
+ * Lookup455: ethereum::receipt::EIP658ReceiptData
**/
EthereumReceiptEip658ReceiptData: {
statusCode: 'u8',
@@ -3305,7 +3359,7 @@
logs: 'Vec<EthereumLog>'
},
/**
- * Lookup448: ethereum::block::Block<ethereum::transaction::TransactionV2>
+ * Lookup456: ethereum::block::Block<ethereum::transaction::TransactionV2>
**/
EthereumBlock: {
header: 'EthereumHeader',
@@ -3313,7 +3367,7 @@
ommers: 'Vec<EthereumHeader>'
},
/**
- * Lookup449: ethereum::header::Header
+ * Lookup457: ethereum::header::Header
**/
EthereumHeader: {
parentHash: 'H256',
@@ -3333,23 +3387,23 @@
nonce: 'EthereumTypesHashH64'
},
/**
- * Lookup450: ethereum_types::hash::H64
+ * Lookup458: ethereum_types::hash::H64
**/
EthereumTypesHashH64: '[u8;8]',
/**
- * Lookup455: pallet_ethereum::pallet::Error<T>
+ * Lookup463: pallet_ethereum::pallet::Error<T>
**/
PalletEthereumError: {
_enum: ['InvalidSignature', 'PreLogExists']
},
/**
- * Lookup456: pallet_evm_coder_substrate::pallet::Error<T>
+ * Lookup464: pallet_evm_coder_substrate::pallet::Error<T>
**/
PalletEvmCoderSubstrateError: {
_enum: ['OutOfGas', 'OutOfFund']
},
/**
- * Lookup457: up_data_structs::SponsorshipState<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
+ * Lookup465: up_data_structs::SponsorshipState<pallet_evm::account::BasicCrossAccountIdRepr<sp_core::crypto::AccountId32>>
**/
UpDataStructsSponsorshipStateBasicCrossAccountIdRepr: {
_enum: {
@@ -3359,35 +3413,35 @@
}
},
/**
- * Lookup458: pallet_evm_contract_helpers::SponsoringModeT
+ * Lookup466: pallet_evm_contract_helpers::SponsoringModeT
**/
PalletEvmContractHelpersSponsoringModeT: {
_enum: ['Disabled', 'Allowlisted', 'Generous']
},
/**
- * Lookup464: pallet_evm_contract_helpers::pallet::Error<T>
+ * Lookup472: pallet_evm_contract_helpers::pallet::Error<T>
**/
PalletEvmContractHelpersError: {
_enum: ['NoPermission', 'NoPendingSponsor', 'TooManyMethodsHaveSponsoredLimit']
},
/**
- * Lookup465: pallet_evm_migration::pallet::Error<T>
+ * Lookup473: pallet_evm_migration::pallet::Error<T>
**/
PalletEvmMigrationError: {
_enum: ['AccountNotEmpty', 'AccountIsNotMigrating', 'BadEvent']
},
/**
- * Lookup466: pallet_maintenance::pallet::Error<T>
+ * Lookup474: pallet_maintenance::pallet::Error<T>
**/
PalletMaintenanceError: 'Null',
/**
- * Lookup467: pallet_test_utils::pallet::Error<T>
+ * Lookup475: pallet_test_utils::pallet::Error<T>
**/
PalletTestUtilsError: {
_enum: ['TestPalletDisabled', 'TriggerRollback']
},
/**
- * Lookup469: sp_runtime::MultiSignature
+ * Lookup477: sp_runtime::MultiSignature
**/
SpRuntimeMultiSignature: {
_enum: {
@@ -3397,51 +3451,51 @@
}
},
/**
- * Lookup470: sp_core::ed25519::Signature
+ * Lookup478: sp_core::ed25519::Signature
**/
SpCoreEd25519Signature: '[u8;64]',
/**
- * Lookup472: sp_core::sr25519::Signature
+ * Lookup480: sp_core::sr25519::Signature
**/
SpCoreSr25519Signature: '[u8;64]',
/**
- * Lookup473: sp_core::ecdsa::Signature
+ * Lookup481: sp_core::ecdsa::Signature
**/
SpCoreEcdsaSignature: '[u8;65]',
/**
- * Lookup476: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
+ * Lookup484: frame_system::extensions::check_spec_version::CheckSpecVersion<T>
**/
FrameSystemExtensionsCheckSpecVersion: 'Null',
/**
- * Lookup477: frame_system::extensions::check_tx_version::CheckTxVersion<T>
+ * Lookup485: frame_system::extensions::check_tx_version::CheckTxVersion<T>
**/
FrameSystemExtensionsCheckTxVersion: 'Null',
/**
- * Lookup478: frame_system::extensions::check_genesis::CheckGenesis<T>
+ * Lookup486: frame_system::extensions::check_genesis::CheckGenesis<T>
**/
FrameSystemExtensionsCheckGenesis: 'Null',
/**
- * Lookup481: frame_system::extensions::check_nonce::CheckNonce<T>
+ * Lookup489: frame_system::extensions::check_nonce::CheckNonce<T>
**/
FrameSystemExtensionsCheckNonce: 'Compact<u32>',
/**
- * Lookup482: frame_system::extensions::check_weight::CheckWeight<T>
+ * Lookup490: frame_system::extensions::check_weight::CheckWeight<T>
**/
FrameSystemExtensionsCheckWeight: 'Null',
/**
- * Lookup483: opal_runtime::runtime_common::maintenance::CheckMaintenance
+ * Lookup491: opal_runtime::runtime_common::maintenance::CheckMaintenance
**/
OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance: 'Null',
/**
- * Lookup484: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>
+ * Lookup492: pallet_template_transaction_payment::ChargeTransactionPayment<opal_runtime::Runtime>
**/
PalletTemplateTransactionPaymentChargeTransactionPayment: 'Compact<u128>',
/**
- * Lookup485: opal_runtime::Runtime
+ * Lookup493: opal_runtime::Runtime
**/
OpalRuntimeRuntime: 'Null',
/**
- * Lookup486: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>
+ * Lookup494: pallet_ethereum::FakeTransactionFinalizer<opal_runtime::Runtime>
**/
PalletEthereumFakeTransactionFinalizer: 'Null'
};
tests/src/interfaces/povinfo/definitions.tsdiffbeforeafterboth--- /dev/null
+++ b/tests/src/interfaces/povinfo/definitions.ts
@@ -0,0 +1,40 @@
+// Copyright 2019-2022 Unique Network (Gibraltar) Ltd.
+// This file is part of Unique Network.
+
+// Unique Network 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.
+
+// Unique Network 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 Unique Network. If not, see <http://www.gnu.org/licenses/>.
+
+type RpcParam = {
+ name: string;
+ type: string;
+ isOptional?: true;
+};
+
+const atParam = {name: 'at', type: 'Hash', isOptional: true};
+
+const fun = (description: string, params: RpcParam[], type: string) => ({
+ description,
+ params: [...params, atParam],
+ type,
+});
+
+export default {
+ types: {},
+ rpc: {
+ estimateExtrinsicPoV: fun(
+ 'Estimate PoV size of encoded signed extrinsics',
+ [{name: 'encodedXt', type: 'Vec<Bytes>'}],
+ 'UpPovEstimateRpcPovInfo',
+ ),
+ },
+};
tests/src/interfaces/povinfo/index.tsdiffbeforeafterboth--- /dev/null
+++ b/tests/src/interfaces/povinfo/index.ts
@@ -0,0 +1,4 @@
+// Auto-generated via `yarn polkadot-types-from-defs`, do not edit
+/* eslint-disable */
+
+export * from './types';
tests/src/interfaces/povinfo/types.tsdiffbeforeafterboth--- /dev/null
+++ b/tests/src/interfaces/povinfo/types.ts
@@ -0,0 +1,4 @@
+// Auto-generated via `yarn polkadot-types-from-defs`, do not edit
+/* eslint-disable */
+
+export type PHANTOM_POVINFO = 'povinfo';
tests/src/interfaces/registry.tsdiffbeforeafterboth--- a/tests/src/interfaces/registry.ts
+++ b/tests/src/interfaces/registry.ts
@@ -5,7 +5,7 @@
// this is required to allow for ambient/previous definitions
import '@polkadot/types/types/registry';
-import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletConfigurationAppPromotionConfiguration, PalletConfigurationCall, PalletConfigurationError, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletXcmCall, PalletXcmError, PalletXcmEvent, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsNftRoyaltyInfo, RmrkTraitsPartEquippableList, RmrkTraitsPartFixedPart, RmrkTraitsPartPartType, RmrkTraitsPartSlotPart, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceInfo, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, RmrkTraitsThemeThemeProperty, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
+import type { CumulusPalletDmpQueueCall, CumulusPalletDmpQueueConfigData, CumulusPalletDmpQueueError, CumulusPalletDmpQueueEvent, CumulusPalletDmpQueuePageIndexData, CumulusPalletParachainSystemCall, CumulusPalletParachainSystemError, CumulusPalletParachainSystemEvent, CumulusPalletParachainSystemRelayStateSnapshotMessagingStateSnapshot, CumulusPalletXcmCall, CumulusPalletXcmError, CumulusPalletXcmEvent, CumulusPalletXcmpQueueCall, CumulusPalletXcmpQueueError, CumulusPalletXcmpQueueEvent, CumulusPalletXcmpQueueInboundChannelDetails, CumulusPalletXcmpQueueInboundState, CumulusPalletXcmpQueueOutboundChannelDetails, CumulusPalletXcmpQueueOutboundState, CumulusPalletXcmpQueueQueueConfigData, CumulusPrimitivesParachainInherentParachainInherentData, EthbloomBloom, EthereumBlock, EthereumHeader, EthereumLog, EthereumReceiptEip658ReceiptData, EthereumReceiptReceiptV3, EthereumTransactionAccessListItem, EthereumTransactionEip1559Transaction, EthereumTransactionEip2930Transaction, EthereumTransactionLegacyTransaction, EthereumTransactionTransactionAction, EthereumTransactionTransactionSignature, EthereumTransactionTransactionV2, EthereumTypesHashH64, EvmCoreErrorExitError, EvmCoreErrorExitFatal, EvmCoreErrorExitReason, EvmCoreErrorExitRevert, EvmCoreErrorExitSucceed, FpRpcTransactionStatus, FrameSupportDispatchDispatchClass, FrameSupportDispatchDispatchInfo, FrameSupportDispatchPays, FrameSupportDispatchPerDispatchClassU32, FrameSupportDispatchPerDispatchClassWeight, FrameSupportDispatchPerDispatchClassWeightsPerClass, FrameSupportPalletId, FrameSupportTokensMiscBalanceStatus, FrameSystemAccountInfo, FrameSystemCall, FrameSystemError, FrameSystemEvent, FrameSystemEventRecord, FrameSystemExtensionsCheckGenesis, FrameSystemExtensionsCheckNonce, FrameSystemExtensionsCheckSpecVersion, FrameSystemExtensionsCheckTxVersion, FrameSystemExtensionsCheckWeight, FrameSystemLastRuntimeUpgradeInfo, FrameSystemLimitsBlockLength, FrameSystemLimitsBlockWeights, FrameSystemLimitsWeightsPerClass, FrameSystemPhase, OpalRuntimeRuntime, OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance, OrmlTokensAccountData, OrmlTokensBalanceLock, OrmlTokensModuleCall, OrmlTokensModuleError, OrmlTokensModuleEvent, OrmlTokensReserveData, OrmlVestingModuleCall, OrmlVestingModuleError, OrmlVestingModuleEvent, OrmlVestingVestingSchedule, OrmlXtokensModuleCall, OrmlXtokensModuleError, OrmlXtokensModuleEvent, PalletAppPromotionCall, PalletAppPromotionError, PalletAppPromotionEvent, PalletBalancesAccountData, PalletBalancesBalanceLock, PalletBalancesCall, PalletBalancesError, PalletBalancesEvent, PalletBalancesReasons, PalletBalancesReserveData, PalletCommonError, PalletCommonEvent, PalletConfigurationAppPromotionConfiguration, PalletConfigurationCall, PalletConfigurationError, PalletEthereumCall, PalletEthereumError, PalletEthereumEvent, PalletEthereumFakeTransactionFinalizer, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmCall, PalletEvmCoderSubstrateError, PalletEvmContractHelpersError, PalletEvmContractHelpersEvent, PalletEvmContractHelpersSponsoringModeT, PalletEvmError, PalletEvmEvent, PalletEvmMigrationCall, PalletEvmMigrationError, PalletEvmMigrationEvent, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletForeignAssetsModuleCall, PalletForeignAssetsModuleError, PalletForeignAssetsModuleEvent, PalletForeignAssetsNativeCurrency, PalletFungibleError, PalletInflationCall, PalletMaintenanceCall, PalletMaintenanceError, PalletMaintenanceEvent, PalletNonfungibleError, PalletNonfungibleItemData, PalletRefungibleError, PalletRmrkCoreCall, PalletRmrkCoreError, PalletRmrkCoreEvent, PalletRmrkEquipCall, PalletRmrkEquipError, PalletRmrkEquipEvent, PalletStructureCall, PalletStructureError, PalletStructureEvent, PalletSudoCall, PalletSudoError, PalletSudoEvent, PalletTemplateTransactionPaymentCall, PalletTemplateTransactionPaymentChargeTransactionPayment, PalletTestUtilsCall, PalletTestUtilsError, PalletTestUtilsEvent, PalletTimestampCall, PalletTransactionPaymentEvent, PalletTransactionPaymentReleases, PalletTreasuryCall, PalletTreasuryError, PalletTreasuryEvent, PalletTreasuryProposal, PalletUniqueCall, PalletUniqueError, PalletXcmCall, PalletXcmError, PalletXcmEvent, PhantomTypeUpDataStructs, PolkadotCorePrimitivesInboundDownwardMessage, PolkadotCorePrimitivesInboundHrmpMessage, PolkadotCorePrimitivesOutboundHrmpMessage, PolkadotParachainPrimitivesXcmpMessageFormat, PolkadotPrimitivesV2AbridgedHostConfiguration, PolkadotPrimitivesV2AbridgedHrmpChannel, PolkadotPrimitivesV2PersistedValidationData, PolkadotPrimitivesV2UpgradeRestriction, RmrkTraitsBaseBaseInfo, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftAccountIdOrCollectionNftTuple, RmrkTraitsNftNftChild, RmrkTraitsNftNftInfo, RmrkTraitsNftRoyaltyInfo, RmrkTraitsPartEquippableList, RmrkTraitsPartFixedPart, RmrkTraitsPartPartType, RmrkTraitsPartSlotPart, RmrkTraitsPropertyPropertyInfo, RmrkTraitsResourceBasicResource, RmrkTraitsResourceComposableResource, RmrkTraitsResourceResourceInfo, RmrkTraitsResourceResourceTypes, RmrkTraitsResourceSlotResource, RmrkTraitsTheme, RmrkTraitsThemeThemeProperty, SpCoreEcdsaSignature, SpCoreEd25519Signature, SpCoreSr25519Signature, SpRuntimeArithmeticError, SpRuntimeDigest, SpRuntimeDigestDigestItem, SpRuntimeDispatchError, SpRuntimeModuleError, SpRuntimeMultiSignature, SpRuntimeTokenError, SpRuntimeTransactionValidityInvalidTransaction, SpRuntimeTransactionValidityTransactionValidityError, SpRuntimeTransactionValidityUnknownTransaction, SpRuntimeTransactionalError, SpTrieStorageProof, SpVersionRuntimeVersion, SpWeightsRuntimeDbWeight, SpWeightsWeightV2Weight, UpDataStructsAccessMode, UpDataStructsCollection, UpDataStructsCollectionLimits, UpDataStructsCollectionMode, UpDataStructsCollectionPermissions, UpDataStructsCollectionStats, UpDataStructsCreateCollectionData, UpDataStructsCreateFungibleData, UpDataStructsCreateItemData, UpDataStructsCreateItemExData, UpDataStructsCreateNftData, UpDataStructsCreateNftExData, UpDataStructsCreateReFungibleData, UpDataStructsCreateRefungibleExMultipleOwners, UpDataStructsCreateRefungibleExSingleOwner, UpDataStructsNestingPermissions, UpDataStructsOwnerRestrictedSet, UpDataStructsProperties, UpDataStructsPropertiesMapBoundedVec, UpDataStructsPropertiesMapPropertyPermission, UpDataStructsProperty, UpDataStructsPropertyKeyPermission, UpDataStructsPropertyPermission, UpDataStructsPropertyScope, UpDataStructsRpcCollection, UpDataStructsRpcCollectionFlags, UpDataStructsSponsoringRateLimit, UpDataStructsSponsorshipStateAccountId32, UpDataStructsSponsorshipStateBasicCrossAccountIdRepr, UpDataStructsTokenChild, UpDataStructsTokenData, UpPovEstimateRpcPovInfo, UpPovEstimateRpcTrieKeyValue, XcmDoubleEncoded, XcmV0Junction, XcmV0JunctionBodyId, XcmV0JunctionBodyPart, XcmV0JunctionNetworkId, XcmV0MultiAsset, XcmV0MultiLocation, XcmV0Order, XcmV0OriginKind, XcmV0Response, XcmV0Xcm, XcmV1Junction, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetAssetId, XcmV1MultiassetAssetInstance, XcmV1MultiassetFungibility, XcmV1MultiassetMultiAssetFilter, XcmV1MultiassetMultiAssets, XcmV1MultiassetWildFungibility, XcmV1MultiassetWildMultiAsset, XcmV1MultilocationJunctions, XcmV1Order, XcmV1Response, XcmV1Xcm, XcmV2Instruction, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2WeightLimit, XcmV2Xcm, XcmVersionedMultiAsset, XcmVersionedMultiAssets, XcmVersionedMultiLocation, XcmVersionedXcm } from '@polkadot/types/lookup';
declare module '@polkadot/types/types/registry' {
interface InterfaceTypes {
@@ -198,6 +198,9 @@
SpRuntimeModuleError: SpRuntimeModuleError;
SpRuntimeMultiSignature: SpRuntimeMultiSignature;
SpRuntimeTokenError: SpRuntimeTokenError;
+ SpRuntimeTransactionValidityInvalidTransaction: SpRuntimeTransactionValidityInvalidTransaction;
+ SpRuntimeTransactionValidityTransactionValidityError: SpRuntimeTransactionValidityTransactionValidityError;
+ SpRuntimeTransactionValidityUnknownTransaction: SpRuntimeTransactionValidityUnknownTransaction;
SpRuntimeTransactionalError: SpRuntimeTransactionalError;
SpTrieStorageProof: SpTrieStorageProof;
SpVersionRuntimeVersion: SpVersionRuntimeVersion;
@@ -234,6 +237,8 @@
UpDataStructsSponsorshipStateBasicCrossAccountIdRepr: UpDataStructsSponsorshipStateBasicCrossAccountIdRepr;
UpDataStructsTokenChild: UpDataStructsTokenChild;
UpDataStructsTokenData: UpDataStructsTokenData;
+ UpPovEstimateRpcPovInfo: UpPovEstimateRpcPovInfo;
+ UpPovEstimateRpcTrieKeyValue: UpPovEstimateRpcTrieKeyValue;
XcmDoubleEncoded: XcmDoubleEncoded;
XcmV0Junction: XcmV0Junction;
XcmV0JunctionBodyId: XcmV0JunctionBodyId;
tests/src/interfaces/types-lookup.tsdiffbeforeafterboth--- a/tests/src/interfaces/types-lookup.ts
+++ b/tests/src/interfaces/types-lookup.ts
@@ -3380,7 +3380,7 @@
}
/** @name PhantomTypeUpDataStructs (399) */
- interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild]>> {}
+ interface PhantomTypeUpDataStructs extends Vec<ITuple<[UpDataStructsTokenData, UpDataStructsRpcCollection, RmrkTraitsCollectionCollectionInfo, RmrkTraitsNftNftInfo, RmrkTraitsResourceResourceInfo, RmrkTraitsPropertyPropertyInfo, RmrkTraitsBaseBaseInfo, RmrkTraitsPartPartType, RmrkTraitsTheme, RmrkTraitsNftNftChild, UpPovEstimateRpcPovInfo]>> {}
/** @name UpDataStructsTokenData (401) */
interface UpDataStructsTokenData extends Struct {
@@ -3462,7 +3462,57 @@
readonly nftId: u32;
}
- /** @name PalletCommonError (414) */
+ /** @name UpPovEstimateRpcPovInfo (413) */
+ interface UpPovEstimateRpcPovInfo extends Struct {
+ readonly proofSize: u64;
+ readonly compactProofSize: u64;
+ readonly compressedProofSize: u64;
+ readonly results: Vec<Result<Result<Null, SpRuntimeDispatchError>, SpRuntimeTransactionValidityTransactionValidityError>>;
+ readonly keyValues: Vec<UpPovEstimateRpcTrieKeyValue>;
+ }
+
+ /** @name SpRuntimeTransactionValidityTransactionValidityError (416) */
+ interface SpRuntimeTransactionValidityTransactionValidityError extends Enum {
+ readonly isInvalid: boolean;
+ readonly asInvalid: SpRuntimeTransactionValidityInvalidTransaction;
+ readonly isUnknown: boolean;
+ readonly asUnknown: SpRuntimeTransactionValidityUnknownTransaction;
+ readonly type: 'Invalid' | 'Unknown';
+ }
+
+ /** @name SpRuntimeTransactionValidityInvalidTransaction (417) */
+ interface SpRuntimeTransactionValidityInvalidTransaction extends Enum {
+ readonly isCall: boolean;
+ readonly isPayment: boolean;
+ readonly isFuture: boolean;
+ readonly isStale: boolean;
+ readonly isBadProof: boolean;
+ readonly isAncientBirthBlock: boolean;
+ readonly isExhaustsResources: boolean;
+ readonly isCustom: boolean;
+ readonly asCustom: u8;
+ readonly isBadMandatory: boolean;
+ readonly isMandatoryValidation: boolean;
+ readonly isBadSigner: boolean;
+ readonly type: 'Call' | 'Payment' | 'Future' | 'Stale' | 'BadProof' | 'AncientBirthBlock' | 'ExhaustsResources' | 'Custom' | 'BadMandatory' | 'MandatoryValidation' | 'BadSigner';
+ }
+
+ /** @name SpRuntimeTransactionValidityUnknownTransaction (418) */
+ interface SpRuntimeTransactionValidityUnknownTransaction extends Enum {
+ readonly isCannotLookup: boolean;
+ readonly isNoUnsignedValidator: boolean;
+ readonly isCustom: boolean;
+ readonly asCustom: u8;
+ readonly type: 'CannotLookup' | 'NoUnsignedValidator' | 'Custom';
+ }
+
+ /** @name UpPovEstimateRpcTrieKeyValue (420) */
+ interface UpPovEstimateRpcTrieKeyValue extends Struct {
+ readonly key: Bytes;
+ readonly value: Bytes;
+ }
+
+ /** @name PalletCommonError (422) */
interface PalletCommonError extends Enum {
readonly isCollectionNotFound: boolean;
readonly isMustBeTokenOwner: boolean;
@@ -3503,7 +3553,7 @@
readonly type: 'CollectionNotFound' | 'MustBeTokenOwner' | 'NoPermission' | 'CantDestroyNotEmptyCollection' | 'PublicMintingNotAllowed' | 'AddressNotInAllowlist' | 'CollectionNameLimitExceeded' | 'CollectionDescriptionLimitExceeded' | 'CollectionTokenPrefixLimitExceeded' | 'TotalCollectionsLimitExceeded' | 'CollectionAdminCountExceeded' | 'CollectionLimitBoundsExceeded' | 'OwnerPermissionsCantBeReverted' | 'TransferNotAllowed' | 'AccountTokenLimitExceeded' | 'CollectionTokenLimitExceeded' | 'MetadataFlagFrozen' | 'TokenNotFound' | 'TokenValueTooLow' | 'ApprovedValueTooLow' | 'CantApproveMoreThanOwned' | 'AddressIsZero' | 'UnsupportedOperation' | 'NotSufficientFounds' | 'UserIsNotAllowedToNest' | 'SourceCollectionIsNotAllowedToNest' | 'CollectionFieldSizeExceeded' | 'NoSpaceForProperty' | 'PropertyLimitReached' | 'PropertyKeyIsTooLong' | 'InvalidCharacterInPropertyKey' | 'EmptyPropertyKey' | 'CollectionIsExternal' | 'CollectionIsInternal' | 'ConfirmSponsorshipFail' | 'UserIsNotCollectionAdmin';
}
- /** @name PalletFungibleError (416) */
+ /** @name PalletFungibleError (424) */
interface PalletFungibleError extends Enum {
readonly isNotFungibleDataUsedToMintFungibleCollectionToken: boolean;
readonly isFungibleItemsHaveNoId: boolean;
@@ -3515,7 +3565,7 @@
readonly type: 'NotFungibleDataUsedToMintFungibleCollectionToken' | 'FungibleItemsHaveNoId' | 'FungibleItemsDontHaveData' | 'FungibleDisallowsNesting' | 'SettingPropertiesNotAllowed' | 'SettingAllowanceForAllNotAllowed' | 'FungibleTokensAreAlwaysValid';
}
- /** @name PalletRefungibleError (420) */
+ /** @name PalletRefungibleError (428) */
interface PalletRefungibleError extends Enum {
readonly isNotRefungibleDataUsedToMintFungibleCollectionToken: boolean;
readonly isWrongRefungiblePieces: boolean;
@@ -3525,19 +3575,19 @@
readonly type: 'NotRefungibleDataUsedToMintFungibleCollectionToken' | 'WrongRefungiblePieces' | 'RepartitionWhileNotOwningAllPieces' | 'RefungibleDisallowsNesting' | 'SettingPropertiesNotAllowed';
}
- /** @name PalletNonfungibleItemData (421) */
+ /** @name PalletNonfungibleItemData (429) */
interface PalletNonfungibleItemData extends Struct {
readonly owner: PalletEvmAccountBasicCrossAccountIdRepr;
}
- /** @name UpDataStructsPropertyScope (423) */
+ /** @name UpDataStructsPropertyScope (431) */
interface UpDataStructsPropertyScope extends Enum {
readonly isNone: boolean;
readonly isRmrk: boolean;
readonly type: 'None' | 'Rmrk';
}
- /** @name PalletNonfungibleError (426) */
+ /** @name PalletNonfungibleError (434) */
interface PalletNonfungibleError extends Enum {
readonly isNotNonfungibleDataUsedToMintFungibleCollectionToken: boolean;
readonly isNonfungibleItemsHaveNoAmount: boolean;
@@ -3545,7 +3595,7 @@
readonly type: 'NotNonfungibleDataUsedToMintFungibleCollectionToken' | 'NonfungibleItemsHaveNoAmount' | 'CantBurnNftWithChildren';
}
- /** @name PalletStructureError (427) */
+ /** @name PalletStructureError (435) */
interface PalletStructureError extends Enum {
readonly isOuroborosDetected: boolean;
readonly isDepthLimit: boolean;
@@ -3554,7 +3604,7 @@
readonly type: 'OuroborosDetected' | 'DepthLimit' | 'BreadthLimit' | 'TokenNotFound';
}
- /** @name PalletRmrkCoreError (428) */
+ /** @name PalletRmrkCoreError (436) */
interface PalletRmrkCoreError extends Enum {
readonly isCorruptedCollectionType: boolean;
readonly isRmrkPropertyKeyIsTooLong: boolean;
@@ -3578,7 +3628,7 @@
readonly type: 'CorruptedCollectionType' | 'RmrkPropertyKeyIsTooLong' | 'RmrkPropertyValueIsTooLong' | 'RmrkPropertyIsNotFound' | 'UnableToDecodeRmrkData' | 'CollectionNotEmpty' | 'NoAvailableCollectionId' | 'NoAvailableNftId' | 'CollectionUnknown' | 'NoPermission' | 'NonTransferable' | 'CollectionFullOrLocked' | 'ResourceDoesntExist' | 'CannotSendToDescendentOrSelf' | 'CannotAcceptNonOwnedNft' | 'CannotRejectNonOwnedNft' | 'CannotRejectNonPendingNft' | 'ResourceNotPending' | 'NoAvailableResourceId';
}
- /** @name PalletRmrkEquipError (430) */
+ /** @name PalletRmrkEquipError (438) */
interface PalletRmrkEquipError extends Enum {
readonly isPermissionError: boolean;
readonly isNoAvailableBaseId: boolean;
@@ -3590,7 +3640,7 @@
readonly type: 'PermissionError' | 'NoAvailableBaseId' | 'NoAvailablePartId' | 'BaseDoesntExist' | 'NeedsDefaultThemeFirst' | 'PartDoesntExist' | 'NoEquippableOnFixedPart';
}
- /** @name PalletAppPromotionError (436) */
+ /** @name PalletAppPromotionError (444) */
interface PalletAppPromotionError extends Enum {
readonly isAdminNotSet: boolean;
readonly isNoPermission: boolean;
@@ -3601,7 +3651,7 @@
readonly type: 'AdminNotSet' | 'NoPermission' | 'NotSufficientFunds' | 'PendingForBlockOverflow' | 'SponsorNotSet' | 'IncorrectLockedBalanceOperation';
}
- /** @name PalletForeignAssetsModuleError (437) */
+ /** @name PalletForeignAssetsModuleError (445) */
interface PalletForeignAssetsModuleError extends Enum {
readonly isBadLocation: boolean;
readonly isMultiLocationExisted: boolean;
@@ -3610,7 +3660,7 @@
readonly type: 'BadLocation' | 'MultiLocationExisted' | 'AssetIdNotExists' | 'AssetIdExisted';
}
- /** @name PalletEvmError (439) */
+ /** @name PalletEvmError (447) */
interface PalletEvmError extends Enum {
readonly isBalanceLow: boolean;
readonly isFeeOverflow: boolean;
@@ -3626,7 +3676,7 @@
readonly type: 'BalanceLow' | 'FeeOverflow' | 'PaymentOverflow' | 'WithdrawFailed' | 'GasPriceTooLow' | 'InvalidNonce' | 'GasLimitTooLow' | 'GasLimitTooHigh' | 'Undefined' | 'Reentrancy' | 'TransactionMustComeFromEOA';
}
- /** @name FpRpcTransactionStatus (442) */
+ /** @name FpRpcTransactionStatus (450) */
interface FpRpcTransactionStatus extends Struct {
readonly transactionHash: H256;
readonly transactionIndex: u32;
@@ -3637,10 +3687,10 @@
readonly logsBloom: EthbloomBloom;
}
- /** @name EthbloomBloom (444) */
+ /** @name EthbloomBloom (452) */
interface EthbloomBloom extends U8aFixed {}
- /** @name EthereumReceiptReceiptV3 (446) */
+ /** @name EthereumReceiptReceiptV3 (454) */
interface EthereumReceiptReceiptV3 extends Enum {
readonly isLegacy: boolean;
readonly asLegacy: EthereumReceiptEip658ReceiptData;
@@ -3651,7 +3701,7 @@
readonly type: 'Legacy' | 'Eip2930' | 'Eip1559';
}
- /** @name EthereumReceiptEip658ReceiptData (447) */
+ /** @name EthereumReceiptEip658ReceiptData (455) */
interface EthereumReceiptEip658ReceiptData extends Struct {
readonly statusCode: u8;
readonly usedGas: U256;
@@ -3659,14 +3709,14 @@
readonly logs: Vec<EthereumLog>;
}
- /** @name EthereumBlock (448) */
+ /** @name EthereumBlock (456) */
interface EthereumBlock extends Struct {
readonly header: EthereumHeader;
readonly transactions: Vec<EthereumTransactionTransactionV2>;
readonly ommers: Vec<EthereumHeader>;
}
- /** @name EthereumHeader (449) */
+ /** @name EthereumHeader (457) */
interface EthereumHeader extends Struct {
readonly parentHash: H256;
readonly ommersHash: H256;
@@ -3685,24 +3735,24 @@
readonly nonce: EthereumTypesHashH64;
}
- /** @name EthereumTypesHashH64 (450) */
+ /** @name EthereumTypesHashH64 (458) */
interface EthereumTypesHashH64 extends U8aFixed {}
- /** @name PalletEthereumError (455) */
+ /** @name PalletEthereumError (463) */
interface PalletEthereumError extends Enum {
readonly isInvalidSignature: boolean;
readonly isPreLogExists: boolean;
readonly type: 'InvalidSignature' | 'PreLogExists';
}
- /** @name PalletEvmCoderSubstrateError (456) */
+ /** @name PalletEvmCoderSubstrateError (464) */
interface PalletEvmCoderSubstrateError extends Enum {
readonly isOutOfGas: boolean;
readonly isOutOfFund: boolean;
readonly type: 'OutOfGas' | 'OutOfFund';
}
- /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (457) */
+ /** @name UpDataStructsSponsorshipStateBasicCrossAccountIdRepr (465) */
interface UpDataStructsSponsorshipStateBasicCrossAccountIdRepr extends Enum {
readonly isDisabled: boolean;
readonly isUnconfirmed: boolean;
@@ -3712,7 +3762,7 @@
readonly type: 'Disabled' | 'Unconfirmed' | 'Confirmed';
}
- /** @name PalletEvmContractHelpersSponsoringModeT (458) */
+ /** @name PalletEvmContractHelpersSponsoringModeT (466) */
interface PalletEvmContractHelpersSponsoringModeT extends Enum {
readonly isDisabled: boolean;
readonly isAllowlisted: boolean;
@@ -3720,7 +3770,7 @@
readonly type: 'Disabled' | 'Allowlisted' | 'Generous';
}
- /** @name PalletEvmContractHelpersError (464) */
+ /** @name PalletEvmContractHelpersError (472) */
interface PalletEvmContractHelpersError extends Enum {
readonly isNoPermission: boolean;
readonly isNoPendingSponsor: boolean;
@@ -3728,7 +3778,7 @@
readonly type: 'NoPermission' | 'NoPendingSponsor' | 'TooManyMethodsHaveSponsoredLimit';
}
- /** @name PalletEvmMigrationError (465) */
+ /** @name PalletEvmMigrationError (473) */
interface PalletEvmMigrationError extends Enum {
readonly isAccountNotEmpty: boolean;
readonly isAccountIsNotMigrating: boolean;
@@ -3736,17 +3786,17 @@
readonly type: 'AccountNotEmpty' | 'AccountIsNotMigrating' | 'BadEvent';
}
- /** @name PalletMaintenanceError (466) */
+ /** @name PalletMaintenanceError (474) */
type PalletMaintenanceError = Null;
- /** @name PalletTestUtilsError (467) */
+ /** @name PalletTestUtilsError (475) */
interface PalletTestUtilsError extends Enum {
readonly isTestPalletDisabled: boolean;
readonly isTriggerRollback: boolean;
readonly type: 'TestPalletDisabled' | 'TriggerRollback';
}
- /** @name SpRuntimeMultiSignature (469) */
+ /** @name SpRuntimeMultiSignature (477) */
interface SpRuntimeMultiSignature extends Enum {
readonly isEd25519: boolean;
readonly asEd25519: SpCoreEd25519Signature;
@@ -3757,40 +3807,40 @@
readonly type: 'Ed25519' | 'Sr25519' | 'Ecdsa';
}
- /** @name SpCoreEd25519Signature (470) */
+ /** @name SpCoreEd25519Signature (478) */
interface SpCoreEd25519Signature extends U8aFixed {}
- /** @name SpCoreSr25519Signature (472) */
+ /** @name SpCoreSr25519Signature (480) */
interface SpCoreSr25519Signature extends U8aFixed {}
- /** @name SpCoreEcdsaSignature (473) */
+ /** @name SpCoreEcdsaSignature (481) */
interface SpCoreEcdsaSignature extends U8aFixed {}
- /** @name FrameSystemExtensionsCheckSpecVersion (476) */
+ /** @name FrameSystemExtensionsCheckSpecVersion (484) */
type FrameSystemExtensionsCheckSpecVersion = Null;
- /** @name FrameSystemExtensionsCheckTxVersion (477) */
+ /** @name FrameSystemExtensionsCheckTxVersion (485) */
type FrameSystemExtensionsCheckTxVersion = Null;
- /** @name FrameSystemExtensionsCheckGenesis (478) */
+ /** @name FrameSystemExtensionsCheckGenesis (486) */
type FrameSystemExtensionsCheckGenesis = Null;
- /** @name FrameSystemExtensionsCheckNonce (481) */
+ /** @name FrameSystemExtensionsCheckNonce (489) */
interface FrameSystemExtensionsCheckNonce extends Compact<u32> {}
- /** @name FrameSystemExtensionsCheckWeight (482) */
+ /** @name FrameSystemExtensionsCheckWeight (490) */
type FrameSystemExtensionsCheckWeight = Null;
- /** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance (483) */
+ /** @name OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance (491) */
type OpalRuntimeRuntimeCommonMaintenanceCheckMaintenance = Null;
- /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (484) */
+ /** @name PalletTemplateTransactionPaymentChargeTransactionPayment (492) */
interface PalletTemplateTransactionPaymentChargeTransactionPayment extends Compact<u128> {}
- /** @name OpalRuntimeRuntime (485) */
+ /** @name OpalRuntimeRuntime (493) */
type OpalRuntimeRuntime = Null;
- /** @name PalletEthereumFakeTransactionFinalizer (486) */
+ /** @name PalletEthereumFakeTransactionFinalizer (494) */
type PalletEthereumFakeTransactionFinalizer = Null;
} // declare module
tests/src/interfaces/types.tsdiffbeforeafterboth--- a/tests/src/interfaces/types.ts
+++ b/tests/src/interfaces/types.ts
@@ -4,4 +4,5 @@
export * from './unique/types';
export * from './appPromotion/types';
export * from './rmrk/types';
+export * from './povinfo/types';
export * from './default/types';
tests/src/util/playgrounds/types.tsdiffbeforeafterboth--- a/tests/src/util/playgrounds/types.ts
+++ b/tests/src/util/playgrounds/types.ts
@@ -171,6 +171,14 @@
amount: bigint,
}
+export interface IPovInfo {
+ proofSize: number,
+ compactProofSize: number,
+ compressedProofSize: number,
+ results: any[],
+ kv: any,
+}
+
export interface ISchedulerOptions {
scheduledId?: string,
priority?: number,
tests/src/util/playgrounds/unique.dev.tsdiffbeforeafterboth--- a/tests/src/util/playgrounds/unique.dev.ts
+++ b/tests/src/util/playgrounds/unique.dev.ts
@@ -8,10 +8,11 @@
import * as defs from '../../interfaces/definitions';
import {IKeyringPair} from '@polkadot/types/types';
import {EventRecord} from '@polkadot/types/interfaces';
-import {ICrossAccountId, TSigner} from './types';
+import {ICrossAccountId, IPovInfo, TSigner} from './types';
import {FrameSystemEventRecord} from '@polkadot/types/lookup';
import {VoidFn} from '@polkadot/api/types';
import {Pallets} from '..';
+import {spawnSync} from 'child_process';
export class SilentLogger {
log(_msg: any, _level: any): void { }
@@ -98,6 +99,7 @@
rpc: {
unique: defs.unique.rpc,
appPromotion: defs.appPromotion.rpc,
+ povinfo: defs.povinfo.rpc,
rmrk: defs.rmrk.rpc,
eth: {
feeHistory: {
@@ -115,6 +117,7 @@
});
await this.api.isReadyOrError;
this.network = await UniqueHelper.detectNetwork(this.api);
+ this.wsEndpoint = wsEndpoint;
}
}
@@ -322,6 +325,38 @@
return balance;
}
+ async calculatePoVInfo(txs: any[]): Promise<IPovInfo> {
+ const rawPovInfo = await this.helper.callRpc('api.rpc.povinfo.estimateExtrinsicPoV', [txs]);
+
+ const kvJson: {[key: string]: string} = {};
+
+ for (const kv of rawPovInfo.keyValues) {
+ kvJson[kv.key.toHex()] = kv.value.toHex();
+ }
+
+ const kvStr = JSON.stringify(kvJson);
+
+ const chainql = spawnSync(
+ 'chainql',
+ [
+ `--tla-code=data=${kvStr}`,
+ '-e', `function(data) cql.dump(cql.chain("${this.helper.getEndpoint()}").latest._meta, data, {omit_empty:true})`,
+ ],
+ );
+
+ if (!chainql.stdout) {
+ throw Error('unable to get an output from the `chainql`');
+ }
+
+ return {
+ proofSize: rawPovInfo.proofSize.toNumber(),
+ compactProofSize: rawPovInfo.compactProofSize.toNumber(),
+ compressedProofSize: rawPovInfo.compressedProofSize.toNumber(),
+ results: rawPovInfo.results,
+ kv: JSON.parse(chainql.stdout.toString()),
+ };
+ }
+
calculatePalletAddress(palletId: any) {
const address = stringToU8a(('modl' + palletId).padEnd(32, '\0'));
return encodeAddress(address, this.helper.chain.getChainProperties().ss58Format);
tests/src/util/playgrounds/unique.tsdiffbeforeafterboth--- a/tests/src/util/playgrounds/unique.ts
+++ b/tests/src/util/playgrounds/unique.ts
@@ -371,6 +371,7 @@
api: ApiPromise | null;
forcedNetwork: TNetworks | null;
network: TNetworks | null;
+ wsEndpoint: string | null;
chainLog: IUniqueHelperLog[];
children: ChainHelperBase[];
address: AddressGroup;
@@ -386,6 +387,7 @@
this.api = null;
this.forcedNetwork = null;
this.network = null;
+ this.wsEndpoint = null;
this.chainLog = [];
this.children = [];
this.address = new AddressGroup(this);
@@ -405,6 +407,11 @@
return newHelper;
}
+ getEndpoint(): string {
+ if (this.wsEndpoint === null) throw Error('No connection was established');
+ return this.wsEndpoint;
+ }
+
getApi(): ApiPromise {
if(this.api === null) throw Error('API not initialized');
return this.api;
@@ -436,6 +443,7 @@
async connect(wsEndpoint: string, listeners?: IApiListeners) {
if (this.api !== null) throw Error('Already connected');
const {api, network} = await ChainHelperBase.createConnection(wsEndpoint, listeners, this.forcedNetwork);
+ this.wsEndpoint = wsEndpoint;
this.api = api;
this.network = network;
}
@@ -586,6 +594,20 @@
});
}
+ async signTransactionWithoutSending(signer: TSigner, tx: any) {
+ const api = this.getApi();
+ const signingInfo = await api.derive.tx.signingInfo(signer.address);
+
+ tx.sign(signer, {
+ blockHash: api.genesisHash,
+ genesisHash: api.genesisHash,
+ runtimeVersion: api.runtimeVersion,
+ nonce: signingInfo.nonce,
+ });
+
+ return tx.toHex();
+ }
+
async getPaymentInfo(signer: TSigner, tx: any, len: number | null) {
const api = this.getApi();
const signingInfo = await api.derive.tx.signingInfo(signer.address);