mirror of
https://github.com/datahaven-xyz/datahaven
synced 2026-05-24 09:50:01 +00:00
190 lines
6.1 KiB
Rust
190 lines
6.1 KiB
Rust
// Copyright 2025 DataHaven
|
|
// This file is part of DataHaven.
|
|
|
|
// DataHaven 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.
|
|
|
|
// DataHaven 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 DataHaven. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
//! Setup code for [`super::command`] which would otherwise bloat that module.
|
|
//!
|
|
//! Should only be used for benchmarking as it may break in other contexts.
|
|
|
|
use crate::service::FullClient;
|
|
|
|
use datahaven_mainnet_runtime as runtime;
|
|
use fp_account::EthereumSignature;
|
|
use runtime::{AccountId, Balance, BalancesCall, SystemCall};
|
|
use sc_cli::Result;
|
|
use sc_client_api::BlockBackend;
|
|
use sp_core::{ecdsa, Encode, Pair};
|
|
use sp_inherents::{InherentData, InherentDataProvider};
|
|
use sp_runtime::{MultiSignature, OpaqueExtrinsic, SaturatedConversion};
|
|
|
|
use std::{sync::Arc, time::Duration};
|
|
|
|
/// Generates extrinsics for the `benchmark overhead` command.
|
|
///
|
|
/// Note: Should only be used for benchmarking.
|
|
pub struct RemarkBuilder<RuntimeApi> {
|
|
client: Arc<FullClient<RuntimeApi>>,
|
|
}
|
|
|
|
impl<RuntimeApi> RemarkBuilder<RuntimeApi> {
|
|
/// Creates a new [`Self`] from the given client.
|
|
pub fn new(client: Arc<FullClient<RuntimeApi>>) -> Self {
|
|
Self { client }
|
|
}
|
|
}
|
|
|
|
impl<RuntimeApi> frame_benchmarking_cli::ExtrinsicBuilder for RemarkBuilder<RuntimeApi> {
|
|
fn pallet(&self) -> &str {
|
|
"system"
|
|
}
|
|
|
|
fn extrinsic(&self) -> &str {
|
|
"remark"
|
|
}
|
|
|
|
fn build(&self, nonce: u32) -> std::result::Result<OpaqueExtrinsic, &'static str> {
|
|
let extrinsic: OpaqueExtrinsic = create_benchmark_extrinsic(
|
|
self.client.as_ref(),
|
|
ecdsa::Pair::from_string("//Bob", None).expect("static values are valid; qed"),
|
|
SystemCall::remark { remark: vec![] }.into(),
|
|
nonce,
|
|
)
|
|
.into();
|
|
|
|
Ok(extrinsic)
|
|
}
|
|
}
|
|
|
|
/// Generates `Balances::TransferKeepAlive` extrinsics for the benchmarks.
|
|
///
|
|
/// Note: Should only be used for benchmarking.
|
|
pub struct TransferKeepAliveBuilder<RuntimeApi> {
|
|
client: Arc<FullClient<RuntimeApi>>,
|
|
dest: AccountId,
|
|
value: Balance,
|
|
}
|
|
|
|
impl<RuntimeApi> TransferKeepAliveBuilder<RuntimeApi> {
|
|
/// Creates a new [`Self`] from the given client.
|
|
pub fn new(client: Arc<FullClient<RuntimeApi>>, dest: AccountId, value: Balance) -> Self {
|
|
Self {
|
|
client,
|
|
dest,
|
|
value,
|
|
}
|
|
}
|
|
}
|
|
|
|
impl<RuntimeApi> frame_benchmarking_cli::ExtrinsicBuilder for TransferKeepAliveBuilder<RuntimeApi> {
|
|
fn pallet(&self) -> &str {
|
|
"balances"
|
|
}
|
|
|
|
fn extrinsic(&self) -> &str {
|
|
"transfer_keep_alive"
|
|
}
|
|
|
|
fn build(&self, nonce: u32) -> std::result::Result<OpaqueExtrinsic, &'static str> {
|
|
let extrinsic: OpaqueExtrinsic = create_benchmark_extrinsic(
|
|
self.client.as_ref(),
|
|
ecdsa::Pair::from_string("//Bob", None).expect("static values are valid; qed"),
|
|
BalancesCall::transfer_keep_alive {
|
|
dest: self.dest,
|
|
value: self.value,
|
|
}
|
|
.into(),
|
|
nonce,
|
|
)
|
|
.into();
|
|
|
|
Ok(extrinsic)
|
|
}
|
|
}
|
|
|
|
/// Create a transaction using the given `call`.
|
|
///
|
|
/// Note: Should only be used for benchmarking.
|
|
pub fn create_benchmark_extrinsic<RuntimeApi>(
|
|
client: &FullClient<RuntimeApi>,
|
|
sender: ecdsa::Pair,
|
|
call: runtime::RuntimeCall,
|
|
nonce: u32,
|
|
) -> runtime::UncheckedExtrinsic {
|
|
let genesis_hash = client
|
|
.block_hash(0)
|
|
.ok()
|
|
.flatten()
|
|
.expect("Genesis block exists; qed");
|
|
let best_hash = client.chain_info().best_hash;
|
|
let best_block = client.chain_info().best_number;
|
|
|
|
let period = runtime::configs::BlockHashCount::get()
|
|
.checked_next_power_of_two()
|
|
.map(|c| c / 2)
|
|
.unwrap_or(2) as u64;
|
|
let extra: runtime::SignedExtra = (
|
|
frame_system::CheckNonZeroSender::<runtime::Runtime>::new(),
|
|
frame_system::CheckSpecVersion::<runtime::Runtime>::new(),
|
|
frame_system::CheckTxVersion::<runtime::Runtime>::new(),
|
|
frame_system::CheckGenesis::<runtime::Runtime>::new(),
|
|
frame_system::CheckEra::<runtime::Runtime>::from(sp_runtime::generic::Era::mortal(
|
|
period,
|
|
best_block.saturated_into(),
|
|
)),
|
|
frame_system::CheckNonce::<runtime::Runtime>::from(nonce),
|
|
frame_system::CheckWeight::<runtime::Runtime>::new(),
|
|
pallet_transaction_payment::ChargeTransactionPayment::<runtime::Runtime>::from(0),
|
|
frame_metadata_hash_extension::CheckMetadataHash::<runtime::Runtime>::new(false),
|
|
);
|
|
|
|
let raw_payload = runtime::SignedPayload::from_raw(
|
|
call.clone(),
|
|
extra.clone(),
|
|
(
|
|
(),
|
|
runtime::VERSION.spec_version,
|
|
runtime::VERSION.transaction_version,
|
|
genesis_hash,
|
|
best_hash,
|
|
(),
|
|
(),
|
|
(),
|
|
None,
|
|
),
|
|
);
|
|
let signature = raw_payload.using_encoded(|e| sender.sign(e));
|
|
let signature = MultiSignature::Ecdsa(signature);
|
|
let signature = EthereumSignature::from(signature);
|
|
|
|
runtime::UncheckedExtrinsic::new_signed(
|
|
call,
|
|
runtime::AccountId::from(sender.public()),
|
|
runtime::Signature::from(signature),
|
|
extra,
|
|
)
|
|
}
|
|
|
|
/// Generates inherent data for the `benchmark overhead` command.
|
|
///
|
|
/// Note: Should only be used for benchmarking.
|
|
pub fn inherent_benchmark_data() -> Result<InherentData> {
|
|
let mut inherent_data = InherentData::new();
|
|
let d = Duration::from_millis(0);
|
|
let timestamp = sp_timestamp::InherentDataProvider::new(d.into());
|
|
|
|
futures::executor::block_on(timestamp.provide_inherent_data(&mut inherent_data))
|
|
.map_err(|e| format!("creating inherent data: {:?}", e))?;
|
|
Ok(inherent_data)
|
|
}
|