#![cfg_attr(not(feature = "std"), no_std)]
#![allow(clippy::too_many_arguments)]
#![warn(unused_crate_dependencies)]
use ethereum::Log;
use ethereum_types::Bloom;
use scale_codec::{Decode, Encode};
use scale_info::TypeInfo;
use sp_core::{H160, H256, U256};
use sp_runtime::{
traits::{Block as BlockT, HashingFor},
Permill, RuntimeDebug,
};
use sp_state_machine::OverlayedChanges;
use sp_std::vec::Vec;
#[derive(Clone, Eq, PartialEq, Default, RuntimeDebug, Encode, Decode, TypeInfo)]
pub struct TransactionStatus {
pub transaction_hash: H256,
pub transaction_index: u32,
pub from: H160,
pub to: Option<H160>,
pub contract_address: Option<H160>,
pub logs: Vec<Log>,
pub logs_bloom: Bloom,
}
pub trait RuntimeStorageOverride<B: BlockT, C>: Send + Sync {
fn is_enabled() -> bool;
fn set_overlayed_changes(
client: &C,
overlayed_changes: &mut OverlayedChanges<HashingFor<B>>,
block: B::Hash,
version: u32,
address: H160,
balance: Option<U256>,
nonce: Option<U256>,
);
fn into_account_id_bytes(address: H160) -> Vec<u8>;
}
impl<B: BlockT, C> RuntimeStorageOverride<B, C> for () {
fn is_enabled() -> bool {
false
}
fn set_overlayed_changes(
_client: &C,
_overlayed_changes: &mut OverlayedChanges<HashingFor<B>>,
_block: B::Hash,
_version: u32,
_address: H160,
_balance: Option<U256>,
_nonce: Option<U256>,
) {
}
fn into_account_id_bytes(_address: H160) -> Vec<u8> {
Vec::default()
}
}
sp_api::decl_runtime_apis! {
#[api_version(5)]
pub trait EthereumRuntimeRPCApi {
fn chain_id() -> u64;
fn account_basic(address: H160) -> fp_evm::Account;
fn gas_price() -> U256;
fn account_code_at(address: H160) -> Vec<u8>;
fn author() -> H160;
fn storage_at(address: H160, index: U256) -> H256;
#[changed_in(2)]
fn call(
from: H160,
to: H160,
data: Vec<u8>,
value: U256,
gas_limit: U256,
gas_price: Option<U256>,
nonce: Option<U256>,
estimate: bool,
) -> Result<fp_evm::ExecutionInfo::<Vec<u8>>, sp_runtime::DispatchError>;
#[changed_in(4)]
fn call(
from: H160,
to: H160,
data: Vec<u8>,
value: U256,
gas_limit: U256,
max_fee_per_gas: Option<U256>,
max_priority_fee_per_gas: Option<U256>,
nonce: Option<U256>,
estimate: bool,
) -> Result<fp_evm::ExecutionInfo::<Vec<u8>>, sp_runtime::DispatchError>;
#[changed_in(5)]
fn call(
from: H160,
to: H160,
data: Vec<u8>,
value: U256,
gas_limit: U256,
max_fee_per_gas: Option<U256>,
max_priority_fee_per_gas: Option<U256>,
nonce: Option<U256>,
estimate: bool,
access_list: Option<Vec<(H160, Vec<H256>)>>,
) -> Result<fp_evm::ExecutionInfo::<Vec<u8>>, sp_runtime::DispatchError>;
fn call(
from: H160,
to: H160,
data: Vec<u8>,
value: U256,
gas_limit: U256,
max_fee_per_gas: Option<U256>,
max_priority_fee_per_gas: Option<U256>,
nonce: Option<U256>,
estimate: bool,
access_list: Option<Vec<(H160, Vec<H256>)>>,
) -> Result<fp_evm::ExecutionInfoV2::<Vec<u8>>, sp_runtime::DispatchError>;
#[changed_in(2)]
fn create(
from: H160,
data: Vec<u8>,
value: U256,
gas_limit: U256,
gas_price: Option<U256>,
nonce: Option<U256>,
estimate: bool,
) -> Result<fp_evm::ExecutionInfo::<H160>, sp_runtime::DispatchError>;
#[changed_in(4)]
fn create(
from: H160,
data: Vec<u8>,
value: U256,
gas_limit: U256,
max_fee_per_gas: Option<U256>,
max_priority_fee_per_gas: Option<U256>,
nonce: Option<U256>,
estimate: bool,
) -> Result<fp_evm::ExecutionInfo::<H160>, sp_runtime::DispatchError>;
#[changed_in(5)]
fn create(
from: H160,
data: Vec<u8>,
value: U256,
gas_limit: U256,
max_fee_per_gas: Option<U256>,
max_priority_fee_per_gas: Option<U256>,
nonce: Option<U256>,
estimate: bool,
access_list: Option<Vec<(H160, Vec<H256>)>>,
) -> Result<fp_evm::ExecutionInfo::<H160>, sp_runtime::DispatchError>;
fn create(
from: H160,
data: Vec<u8>,
value: U256,
gas_limit: U256,
max_fee_per_gas: Option<U256>,
max_priority_fee_per_gas: Option<U256>,
nonce: Option<U256>,
estimate: bool,
access_list: Option<Vec<(H160, Vec<H256>)>>,
) -> Result<fp_evm::ExecutionInfoV2::<H160>, sp_runtime::DispatchError>;
#[changed_in(2)]
fn current_block() -> Option<ethereum::BlockV0>;
fn current_block() -> Option<ethereum::BlockV2>;
#[changed_in(4)]
fn current_receipts() -> Option<Vec<ethereum::ReceiptV0>>;
fn current_receipts() -> Option<Vec<ethereum::ReceiptV3>>;
fn current_transaction_statuses() -> Option<Vec<TransactionStatus>>;
#[changed_in(2)]
fn current_all() -> (
Option<ethereum::BlockV0>,
Option<Vec<ethereum::ReceiptV0>>,
Option<Vec<TransactionStatus>>
);
#[changed_in(4)]
fn current_all() -> (
Option<ethereum::BlockV2>,
Option<Vec<ethereum::ReceiptV0>>,
Option<Vec<TransactionStatus>>
);
fn current_all() -> (
Option<ethereum::BlockV2>,
Option<Vec<ethereum::ReceiptV3>>,
Option<Vec<TransactionStatus>>
);
#[changed_in(2)]
fn extrinsic_filter(
xts: Vec<<Block as BlockT>::Extrinsic>,
) -> Vec<ethereum::TransactionV0>;
fn extrinsic_filter(
xts: Vec<<Block as BlockT>::Extrinsic>,
) -> Vec<ethereum::TransactionV2>;
fn elasticity() -> Option<Permill>;
fn gas_limit_multiplier_support();
fn pending_block(
xts: Vec<<Block as BlockT>::Extrinsic>,
) -> (Option<ethereum::BlockV2>, Option<Vec<TransactionStatus>>);
}
#[api_version(2)]
pub trait ConvertTransactionRuntimeApi {
fn convert_transaction(transaction: ethereum::TransactionV2) -> <Block as BlockT>::Extrinsic;
#[changed_in(2)]
fn convert_transaction(transaction: ethereum::TransactionV0) -> <Block as BlockT>::Extrinsic;
}
}
pub trait ConvertTransaction<E> {
fn convert_transaction(&self, transaction: ethereum::TransactionV2) -> E;
}
pub enum NoTransactionConverter {}
impl<E> ConvertTransaction<E> for NoTransactionConverter {
fn convert_transaction(&self, _transaction: ethereum::TransactionV2) -> E {
match *self {}
}
}