Files
pezkuwi-sdk/bizinikiwi/pezframe/revive/src/lib.rs
T
pezkuwichain 3139ffa25e fix: Complete snowbridge pezpallet rebrand and critical bug fixes
- snowbridge-pezpallet-* → pezsnowbridge-pezpallet-* (201 refs)
- pallet/ directories → pezpallet/ (4 locations)
- Fixed pezpallet.rs self-include recursion bug
- Fixed sc-chain-spec hardcoded crate name in derive macro
- Reverted .pezpallet_by_name() to .pallet_by_name() (subxt API)
- Added BizinikiwiConfig type alias for zombienet tests
- Deleted obsolete session state files

Verified: pezsnowbridge-pezpallet-*, pezpallet-staking,
pezpallet-staking-async, pezframe-benchmarking-cli all pass cargo check
2025-12-16 09:57:23 +03:00

2865 lines
98 KiB
Rust

// This file is part of Bizinikiwi.
// Copyright (C) Parity Technologies (UK) Ltd.
// SPDX-License-Identifier: Apache-2.0
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#![doc = include_str!("../README.md")]
#![allow(rustdoc::private_intra_doc_links)]
#![cfg_attr(not(feature = "std"), no_std)]
#![cfg_attr(feature = "runtime-benchmarks", recursion_limit = "1024")]
extern crate alloc;
mod address;
mod benchmarking;
mod call_builder;
mod debug;
mod exec;
mod gas;
mod impl_fungibles;
mod limits;
mod primitives;
mod storage;
#[cfg(test)]
mod tests;
mod transient_storage;
mod vm;
mod weightinfo_extension;
pub mod evm;
pub mod migrations;
pub mod mock;
pub mod precompiles;
pub mod test_utils;
pub mod tracing;
pub mod weights;
use crate::{
evm::{
block_hash::EthereumBlockBuilderIR,
block_storage, create_call,
fees::{Combinator, InfoT as FeeInfo},
runtime::SetWeightLimit,
CallTracer, GenericTransaction, PrestateTracer, Trace, Tracer, TracerType, TYPE_EIP1559,
},
exec::{AccountIdOf, ExecError, Stack as ExecStack},
gas::GasMeter,
storage::{meter::Meter as StorageMeter, AccountType, DeletionQueueManager},
tracing::if_tracing,
vm::{pvm::extract_code_and_data, CodeInfo, RuntimeCosts},
weightinfo_extension::OnFinalizeBlockParts,
};
use alloc::{boxed::Box, format, vec};
use codec::{Codec, Decode, Encode};
use environmental::*;
use pezframe_support::{
dispatch::{
DispatchErrorWithPostInfo, DispatchResult, DispatchResultWithPostInfo, GetDispatchInfo,
Pays, PostDispatchInfo, RawOrigin,
},
ensure,
pezpallet_prelude::DispatchClass,
traits::{
fungible::{Balanced, Inspect, Mutate, MutateHold},
tokens::Balance,
ConstU32, ConstU64, EnsureOrigin, Get, IsSubType, IsType, OriginTrait,
},
weights::WeightMeter,
BoundedVec, RuntimeDebugNoBound,
};
use pezframe_system::{
ensure_signed,
pezpallet_prelude::{BlockNumberFor, OriginFor},
Pezpallet as System,
};
use scale_info::TypeInfo;
use pezsp_runtime::{
traits::{BadOrigin, Bounded, Convert, Dispatchable, Saturating, UniqueSaturatedInto, Zero},
AccountId32, DispatchError, FixedPointNumber, FixedU128,
};
pub use crate::{
address::{
create1, create2, is_eth_derived, AccountId32Mapper, AddressMapper, TestAccountMapper,
},
debug::DebugSettings,
evm::{
block_hash::ReceiptGasInfo, Address as EthAddress, Block as EthBlock, DryRunConfig,
ReceiptInfo,
},
exec::{DelegateInfo, Executable, Key, MomentOf, Origin as ExecOrigin},
pezpallet::{genesis, *},
storage::{AccountInfo, ContractInfo},
vm::{BytecodeType, ContractBlob},
};
pub use codec;
pub use pezframe_support::{self, dispatch::DispatchInfo, traits::Time, weights::Weight};
pub use pezframe_system::{self, limits::BlockWeights};
pub use primitives::*;
pub use pezsp_core::{keccak_256, H160, H256, U256};
pub use pezsp_runtime;
pub use weights::WeightInfo;
#[cfg(doc)]
pub use crate::vm::pvm::SyscallDoc;
pub type BalanceOf<T> = <T as Config>::Balance;
type TrieId = BoundedVec<u8, ConstU32<128>>;
type ImmutableData = BoundedVec<u8, ConstU32<{ limits::IMMUTABLE_BYTES }>>;
type CallOf<T> = <T as Config>::RuntimeCall;
/// Used as a sentinel value when reading and writing contract memory.
///
/// It is usually used to signal `None` to a contract when only a primitive is allowed
/// and we don't want to go through encoding a full Rust type. Using `u32::Max` is a safe
/// sentinel because contracts are never allowed to use such a large amount of resources
/// that this value makes sense for a memory location or length.
const SENTINEL: u32 = u32::MAX;
/// The target that is used for the log output emitted by this crate.
///
/// Hence you can use this target to selectively increase the log level for this crate.
///
/// Example: `RUST_LOG=runtime::revive=debug my_code --dev`
const LOG_TARGET: &str = "runtime::revive";
#[pezframe_support::pezpallet]
pub mod pezpallet {
use super::*;
use pezframe_support::{pezpallet_prelude::*, traits::FindAuthor};
use pezframe_system::pezpallet_prelude::*;
use pezsp_core::U256;
use pezsp_runtime::Perbill;
/// The in-code storage version.
pub(crate) const STORAGE_VERSION: StorageVersion = StorageVersion::new(0);
#[pezpallet::pezpallet]
#[pezpallet::storage_version(STORAGE_VERSION)]
pub struct Pezpallet<T>(_);
#[pezpallet::config(with_default)]
pub trait Config: pezframe_system::Config {
/// The time implementation used to supply timestamps to contracts through `seal_now`.
type Time: Time<Moment: Into<U256>>;
/// The balance type of [`Self::Currency`].
///
/// Just added here to add additional trait bounds.
#[pezpallet::no_default]
type Balance: Balance + TryFrom<U256> + Into<U256> + Bounded + UniqueSaturatedInto<u64>;
/// The fungible in which fees are paid and contract balances are held.
#[pezpallet::no_default]
type Currency: Inspect<Self::AccountId, Balance = Self::Balance>
+ Mutate<Self::AccountId>
+ MutateHold<Self::AccountId, Reason = Self::RuntimeHoldReason>
+ Balanced<Self::AccountId>;
/// The overarching event type.
#[pezpallet::no_default_bounds]
#[allow(deprecated)]
type RuntimeEvent: From<Event<Self>> + IsType<<Self as pezframe_system::Config>::RuntimeEvent>;
/// The overarching call type.
#[pezpallet::no_default_bounds]
type RuntimeCall: Parameter
+ Dispatchable<
RuntimeOrigin = OriginFor<Self>,
Info = DispatchInfo,
PostInfo = PostDispatchInfo,
> + IsType<<Self as pezframe_system::Config>::RuntimeCall>
+ From<Call<Self>>
+ IsSubType<Call<Self>>
+ GetDispatchInfo;
/// The overarching origin type.
#[pezpallet::no_default_bounds]
type RuntimeOrigin: IsType<OriginFor<Self>>
+ From<Origin<Self>>
+ Into<Result<Origin<Self>, OriginFor<Self>>>;
/// Overarching hold reason.
#[pezpallet::no_default_bounds]
type RuntimeHoldReason: From<HoldReason>;
/// Describes the weights of the dispatchables of this module and is also used to
/// construct a default cost schedule.
type WeightInfo: WeightInfo;
/// Type that allows the runtime authors to add new host functions for a contract to call.
///
/// Pass in a tuple of types that implement [`precompiles::Precompile`].
#[pezpallet::no_default_bounds]
#[allow(private_bounds)]
type Precompiles: precompiles::Precompiles<Self>;
/// Find the author of the current block.
type FindAuthor: FindAuthor<Self::AccountId>;
/// The amount of balance a caller has to pay for each byte of storage.
///
/// # Note
///
/// It is safe to change this value on a live chain as all refunds are pro rata.
#[pezpallet::constant]
#[pezpallet::no_default_bounds]
type DepositPerByte: Get<BalanceOf<Self>>;
/// The amount of balance a caller has to pay for each storage item.
///
/// # Note
///
/// It is safe to change this value on a live chain as all refunds are pro rata.
#[pezpallet::constant]
#[pezpallet::no_default_bounds]
type DepositPerItem: Get<BalanceOf<Self>>;
/// The amount of balance a caller has to pay for each child trie storage item.
///
/// Those are the items created by a contract. In Solidity each value is a single
/// storage item. This is why we need to set a lower value here than for the main
/// trie items. Otherwise the storage deposit is too high.
///
/// # Note
///
/// It is safe to change this value on a live chain as all refunds are pro rata.
#[pezpallet::constant]
#[pezpallet::no_default_bounds]
type DepositPerChildTrieItem: Get<BalanceOf<Self>>;
/// The percentage of the storage deposit that should be held for using a code hash.
/// Instantiating a contract, protects the code from being removed. In order to prevent
/// abuse these actions are protected with a percentage of the code deposit.
#[pezpallet::constant]
type CodeHashLockupDepositPercent: Get<Perbill>;
/// Use either valid type is [`address::AccountId32Mapper`] or [`address::H160Mapper`].
#[pezpallet::no_default]
type AddressMapper: AddressMapper<Self>;
/// Make contract callable functions marked as `#[unstable]` available.
///
/// Contracts that use `#[unstable]` functions won't be able to be uploaded unless
/// this is set to `true`. This is only meant for testnets and dev nodes in order to
/// experiment with new features.
///
/// # Warning
///
/// Do **not** set to `true` on productions chains.
#[pezpallet::constant]
type UnsafeUnstableInterface: Get<bool>;
/// Allow EVM bytecode to be uploaded and instantiated.
#[pezpallet::constant]
type AllowEVMBytecode: Get<bool>;
/// Origin allowed to upload code.
///
/// By default, it is safe to set this to `EnsureSigned`, allowing anyone to upload contract
/// code.
#[pezpallet::no_default_bounds]
type UploadOrigin: EnsureOrigin<OriginFor<Self>, Success = Self::AccountId>;
/// Origin allowed to instantiate code.
///
/// # Note
///
/// This is not enforced when a contract instantiates another contract. The
/// [`Self::UploadOrigin`] should make sure that no code is deployed that does unwanted
/// instantiations.
///
/// By default, it is safe to set this to `EnsureSigned`, allowing anyone to instantiate
/// contract code.
#[pezpallet::no_default_bounds]
type InstantiateOrigin: EnsureOrigin<OriginFor<Self>, Success = Self::AccountId>;
/// The amount of memory in bytes that teyrchain nodes a lot to the runtime.
///
/// This is used in [`Pezpallet::integrity_test`] to make sure that the runtime has enough
/// memory to support this pezpallet if set to the correct value.
type RuntimeMemory: Get<u32>;
/// The amount of memory in bytes that relay chain validators a lot to the PoV.
///
/// This is used in [`Pezpallet::integrity_test`] to make sure that the runtime has enough
/// memory to support this pezpallet if set to the correct value.
///
/// This value is usually higher than [`Self::RuntimeMemory`] to account for the fact
/// that validators have to hold all storage items in PvF memory.
type PVFMemory: Get<u32>;
/// The [EIP-155](https://eips.ethereum.org/EIPS/eip-155) chain ID.
///
/// This is a unique identifier assigned to each blockchain network,
/// preventing replay attacks.
#[pezpallet::constant]
type ChainId: Get<u64>;
/// The ratio between the decimal representation of the native token and the ETH token.
#[pezpallet::constant]
type NativeToEthRatio: Get<u32>;
/// Set to [`crate::evm::fees::Info`] for a production runtime.
///
/// For mock runtimes that do not need to interact with any eth compat functionality
/// the default value of `()` will suffice.
#[pezpallet::no_default_bounds]
type FeeInfo: FeeInfo<Self>;
/// The fraction the maximum extrinsic weight `eth_transact` extrinsics are capped to.
///
/// This is not a security measure but a requirement due to how we map gas to `(Weight,
/// StorageDeposit)`. The mapping might derive a `Weight` that is too large to fit into an
/// extrinsic. In this case we cap it to the limit specified here.
///
/// `eth_transact` transactions that use more weight than specified will fail with an out of
/// gas error during execution. Larger fractions will allow more transactions to run.
/// Smaller values waste less block space: Choose as small as possible and as large as
/// necessary.
///
/// Default: `0.5`.
#[pezpallet::constant]
type MaxEthExtrinsicWeight: Get<FixedU128>;
/// Allows debug-mode configuration, such as enabling unlimited contract size.
#[pezpallet::constant]
type DebugEnabled: Get<bool>;
}
/// Container for different types that implement [`DefaultConfig`]` of this pezpallet.
pub mod config_preludes {
use super::*;
use pezframe_support::{
derive_impl,
traits::{ConstBool, ConstU32},
};
use pezframe_system::EnsureSigned;
use pezsp_core::parameter_types;
type Balance = u64;
pub const DOLLARS: Balance = 1_000_000_000_000;
pub const CENTS: Balance = DOLLARS / 100;
pub const MILLICENTS: Balance = CENTS / 1_000;
pub const fn deposit(items: u32, bytes: u32) -> Balance {
items as Balance * 20 * CENTS + (bytes as Balance) * MILLICENTS
}
parameter_types! {
pub const DepositPerItem: Balance = deposit(1, 0);
pub const DepositPerChildTrieItem: Balance = deposit(1, 0) / 100;
pub const DepositPerByte: Balance = deposit(0, 1);
pub const CodeHashLockupDepositPercent: Perbill = Perbill::from_percent(0);
pub const MaxEthExtrinsicWeight: FixedU128 = FixedU128::from_rational(9, 10);
}
/// A type providing default configurations for this pezpallet in testing environment.
pub struct TestDefaultConfig;
impl Time for TestDefaultConfig {
type Moment = u64;
fn now() -> Self::Moment {
0u64
}
}
impl<T: From<u64>> Convert<Weight, T> for TestDefaultConfig {
fn convert(w: Weight) -> T {
w.ref_time().into()
}
}
#[derive_impl(pezframe_system::config_preludes::TestDefaultConfig, no_aggregated_types)]
impl pezframe_system::DefaultConfig for TestDefaultConfig {}
#[pezframe_support::register_default_impl(TestDefaultConfig)]
impl DefaultConfig for TestDefaultConfig {
#[inject_runtime_type]
type RuntimeEvent = ();
#[inject_runtime_type]
type RuntimeHoldReason = ();
#[inject_runtime_type]
type RuntimeCall = ();
#[inject_runtime_type]
type RuntimeOrigin = ();
type Precompiles = ();
type CodeHashLockupDepositPercent = CodeHashLockupDepositPercent;
type DepositPerByte = DepositPerByte;
type DepositPerItem = DepositPerItem;
type DepositPerChildTrieItem = DepositPerChildTrieItem;
type Time = Self;
type UnsafeUnstableInterface = ConstBool<true>;
type AllowEVMBytecode = ConstBool<true>;
type UploadOrigin = EnsureSigned<Self::AccountId>;
type InstantiateOrigin = EnsureSigned<Self::AccountId>;
type WeightInfo = ();
type RuntimeMemory = ConstU32<{ 128 * 1024 * 1024 }>;
type PVFMemory = ConstU32<{ 512 * 1024 * 1024 }>;
type ChainId = ConstU64<42>;
type NativeToEthRatio = ConstU32<1_000_000>;
type FindAuthor = ();
type FeeInfo = ();
type MaxEthExtrinsicWeight = MaxEthExtrinsicWeight;
type DebugEnabled = ConstBool<false>;
}
}
#[pezpallet::event]
pub enum Event<T: Config> {
/// A custom event emitted by the contract.
ContractEmitted {
/// The contract that emitted the event.
contract: H160,
/// Data supplied by the contract. Metadata generated during contract compilation
/// is needed to decode it.
data: Vec<u8>,
/// A list of topics used to index the event.
/// Number of topics is capped by [`limits::NUM_EVENT_TOPICS`].
topics: Vec<H256>,
},
/// Contract deployed by deployer at the specified address.
Instantiated { deployer: H160, contract: H160 },
/// Emitted when an Ethereum transaction reverts.
///
/// Ethereum transactions always complete successfully at the extrinsic level,
/// as even reverted calls must store their `ReceiptInfo`.
/// To distinguish reverted calls from successful ones, this event is emitted
/// for failed Ethereum transactions.
EthExtrinsicRevert { dispatch_error: DispatchError },
}
#[pezpallet::error]
#[repr(u8)]
pub enum Error<T> {
/// Invalid schedule supplied, e.g. with zero weight of a basic operation.
InvalidSchedule = 0x01,
/// Invalid combination of flags supplied to `seal_call` or `seal_delegate_call`.
InvalidCallFlags = 0x02,
/// The executed contract exhausted its gas limit.
OutOfGas = 0x03,
/// Performing the requested transfer failed. Probably because there isn't enough
/// free balance in the sender's account.
TransferFailed = 0x04,
/// Performing a call was denied because the calling depth reached the limit
/// of what is specified in the schedule.
MaxCallDepthReached = 0x05,
/// No contract was found at the specified address.
ContractNotFound = 0x06,
/// No code could be found at the supplied code hash.
CodeNotFound = 0x07,
/// No code info could be found at the supplied code hash.
CodeInfoNotFound = 0x08,
/// A buffer outside of sandbox memory was passed to a contract API function.
OutOfBounds = 0x09,
/// Input passed to a contract API function failed to decode as expected type.
DecodingFailed = 0x0A,
/// Contract trapped during execution.
ContractTrapped = 0x0B,
/// Event body or storage item exceeds [`limits::STORAGE_BYTES`].
ValueTooLarge = 0x0C,
/// Termination of a contract is not allowed while the contract is already
/// on the call stack. Can be triggered by `seal_terminate`.
TerminatedWhileReentrant = 0x0D,
/// `seal_call` forwarded this contracts input. It therefore is no longer available.
InputForwarded = 0x0E,
/// The amount of topics passed to `seal_deposit_events` exceeds the limit.
TooManyTopics = 0x0F,
/// A contract with the same AccountId already exists.
DuplicateContract = 0x12,
/// A contract self destructed in its constructor.
///
/// This can be triggered by a call to `seal_terminate`.
TerminatedInConstructor = 0x13,
/// A call tried to invoke a contract that is flagged as non-reentrant.
ReentranceDenied = 0x14,
/// A contract called into the runtime which then called back into this pezpallet.
ReenteredPallet = 0x15,
/// A contract attempted to invoke a state modifying API while being in read-only mode.
StateChangeDenied = 0x16,
/// Origin doesn't have enough balance to pay the required storage deposits.
StorageDepositNotEnoughFunds = 0x17,
/// More storage was created than allowed by the storage deposit limit.
StorageDepositLimitExhausted = 0x18,
/// Code removal was denied because the code is still in use by at least one contract.
CodeInUse = 0x19,
/// The contract ran to completion but decided to revert its storage changes.
/// Please note that this error is only returned from extrinsics. When called directly
/// or via RPC an `Ok` will be returned. In this case the caller needs to inspect the flags
/// to determine whether a reversion has taken place.
ContractReverted = 0x1A,
/// The contract failed to compile or is missing the correct entry points.
///
/// A more detailed error can be found on the node console if debug messages are enabled
/// by supplying `-lruntime::revive=debug`.
CodeRejected = 0x1B,
/// The code blob supplied is larger than [`limits::code::BLOB_BYTES`].
BlobTooLarge = 0x1C,
/// The contract declares too much memory (ro + rw + stack).
StaticMemoryTooLarge = 0x1D,
/// The program contains a basic block that is larger than allowed.
BasicBlockTooLarge = 0x1E,
/// The program contains an invalid instruction.
InvalidInstruction = 0x1F,
/// The contract has reached its maximum number of delegate dependencies.
MaxDelegateDependenciesReached = 0x20,
/// The dependency was not found in the contract's delegate dependencies.
DelegateDependencyNotFound = 0x21,
/// The contract already depends on the given delegate dependency.
DelegateDependencyAlreadyExists = 0x22,
/// Can not add a delegate dependency to the code hash of the contract itself.
CannotAddSelfAsDelegateDependency = 0x23,
/// Can not add more data to transient storage.
OutOfTransientStorage = 0x24,
/// The contract tried to call a syscall which does not exist (at its current api level).
InvalidSyscall = 0x25,
/// Invalid storage flags were passed to one of the storage syscalls.
InvalidStorageFlags = 0x26,
/// PolkaVM failed during code execution. Probably due to a malformed program.
ExecutionFailed = 0x27,
/// Failed to convert a U256 to a Balance.
BalanceConversionFailed = 0x28,
/// Immutable data can only be set during deploys and only be read during calls.
/// Additionally, it is only valid to set the data once and it must not be empty.
InvalidImmutableAccess = 0x2A,
/// An `AccountID32` account tried to interact with the pezpallet without having a mapping.
///
/// Call [`Pezpallet::map_account`] in order to create a mapping for the account.
AccountUnmapped = 0x2B,
/// Tried to map an account that is already mapped.
AccountAlreadyMapped = 0x2C,
/// The transaction used to dry-run a contract is invalid.
InvalidGenericTransaction = 0x2D,
/// The refcount of a code either over or underflowed.
RefcountOverOrUnderflow = 0x2E,
/// Unsupported precompile address.
UnsupportedPrecompileAddress = 0x2F,
/// The calldata exceeds [`limits::CALLDATA_BYTES`].
CallDataTooLarge = 0x30,
/// The return data exceeds [`limits::CALLDATA_BYTES`].
ReturnDataTooLarge = 0x31,
/// Invalid jump destination. Dynamic jumps points to invalid not jumpdest opcode.
InvalidJump = 0x32,
/// Attempting to pop a value from an empty stack.
StackUnderflow = 0x33,
/// Attempting to push a value onto a full stack.
StackOverflow = 0x34,
/// Too much deposit was drawn from the shared txfee and deposit credit.
///
/// This happens if the passed `gas` inside the ethereum transaction is too low.
TxFeeOverdraw = 0x35,
/// When calling an EVM constructor `data` has to be empty.
///
/// EVM constructors do not accept data. Their input data is part of the code blob itself.
EvmConstructorNonEmptyData = 0x36,
/// Tried to construct an EVM contract via code hash.
///
/// EVM contracts can only be instantiated via code upload as no initcode is
/// stored on-chain.
EvmConstructedFromHash = 0x37,
/// The contract does not have enough balance to refund the storage deposit.
///
/// This is a bug and should never happen. It means the accounting got out of sync.
StorageRefundNotEnoughFunds = 0x38,
/// This means there are locks on the contracts storage deposit that prevents refunding it.
///
/// This would be the case if the contract used its storage deposits for governance
/// or other pallets that allow creating locks over held balance.
StorageRefundLocked = 0x39,
/// Called a pre-compile that is not allowed to be delegate called.
///
/// Some pre-compile functions will trap the caller context if being delegate
/// called or if their caller was being delegate called.
PrecompileDelegateDenied = 0x40,
/// Benchmarking only error.
#[cfg(feature = "runtime-benchmarks")]
BenchmarkingError = 0xFF,
}
/// A reason for the pezpallet revive placing a hold on funds.
#[pezpallet::composite_enum]
pub enum HoldReason {
/// The Pezpallet has reserved it for storing code on-chain.
CodeUploadDepositReserve,
/// The Pezpallet has reserved it for storage deposit.
StorageDepositReserve,
/// Deposit for creating an address mapping in [`OriginalAccount`].
AddressMapping,
}
#[derive(
PartialEq,
Eq,
Clone,
MaxEncodedLen,
Encode,
Decode,
DecodeWithMemTracking,
TypeInfo,
RuntimeDebug,
)]
#[pezpallet::origin]
pub enum Origin<T: Config> {
EthTransaction(T::AccountId),
}
/// A mapping from a contract's code hash to its code.
/// The code's size is bounded by [`crate::limits::BLOB_BYTES`] for PVM and
/// [`revm::primitives::eip170::MAX_CODE_SIZE`] for EVM bytecode.
#[pezpallet::storage]
#[pezpallet::unbounded]
pub(crate) type PristineCode<T: Config> = StorageMap<_, Identity, H256, Vec<u8>>;
/// A mapping from a contract's code hash to its code info.
#[pezpallet::storage]
pub(crate) type CodeInfoOf<T: Config> = StorageMap<_, Identity, H256, CodeInfo<T>>;
/// The data associated to a contract or externally owned account.
#[pezpallet::storage]
pub(crate) type AccountInfoOf<T: Config> = StorageMap<_, Identity, H160, AccountInfo<T>>;
/// The immutable data associated with a given account.
#[pezpallet::storage]
pub(crate) type ImmutableDataOf<T: Config> = StorageMap<_, Identity, H160, ImmutableData>;
/// Evicted contracts that await child trie deletion.
///
/// Child trie deletion is a heavy operation depending on the amount of storage items
/// stored in said trie. Therefore this operation is performed lazily in `on_idle`.
#[pezpallet::storage]
pub(crate) type DeletionQueue<T: Config> = StorageMap<_, Twox64Concat, u32, TrieId>;
/// A pair of monotonic counters used to track the latest contract marked for deletion
/// and the latest deleted contract in queue.
#[pezpallet::storage]
pub(crate) type DeletionQueueCounter<T: Config> =
StorageValue<_, DeletionQueueManager<T>, ValueQuery>;
/// Map a Ethereum address to its original `AccountId32`.
///
/// When deriving a `H160` from an `AccountId32` we use a hash function. In order to
/// reconstruct the original account we need to store the reverse mapping here.
/// Register your `AccountId32` using [`Pezpallet::map_account`] in order to
/// use it with this pezpallet.
#[pezpallet::storage]
pub(crate) type OriginalAccount<T: Config> = StorageMap<_, Identity, H160, AccountId32>;
/// The current Ethereum block that is stored in the `on_finalize` method.
///
/// # Note
///
/// This could be further optimized into the future to store only the minimum
/// information needed to reconstruct the Ethereum block at the RPC level.
///
/// Since the block is convenient to have around, and the extra details are capped
/// by a few hashes and the vector of transaction hashes, we store the block here.
#[pezpallet::storage]
#[pezpallet::unbounded]
pub(crate) type EthereumBlock<T> = StorageValue<_, EthBlock, ValueQuery>;
/// Mapping for block number and hashes.
///
/// The maximum number of elements stored is capped by the block hash count `BLOCK_HASH_COUNT`.
#[pezpallet::storage]
pub(crate) type BlockHash<T: Config> =
StorageMap<_, Identity, BlockNumberFor<T>, H256, ValueQuery>;
/// The details needed to reconstruct the receipt info offchain.
///
/// This contains valuable information about the gas used by the transaction.
///
/// NOTE: The item is unbound and should therefore never be read on chain.
/// It could otherwise inflate the PoV size of a block.
#[pezpallet::storage]
#[pezpallet::unbounded]
pub(crate) type ReceiptInfoData<T: Config> = StorageValue<_, Vec<ReceiptGasInfo>, ValueQuery>;
/// Incremental ethereum block builder.
#[pezpallet::storage]
#[pezpallet::unbounded]
pub(crate) type EthBlockBuilderIR<T: Config> =
StorageValue<_, EthereumBlockBuilderIR<T>, ValueQuery>;
/// The first transaction and receipt of the ethereum block.
///
/// These values are moved out of the `EthBlockBuilderIR` to avoid serializing and
/// deserializing them on every transaction. Instead, they are loaded when needed.
#[pezpallet::storage]
#[pezpallet::unbounded]
pub(crate) type EthBlockBuilderFirstValues<T: Config> =
StorageValue<_, Option<(Vec<u8>, Vec<u8>)>, ValueQuery>;
/// Debugging settings that can be configured when DebugEnabled config is true.
#[pezpallet::storage]
pub(crate) type DebugSettingsOf<T: Config> = StorageValue<_, DebugSettings, ValueQuery>;
pub mod genesis {
use super::*;
use crate::evm::Bytes32;
/// Genesis configuration for contract-specific data.
#[derive(Clone, PartialEq, Debug, Default, serde::Serialize, serde::Deserialize)]
pub struct ContractData {
/// Contract code.
pub code: Vec<u8>,
/// Initial storage entries as 32-byte key/value pairs.
pub storage: alloc::collections::BTreeMap<Bytes32, Bytes32>,
}
/// Genesis configuration for a contract account.
#[derive(PartialEq, Default, Debug, Clone, serde::Serialize, serde::Deserialize)]
pub struct Account<T: Config> {
/// Contract address.
pub address: H160,
/// Contract balance.
#[serde(default)]
pub balance: U256,
/// Account nonce
#[serde(default)]
pub nonce: T::Nonce,
/// Contract-specific data (code and storage). None for EOAs.
#[serde(flatten, skip_serializing_if = "Option::is_none")]
pub contract_data: Option<ContractData>,
}
}
#[pezpallet::genesis_config]
#[derive(Debug, PartialEq, pezframe_support::DefaultNoBound)]
pub struct GenesisConfig<T: Config> {
/// List of native Bizinikiwi accounts (typically `AccountId32`) to be mapped at genesis
/// block, enabling them to interact with smart contracts.
#[serde(default, skip_serializing_if = "Vec::is_empty")]
pub mapped_accounts: Vec<T::AccountId>,
/// Account entries (both EOAs and contracts)
#[serde(default, skip_serializing_if = "Vec::is_empty")]
pub accounts: Vec<genesis::Account<T>>,
/// Optional debugging settings applied at genesis.
#[serde(default, skip_serializing_if = "Option::is_none")]
pub debug_settings: Option<DebugSettings>,
}
#[pezpallet::genesis_build]
impl<T: Config> BuildGenesisConfig for GenesisConfig<T> {
fn build(&self) {
use crate::{exec::Key, vm::ContractBlob};
use pezframe_support::traits::fungible::Mutate;
if !System::<T>::account_exists(&Pezpallet::<T>::account_id()) {
let _ = T::Currency::mint_into(
&Pezpallet::<T>::account_id(),
T::Currency::minimum_balance(),
);
}
for id in &self.mapped_accounts {
if let Err(err) = T::AddressMapper::map_no_deposit(id) {
log::error!(target: LOG_TARGET, "Failed to map account {id:?}: {err:?}");
}
}
let owner = Pezpallet::<T>::account_id();
for genesis::Account { address, balance, nonce, contract_data } in &self.accounts {
let account_id = T::AddressMapper::to_account_id(address);
if !System::<T>::account_exists(&account_id) {
let _ = T::Currency::mint_into(&account_id, T::Currency::minimum_balance());
}
pezframe_system::Account::<T>::mutate(&account_id, |info| {
info.nonce = (*nonce).into();
});
match contract_data {
None => {
AccountInfoOf::<T>::insert(
address,
AccountInfo { account_type: AccountType::EOA, dust: 0 },
);
},
Some(genesis::ContractData { code, storage }) => {
let blob = if code.starts_with(&polkavm_common::program::BLOB_MAGIC) {
ContractBlob::<T>::from_pvm_code( code.clone(), owner.clone()).inspect_err(|err| {
log::error!(target: LOG_TARGET, "Failed to create PVM ContractBlob for {address:?}: {err:?}");
})
} else {
ContractBlob::<T>::from_evm_runtime_code(code.clone(), account_id).inspect_err(|err| {
log::error!(target: LOG_TARGET, "Failed to create EVM ContractBlob for {address:?}: {err:?}");
})
};
let Ok(blob) = blob else {
continue;
};
let code_hash = *blob.code_hash();
let Ok(info) = <ContractInfo<T>>::new(&address, 0u32.into(), code_hash)
.inspect_err(|err| {
log::error!(target: LOG_TARGET, "Failed to create ContractInfo for {address:?}: {err:?}");
})
else {
continue;
};
AccountInfoOf::<T>::insert(
address,
AccountInfo { account_type: info.clone().into(), dust: 0 },
);
<PristineCode<T>>::insert(blob.code_hash(), code);
<CodeInfoOf<T>>::insert(blob.code_hash(), blob.code_info().clone());
for (k, v) in storage {
let _ = info.write(&Key::from_fixed(k.0), Some(v.0.to_vec()), None, false).inspect_err(|err| {
log::error!(target: LOG_TARGET, "Failed to write genesis storage for {address:?} at key {k:?}: {err:?}");
});
}
},
}
let _ = Pezpallet::<T>::set_evm_balance(address, *balance).inspect_err(|err| {
log::error!(target: LOG_TARGET, "Failed to set EVM balance for {address:?}: {err:?}");
});
}
// Build genesis block
block_storage::on_finalize_build_eth_block::<T>(
// Make sure to use the block number from storage instead of the hardcoded 0.
// This enables testing tools like anvil to customise the genesis block number.
pezframe_system::Pezpallet::<T>::block_number(),
);
// Set debug settings.
if let Some(settings) = self.debug_settings.as_ref() {
settings.write_to_storage::<T>()
}
}
}
#[pezpallet::hooks]
impl<T: Config> Hooks<BlockNumberFor<T>> for Pezpallet<T> {
fn on_idle(_block: BlockNumberFor<T>, limit: Weight) -> Weight {
let mut meter = WeightMeter::with_limit(limit);
ContractInfo::<T>::process_deletion_queue_batch(&mut meter);
meter.consumed()
}
fn on_initialize(_n: BlockNumberFor<T>) -> Weight {
// Kill related ethereum block storage items.
block_storage::on_initialize::<T>();
// Warm up the pezpallet account.
System::<T>::account_exists(&Pezpallet::<T>::account_id());
// Account for the fixed part of the costs incurred in `on_finalize`.
<T as Config>::WeightInfo::on_finalize_block_fixed()
}
fn on_finalize(block_number: BlockNumberFor<T>) {
// Build the ethereum block and place it in storage.
block_storage::on_finalize_build_eth_block::<T>(block_number);
}
fn integrity_test() {
assert!(T::ChainId::get() > 0, "ChainId must be greater than 0");
T::FeeInfo::integrity_test();
// The memory available in the block building runtime
let max_runtime_mem: u64 = T::RuntimeMemory::get().into();
// We only allow 50% of the runtime memory to be utilized by the contracts call
// stack, keeping the rest for other facilities, such as PoV, etc.
const TOTAL_MEMORY_DEVIDER: u64 = 2;
// Validators are configured to be able to use more memory than block builders. This is
// because in addition to `max_runtime_mem` they need to hold additional data in
// memory: PoV in multiple copies (1x encoded + 2x decoded) and all storage which
// includes emitted events. The assumption is that storage/events size
// can be a maximum of half of the validator runtime memory - max_runtime_mem.
let max_block_weight = T::BlockWeights::get()
.get(DispatchClass::Normal)
.max_total
.unwrap_or_else(|| T::BlockWeights::get().max_block);
let max_key_size: u64 =
Key::try_from_var(alloc::vec![0u8; limits::STORAGE_KEY_BYTES as usize])
.expect("Key of maximal size shall be created")
.hash()
.len()
.try_into()
.unwrap();
let max_immutable_key_size: u64 = T::AccountId::max_encoded_len().try_into().unwrap();
let max_immutable_size: u64 = max_block_weight
.checked_div_per_component(&<RuntimeCosts as gas::Token<T>>::weight(
&RuntimeCosts::SetImmutableData(limits::IMMUTABLE_BYTES),
))
.unwrap()
.saturating_mul(
u64::from(limits::IMMUTABLE_BYTES)
.saturating_add(max_immutable_key_size)
.into(),
);
let max_pvf_mem: u64 = T::PVFMemory::get().into();
let storage_size_limit = max_pvf_mem.saturating_sub(max_runtime_mem) / 2;
// We can use storage to store events using the available block ref_time with the
// `deposit_event` host function. The overhead of stored events, which is around 100B,
// is not taken into account to simplify calculations, as it does not change much.
let max_events_size = max_block_weight
.checked_div_per_component(
&(<RuntimeCosts as gas::Token<T>>::weight(&RuntimeCosts::DepositEvent {
num_topic: 0,
len: limits::EVENT_BYTES,
})
.saturating_add(<RuntimeCosts as gas::Token<T>>::weight(
&RuntimeCosts::HostFn,
))),
)
.unwrap()
.saturating_mul(limits::EVENT_BYTES.into());
assert!(
max_events_size < storage_size_limit,
"Maximal events size {} exceeds the events limit {}",
max_events_size,
storage_size_limit
);
// The incremental block builder uses 3 x maximum entry size for receipts and
// for transactions. Transactions are bounded to `MAX_TRANSACTION_PAYLOAD_SIZE`.
//
// To determine the maximum size of the receipts, we know the following:
// - (I) first receipt is stored into pezpallet storage and not given to the hasher until
// finalization.
// - (II) the hasher will not consume more memory than the receipts we are giving it.
// - (III) the hasher is capped by 3 x maximum entry for 3 or more transactions.
//
// # Case 1. One transaction with maximum receipts
//
// The worst case scenario for having one single transaction is for the transaction
// to emit the maximum receipt size (ie `max_events_size`). In this case,
// the maximum storage (and memory) consumed is bounded by `max_events_size` (II). The
// receipt is stored in pezpallet storage, and loaded from storage in the
// `on_finalize` hook (I).
//
// # Case 2. Two transactions
//
// The sum of the receipt size of both transactions cannot exceed `max_events_size`,
// otherwise one transaction will be reverted. From (II), the bytes utilized
// by the builder are capped to `max_events_size`.
//
// # Case 3. Three or more transactions
//
// Similar to the above case, the sum of all receipt size is bounded to
// `max_events_size`. Therefore, the bytes are capped to `max_events_size`.
//
// On average, a transaction could emit `max_events_size / num_tx`. The would
// consume `max_events_size / num_tx * 3` bytes, which is lower than
// `max_events_size` for more than 3 transactions.
//
// In practice, the builder will consume even lower amounts considering
// it is unlikely for a transaction to utilize all the weight of the block for events.
let max_eth_block_builder_bytes =
block_storage::block_builder_bytes_usage(max_events_size.try_into().unwrap());
log::debug!(
target: LOG_TARGET,
"Integrity check: max_eth_block_builder_bytes={} KB using max_events_size={} KB",
max_eth_block_builder_bytes / 1024,
max_events_size / 1024,
);
// Check that the configured memory limits fit into runtime memory.
//
// Dynamic allocations are not available, yet. Hence they are not taken into
// consideration here.
let memory_left = i128::from(max_runtime_mem)
.saturating_div(TOTAL_MEMORY_DEVIDER.into())
.saturating_sub(limits::MEMORY_REQUIRED.into())
.saturating_sub(max_eth_block_builder_bytes.into());
log::debug!(target: LOG_TARGET, "Integrity check: memory_left={} KB", memory_left / 1024);
assert!(
memory_left >= 0,
"Runtime does not have enough memory for current limits. Additional runtime memory required: {} KB",
memory_left.saturating_mul(TOTAL_MEMORY_DEVIDER.into()).abs() / 1024
);
// We can use storage to store items using the available block ref_time with the
// `set_storage` host function.
let max_storage_size = max_block_weight
.checked_div_per_component(
&<RuntimeCosts as gas::Token<T>>::weight(&RuntimeCosts::SetStorage {
new_bytes: limits::STORAGE_BYTES,
old_bytes: 0,
})
.saturating_mul(u64::from(limits::STORAGE_BYTES).saturating_add(max_key_size)),
)
.unwrap()
.saturating_add(max_immutable_size.into())
.saturating_add(max_eth_block_builder_bytes.into());
assert!(
max_storage_size < storage_size_limit,
"Maximal storage size {} exceeds the storage limit {}",
max_storage_size,
storage_size_limit
);
}
}
#[pezpallet::call]
impl<T: Config> Pezpallet<T> {
/// A raw EVM transaction, typically dispatched by an Ethereum JSON-RPC server.
///
/// # Parameters
///
/// * `payload`: The encoded [`crate::evm::TransactionSigned`].
///
/// # Note
///
/// This call cannot be dispatched directly; attempting to do so will result in a failed
/// transaction. It serves as a wrapper for an Ethereum transaction. When submitted, the
/// runtime converts it into a [`pezsp_runtime::generic::CheckedExtrinsic`] by recovering the
/// signer and validating the transaction.
#[allow(unused_variables)]
#[pezpallet::call_index(0)]
#[pezpallet::weight(Weight::MAX)]
pub fn eth_transact(origin: OriginFor<T>, payload: Vec<u8>) -> DispatchResultWithPostInfo {
Err(pezframe_system::Error::CallFiltered::<T>.into())
}
/// Makes a call to an account, optionally transferring some balance.
///
/// # Parameters
///
/// * `dest`: Address of the contract to call.
/// * `value`: The balance to transfer from the `origin` to `dest`.
/// * `gas_limit`: The gas limit enforced when executing the constructor.
/// * `storage_deposit_limit`: The maximum amount of balance that can be charged from the
/// caller to pay for the storage consumed.
/// * `data`: The input data to pass to the contract.
///
/// * If the account is a smart-contract account, the associated code will be
/// executed and any value will be transferred.
/// * If the account is a regular account, any value will be transferred.
/// * If no account exists and the call value is not less than `existential_deposit`,
/// a regular account will be created and any value will be transferred.
#[pezpallet::call_index(1)]
#[pezpallet::weight(<T as Config>::WeightInfo::call().saturating_add(*gas_limit))]
pub fn call(
origin: OriginFor<T>,
dest: H160,
#[pezpallet::compact] value: BalanceOf<T>,
gas_limit: Weight,
#[pezpallet::compact] storage_deposit_limit: BalanceOf<T>,
data: Vec<u8>,
) -> DispatchResultWithPostInfo {
Self::ensure_non_contract_if_signed(&origin)?;
let mut output = Self::bare_call(
origin,
dest,
Pezpallet::<T>::convert_native_to_evm(value),
gas_limit,
storage_deposit_limit,
data,
ExecConfig::new_bizinikiwi_tx(),
);
if let Ok(return_value) = &output.result {
if return_value.did_revert() {
output.result = Err(<Error<T>>::ContractReverted.into());
}
}
dispatch_result(output.result, output.gas_consumed, <T as Config>::WeightInfo::call())
}
/// Instantiates a contract from a previously deployed vm binary.
///
/// This function is identical to [`Self::instantiate_with_code`] but without the
/// code deployment step. Instead, the `code_hash` of an on-chain deployed vm binary
/// must be supplied.
#[pezpallet::call_index(2)]
#[pezpallet::weight(
<T as Config>::WeightInfo::instantiate(data.len() as u32).saturating_add(*gas_limit)
)]
pub fn instantiate(
origin: OriginFor<T>,
#[pezpallet::compact] value: BalanceOf<T>,
gas_limit: Weight,
#[pezpallet::compact] storage_deposit_limit: BalanceOf<T>,
code_hash: pezsp_core::H256,
data: Vec<u8>,
salt: Option<[u8; 32]>,
) -> DispatchResultWithPostInfo {
Self::ensure_non_contract_if_signed(&origin)?;
let data_len = data.len() as u32;
let mut output = Self::bare_instantiate(
origin,
Pezpallet::<T>::convert_native_to_evm(value),
gas_limit,
storage_deposit_limit,
Code::Existing(code_hash),
data,
salt,
ExecConfig::new_bizinikiwi_tx(),
);
if let Ok(retval) = &output.result {
if retval.result.did_revert() {
output.result = Err(<Error<T>>::ContractReverted.into());
}
}
dispatch_result(
output.result.map(|result| result.result),
output.gas_consumed,
<T as Config>::WeightInfo::instantiate(data_len),
)
}
/// Instantiates a new contract from the supplied `code` optionally transferring
/// some balance.
///
/// This dispatchable has the same effect as calling [`Self::upload_code`] +
/// [`Self::instantiate`]. Bundling them together provides efficiency gains. Please
/// also check the documentation of [`Self::upload_code`].
///
/// # Parameters
///
/// * `value`: The balance to transfer from the `origin` to the newly created contract.
/// * `gas_limit`: The gas limit enforced when executing the constructor.
/// * `storage_deposit_limit`: The maximum amount of balance that can be charged/reserved
/// from the caller to pay for the storage consumed.
/// * `code`: The contract code to deploy in raw bytes.
/// * `data`: The input data to pass to the contract constructor.
/// * `salt`: Used for the address derivation. If `Some` is supplied then `CREATE2`
/// semantics are used. If `None` then `CRATE1` is used.
///
///
/// Instantiation is executed as follows:
///
/// - The supplied `code` is deployed, and a `code_hash` is created for that code.
/// - If the `code_hash` already exists on the chain the underlying `code` will be shared.
/// - The destination address is computed based on the sender, code_hash and the salt.
/// - The smart-contract account is created at the computed address.
/// - The `value` is transferred to the new account.
/// - The `deploy` function is executed in the context of the newly-created account.
#[pezpallet::call_index(3)]
#[pezpallet::weight(
<T as Config>::WeightInfo::instantiate_with_code(code.len() as u32, data.len() as u32)
.saturating_add(*gas_limit)
)]
pub fn instantiate_with_code(
origin: OriginFor<T>,
#[pezpallet::compact] value: BalanceOf<T>,
gas_limit: Weight,
#[pezpallet::compact] storage_deposit_limit: BalanceOf<T>,
code: Vec<u8>,
data: Vec<u8>,
salt: Option<[u8; 32]>,
) -> DispatchResultWithPostInfo {
Self::ensure_non_contract_if_signed(&origin)?;
let code_len = code.len() as u32;
let data_len = data.len() as u32;
let mut output = Self::bare_instantiate(
origin,
Pezpallet::<T>::convert_native_to_evm(value),
gas_limit,
storage_deposit_limit,
Code::Upload(code),
data,
salt,
ExecConfig::new_bizinikiwi_tx(),
);
if let Ok(retval) = &output.result {
if retval.result.did_revert() {
output.result = Err(<Error<T>>::ContractReverted.into());
}
}
dispatch_result(
output.result.map(|result| result.result),
output.gas_consumed,
<T as Config>::WeightInfo::instantiate_with_code(code_len, data_len),
)
}
/// Same as [`Self::instantiate_with_code`], but intended to be dispatched **only**
/// by an EVM transaction through the EVM compatibility layer.
///
/// # Parameters
///
/// * `value`: The balance to transfer from the `origin` to the newly created contract.
/// * `gas_limit`: The gas limit enforced when executing the constructor.
/// * `storage_deposit_limit`: The maximum amount of balance that can be charged/reserved
/// from the caller to pay for the storage consumed.
/// * `code`: The contract code to deploy in raw bytes.
/// * `data`: The input data to pass to the contract constructor.
/// * `salt`: Used for the address derivation. If `Some` is supplied then `CREATE2`
/// semantics are used. If `None` then `CRATE1` is used.
/// * `transaction_encoded`: The RLP encoding of the signed Ethereum transaction,
/// represented as [crate::evm::TransactionSigned], provided by the Ethereum wallet. This
/// is used for building the Ethereum transaction root.
///
/// Calling this dispatchable ensures that the origin's nonce is bumped only once,
/// via the `CheckNonce` transaction extension. In contrast, [`Self::instantiate_with_code`]
/// also bumps the nonce after contract instantiation, since it may be invoked multiple
/// times within a batch call transaction.
#[pezpallet::call_index(10)]
#[pezpallet::weight(
<T as Config>::WeightInfo::eth_instantiate_with_code(code.len() as u32, data.len() as u32, Pezpallet::<T>::has_dust(*value).into())
.saturating_add(T::WeightInfo::on_finalize_block_per_tx(transaction_encoded.len() as u32))
.saturating_add(*gas_limit)
)]
pub fn eth_instantiate_with_code(
origin: OriginFor<T>,
value: U256,
gas_limit: Weight,
code: Vec<u8>,
data: Vec<u8>,
transaction_encoded: Vec<u8>,
effective_gas_price: U256,
encoded_len: u32,
) -> DispatchResultWithPostInfo {
let signer = Self::ensure_eth_signed(origin)?;
let origin = OriginFor::<T>::signed(signer.clone());
Self::ensure_non_contract_if_signed(&origin)?;
let mut call = Call::<T>::eth_instantiate_with_code {
value,
gas_limit,
code: code.clone(),
data: data.clone(),
transaction_encoded: transaction_encoded.clone(),
effective_gas_price,
encoded_len,
}
.into();
let info = T::FeeInfo::dispatch_info(&call);
let base_info = T::FeeInfo::base_dispatch_info(&mut call);
drop(call);
block_storage::with_ethereum_context::<T>(transaction_encoded, || {
let output = Self::bare_instantiate(
origin,
value,
gas_limit,
BalanceOf::<T>::max_value(),
Code::Upload(code),
data,
None,
ExecConfig::new_eth_tx(
effective_gas_price,
encoded_len,
base_info.total_weight(),
),
);
block_storage::EthereumCallResult::new::<T>(
signer,
output.map_result(|r| r.result),
base_info.call_weight,
encoded_len,
&info,
effective_gas_price,
)
})
}
/// Same as [`Self::call`], but intended to be dispatched **only**
/// by an EVM transaction through the EVM compatibility layer.
#[pezpallet::call_index(11)]
#[pezpallet::weight(
T::WeightInfo::eth_call(Pezpallet::<T>::has_dust(*value).into())
.saturating_add(*gas_limit)
.saturating_add(T::WeightInfo::on_finalize_block_per_tx(transaction_encoded.len() as u32))
)]
pub fn eth_call(
origin: OriginFor<T>,
dest: H160,
value: U256,
gas_limit: Weight,
data: Vec<u8>,
transaction_encoded: Vec<u8>,
effective_gas_price: U256,
encoded_len: u32,
) -> DispatchResultWithPostInfo {
let signer = Self::ensure_eth_signed(origin)?;
let origin = OriginFor::<T>::signed(signer.clone());
Self::ensure_non_contract_if_signed(&origin)?;
let mut call = Call::<T>::eth_call {
dest,
value,
gas_limit,
data: data.clone(),
transaction_encoded: transaction_encoded.clone(),
effective_gas_price,
encoded_len,
}
.into();
let info = T::FeeInfo::dispatch_info(&call);
let base_info = T::FeeInfo::base_dispatch_info(&mut call);
drop(call);
block_storage::with_ethereum_context::<T>(transaction_encoded, || {
let output = Self::bare_call(
origin,
dest,
value,
gas_limit,
BalanceOf::<T>::max_value(),
data,
ExecConfig::new_eth_tx(
effective_gas_price,
encoded_len,
base_info.total_weight(),
),
);
block_storage::EthereumCallResult::new::<T>(
signer,
output,
base_info.call_weight,
encoded_len,
&info,
effective_gas_price,
)
})
}
/// Executes a Bizinikiwi runtime call from an Ethereum transaction.
///
/// This dispatchable is intended to be called **only** through the EVM compatibility
/// layer. The provided call will be dispatched using `RawOrigin::Signed`.
///
/// # Parameters
///
/// * `origin`: Must be an [`Origin::EthTransaction`] origin.
/// * `call`: The Bizinikiwi runtime call to execute.
/// * `transaction_encoded`: The RLP encoding of the Ethereum transaction,
#[pezpallet::call_index(12)]
#[pezpallet::weight(T::WeightInfo::eth_bizinikiwi_call(transaction_encoded.len() as u32).saturating_add(call.get_dispatch_info().call_weight))]
pub fn eth_bizinikiwi_call(
origin: OriginFor<T>,
call: Box<<T as Config>::RuntimeCall>,
transaction_encoded: Vec<u8>,
) -> DispatchResultWithPostInfo {
// Note that the inner dispatch uses `RawOrigin::Signed`, which cannot
// re-enter `eth_bizinikiwi_call` (which requires `Origin::EthTransaction`).
let signer = Self::ensure_eth_signed(origin)?;
let weight_overhead =
T::WeightInfo::eth_bizinikiwi_call(transaction_encoded.len() as u32);
block_storage::with_ethereum_context::<T>(transaction_encoded, || {
let call_weight = call.get_dispatch_info().call_weight;
let mut call_result = call.dispatch(RawOrigin::Signed(signer).into());
// Add extrinsic_overhead to the actual weight in PostDispatchInfo
match &mut call_result {
Ok(post_info) | Err(DispatchErrorWithPostInfo { post_info, .. }) => {
post_info.actual_weight = Some(
post_info
.actual_weight
.unwrap_or_else(|| call_weight)
.saturating_add(weight_overhead),
);
},
}
// Return zero EVM gas (Bizinikiwi dispatch, not EVM contract call).
// Actual weight is in `post_info.actual_weight`.
block_storage::EthereumCallResult {
receipt_gas_info: ReceiptGasInfo::default(),
result: call_result,
}
})
}
/// Upload new `code` without instantiating a contract from it.
///
/// If the code does not already exist a deposit is reserved from the caller
/// The size of the reserve depends on the size of the supplied `code`.
///
/// # Note
///
/// Anyone can instantiate a contract from any uploaded code and thus prevent its removal.
/// To avoid this situation a constructor could employ access control so that it can
/// only be instantiated by permissioned entities. The same is true when uploading
/// through [`Self::instantiate_with_code`].
///
/// If the refcount of the code reaches zero after terminating the last contract that
/// references this code, the code will be removed automatically.
#[pezpallet::call_index(4)]
#[pezpallet::weight(<T as Config>::WeightInfo::upload_code(code.len() as u32))]
pub fn upload_code(
origin: OriginFor<T>,
code: Vec<u8>,
#[pezpallet::compact] storage_deposit_limit: BalanceOf<T>,
) -> DispatchResult {
Self::ensure_non_contract_if_signed(&origin)?;
Self::bare_upload_code(origin, code, storage_deposit_limit).map(|_| ())
}
/// Remove the code stored under `code_hash` and refund the deposit to its owner.
///
/// A code can only be removed by its original uploader (its owner) and only if it is
/// not used by any contract.
#[pezpallet::call_index(5)]
#[pezpallet::weight(<T as Config>::WeightInfo::remove_code())]
pub fn remove_code(
origin: OriginFor<T>,
code_hash: pezsp_core::H256,
) -> DispatchResultWithPostInfo {
let origin = ensure_signed(origin)?;
<ContractBlob<T>>::remove(&origin, code_hash)?;
// we waive the fee because removing unused code is beneficial
Ok(Pays::No.into())
}
/// Privileged function that changes the code of an existing contract.
///
/// This takes care of updating refcounts and all other necessary operations. Returns
/// an error if either the `code_hash` or `dest` do not exist.
///
/// # Note
///
/// This does **not** change the address of the contract in question. This means
/// that the contract address is no longer derived from its code hash after calling
/// this dispatchable.
#[pezpallet::call_index(6)]
#[pezpallet::weight(<T as Config>::WeightInfo::set_code())]
pub fn set_code(
origin: OriginFor<T>,
dest: H160,
code_hash: pezsp_core::H256,
) -> DispatchResult {
ensure_root(origin)?;
<AccountInfoOf<T>>::try_mutate(&dest, |account| {
let Some(account) = account else {
return Err(<Error<T>>::ContractNotFound.into());
};
let AccountType::Contract(ref mut contract) = account.account_type else {
return Err(<Error<T>>::ContractNotFound.into());
};
<CodeInfo<T>>::increment_refcount(code_hash)?;
let _ = <CodeInfo<T>>::decrement_refcount(contract.code_hash)?;
contract.code_hash = code_hash;
Ok(())
})
}
/// Register the callers account id so that it can be used in contract interactions.
///
/// This will error if the origin is already mapped or is a eth native `Address20`. It will
/// take a deposit that can be released by calling [`Self::unmap_account`].
#[pezpallet::call_index(7)]
#[pezpallet::weight(<T as Config>::WeightInfo::map_account())]
pub fn map_account(origin: OriginFor<T>) -> DispatchResult {
Self::ensure_non_contract_if_signed(&origin)?;
let origin = ensure_signed(origin)?;
T::AddressMapper::map(&origin)
}
/// Unregister the callers account id in order to free the deposit.
///
/// There is no reason to ever call this function other than freeing up the deposit.
/// This is only useful when the account should no longer be used.
#[pezpallet::call_index(8)]
#[pezpallet::weight(<T as Config>::WeightInfo::unmap_account())]
pub fn unmap_account(origin: OriginFor<T>) -> DispatchResult {
let origin = ensure_signed(origin)?;
T::AddressMapper::unmap(&origin)
}
/// Dispatch an `call` with the origin set to the callers fallback address.
///
/// Every `AccountId32` can control its corresponding fallback account. The fallback account
/// is the `AccountId20` with the last 12 bytes set to `0xEE`. This is essentially a
/// recovery function in case an `AccountId20` was used without creating a mapping first.
#[pezpallet::call_index(9)]
#[pezpallet::weight({
let dispatch_info = call.get_dispatch_info();
(
<T as Config>::WeightInfo::dispatch_as_fallback_account().saturating_add(dispatch_info.call_weight),
dispatch_info.class
)
})]
pub fn dispatch_as_fallback_account(
origin: OriginFor<T>,
call: Box<<T as Config>::RuntimeCall>,
) -> DispatchResultWithPostInfo {
Self::ensure_non_contract_if_signed(&origin)?;
let origin = ensure_signed(origin)?;
let unmapped_account =
T::AddressMapper::to_fallback_account_id(&T::AddressMapper::to_address(&origin));
call.dispatch(RawOrigin::Signed(unmapped_account).into())
}
}
}
/// Create a dispatch result reflecting the amount of consumed gas.
fn dispatch_result<R>(
result: Result<R, DispatchError>,
gas_consumed: Weight,
base_weight: Weight,
) -> DispatchResultWithPostInfo {
let post_info = PostDispatchInfo {
actual_weight: Some(gas_consumed.saturating_add(base_weight)),
pays_fee: Default::default(),
};
result
.map(|_| post_info)
.map_err(|e| DispatchErrorWithPostInfo { post_info, error: e })
}
impl<T: Config> Pezpallet<T> {
/// A generalized version of [`Self::call`].
///
/// Identical to [`Self::call`] but tailored towards being called by other code within the
/// runtime as opposed to from an extrinsic. It returns more information and allows the
/// enablement of features that are not suitable for an extrinsic (debugging, event
/// collection).
pub fn bare_call(
origin: OriginFor<T>,
dest: H160,
evm_value: U256,
gas_limit: Weight,
storage_deposit_limit: BalanceOf<T>,
data: Vec<u8>,
exec_config: ExecConfig<T>,
) -> ContractResult<ExecReturnValue, BalanceOf<T>> {
let mut gas_meter = GasMeter::new(gas_limit);
let mut storage_deposit = Default::default();
let try_call = || {
let origin = ExecOrigin::from_runtime_origin(origin)?;
let mut storage_meter = StorageMeter::new(storage_deposit_limit);
let result = ExecStack::<T, ContractBlob<T>>::run_call(
origin.clone(),
dest,
&mut gas_meter,
&mut storage_meter,
evm_value,
data,
&exec_config,
)?;
storage_deposit =
storage_meter.try_into_deposit(&origin, &exec_config).inspect_err(|err| {
log::debug!(target: LOG_TARGET, "Failed to transfer deposit: {err:?}");
})?;
Ok(result)
};
let result = Self::run_guarded(try_call);
ContractResult {
result: result.map_err(|r| r.error),
gas_consumed: gas_meter.gas_consumed(),
gas_required: gas_meter.gas_required(),
storage_deposit,
}
}
/// Prepare a dry run for the given account.
///
///
/// This function is public because it is called by the runtime API implementation
/// (see `impl_runtime_apis_plus_revive`).
pub fn prepare_dry_run(account: &T::AccountId) {
// Bump the nonce to simulate what would happen
// `pre-dispatch` if the transaction was executed.
pezframe_system::Pezpallet::<T>::inc_account_nonce(account);
}
/// A generalized version of [`Self::instantiate`] or [`Self::instantiate_with_code`].
///
/// Identical to [`Self::instantiate`] or [`Self::instantiate_with_code`] but tailored towards
/// being called by other code within the runtime as opposed to from an extrinsic. It returns
/// more information to the caller useful to estimate the cost of the operation.
pub fn bare_instantiate(
origin: OriginFor<T>,
evm_value: U256,
gas_limit: Weight,
mut storage_deposit_limit: BalanceOf<T>,
code: Code,
data: Vec<u8>,
salt: Option<[u8; 32]>,
exec_config: ExecConfig<T>,
) -> ContractResult<InstantiateReturnValue, BalanceOf<T>> {
let mut gas_meter = GasMeter::new(gas_limit);
let mut storage_deposit = Default::default();
let try_instantiate = || {
let instantiate_account = T::InstantiateOrigin::ensure_origin(origin.clone())?;
if_tracing(|t| t.instantiate_code(&code, salt.as_ref()));
let (executable, upload_deposit) = match code {
Code::Upload(code) if code.starts_with(&polkavm_common::program::BLOB_MAGIC) => {
let upload_account = T::UploadOrigin::ensure_origin(origin)?;
let (executable, upload_deposit) = Self::try_upload_code(
upload_account,
code,
BytecodeType::Pvm,
storage_deposit_limit,
&exec_config,
)?;
storage_deposit_limit.saturating_reduce(upload_deposit);
(executable, upload_deposit)
},
Code::Upload(code) =>
if T::AllowEVMBytecode::get() {
ensure!(data.is_empty(), <Error<T>>::EvmConstructorNonEmptyData);
let origin = T::UploadOrigin::ensure_origin(origin)?;
let executable = ContractBlob::from_evm_init_code(code, origin)?;
(executable, Default::default())
} else {
return Err(<Error<T>>::CodeRejected.into());
},
Code::Existing(code_hash) => {
let executable = ContractBlob::from_storage(code_hash, &mut gas_meter)?;
ensure!(executable.code_info().is_pvm(), <Error<T>>::EvmConstructedFromHash);
(executable, Default::default())
},
};
let instantiate_origin = ExecOrigin::from_account_id(instantiate_account.clone());
let mut storage_meter = StorageMeter::new(storage_deposit_limit);
let result = ExecStack::<T, ContractBlob<T>>::run_instantiate(
instantiate_account,
executable,
&mut gas_meter,
&mut storage_meter,
evm_value,
data,
salt.as_ref(),
&exec_config,
);
storage_deposit = storage_meter
.try_into_deposit(&instantiate_origin, &exec_config)?
.saturating_add(&StorageDeposit::Charge(upload_deposit));
result
};
let output = Self::run_guarded(try_instantiate);
ContractResult {
result: output
.map(|(addr, result)| InstantiateReturnValue { result, addr })
.map_err(|e| e.error),
gas_consumed: gas_meter.gas_consumed(),
gas_required: gas_meter.gas_required(),
storage_deposit,
}
}
/// Dry-run Ethereum calls.
///
/// # Parameters
///
/// - `tx`: The Ethereum transaction to simulate.
pub fn dry_run_eth_transact(
mut tx: GenericTransaction,
dry_run_config: DryRunConfig<<<T as Config>::Time as Time>::Moment>,
) -> Result<EthTransactInfo<BalanceOf<T>>, EthTransactError>
where
T::Nonce: Into<U256>,
CallOf<T>: SetWeightLimit,
{
log::debug!(target: LOG_TARGET, "dry_run_eth_transact: {tx:?}");
let origin = T::AddressMapper::to_account_id(&tx.from.unwrap_or_default());
Self::prepare_dry_run(&origin);
let base_fee = Self::evm_base_fee();
let effective_gas_price = tx.effective_gas_price(base_fee).unwrap_or(base_fee);
if effective_gas_price < base_fee {
Err(EthTransactError::Message(format!(
"Effective gas price {effective_gas_price:?} lower than base fee {base_fee:?}"
)))?;
}
if tx.nonce.is_none() {
tx.nonce = Some(<System<T>>::account_nonce(&origin).into());
}
if tx.chain_id.is_none() {
tx.chain_id = Some(T::ChainId::get().into());
}
if tx.gas_price.is_none() {
tx.gas_price = Some(effective_gas_price);
}
if tx.max_priority_fee_per_gas.is_none() {
tx.max_priority_fee_per_gas = Some(effective_gas_price);
}
if tx.max_fee_per_gas.is_none() {
tx.max_fee_per_gas = Some(effective_gas_price);
}
let gas = tx.gas;
if tx.gas.is_none() {
tx.gas = Some(Self::evm_block_gas_limit());
}
if tx.r#type.is_none() {
tx.r#type = Some(TYPE_EIP1559.into());
}
// Store values before moving the tx
let value = tx.value.unwrap_or_default();
let input = tx.input.clone().to_vec();
let from = tx.from;
let to = tx.to;
// we need to parse the weight from the transaction so that it is run
// using the exact weight limit passed by the eth wallet
let mut call_info = create_call::<T>(tx, None, false)
.map_err(|err| EthTransactError::Message(format!("Invalid call: {err:?}")))?;
// the dry-run might leave out certain fields
// in those cases we skip the check that the caller has enough balance
// to pay for the fees
let exec_config = {
let base_info = T::FeeInfo::base_dispatch_info(&mut call_info.call);
ExecConfig::new_eth_tx(
effective_gas_price,
call_info.encoded_len,
base_info.total_weight(),
)
.with_dry_run(dry_run_config)
};
// emulate transaction behavior
let fees = call_info.tx_fee.saturating_add(call_info.storage_deposit);
if let Some(from) = &from {
let fees = if gas.is_some() { fees } else { Zero::zero() };
let balance = Self::evm_balance(from);
if balance < Pezpallet::<T>::convert_native_to_evm(fees).saturating_add(value) {
return Err(EthTransactError::Message(format!(
"insufficient funds for gas * price + value ({fees:?}): address {from:?} have {balance:?} (supplied gas {gas:?})",
)));
}
}
// the deposit is done when the transaction is transformed from an `eth_transact`
// we emulate this behavior for the dry-run here
T::FeeInfo::deposit_txfee(T::Currency::issue(fees));
let extract_error = |err| {
if err == Error::<T>::StorageDepositNotEnoughFunds.into() {
Err(EthTransactError::Message(format!("Not enough gas supplied: {err:?}")))
} else {
Err(EthTransactError::Message(format!("failed to run contract: {err:?}")))
}
};
// Dry run the call
let mut dry_run = match to {
// A contract call.
Some(dest) => {
if dest == RUNTIME_PALLETS_ADDR {
let Ok(dispatch_call) = <CallOf<T>>::decode(&mut &input[..]) else {
return Err(EthTransactError::Message(format!(
"Failed to decode pezpallet-call {input:?}"
)));
};
if let Err(result) =
dispatch_call.clone().dispatch(RawOrigin::Signed(origin).into())
{
return Err(EthTransactError::Message(format!(
"Failed to dispatch call: {:?}",
result.error,
)));
};
Default::default()
} else {
// Dry run the call.
let result = crate::Pezpallet::<T>::bare_call(
OriginFor::<T>::signed(origin),
dest,
value,
call_info.weight_limit,
BalanceOf::<T>::max_value(),
input.clone(),
exec_config,
);
let data = match result.result {
Ok(return_value) => {
if return_value.did_revert() {
return Err(EthTransactError::Data(return_value.data));
}
return_value.data
},
Err(err) => {
log::debug!(target: LOG_TARGET, "Failed to execute call: {err:?}");
return extract_error(err);
},
};
EthTransactInfo {
gas_required: result.gas_required,
storage_deposit: result.storage_deposit.charge_or_zero(),
data,
eth_gas: Default::default(),
}
}
},
// A contract deployment
None => {
// Extract code and data from the input.
let (code, data) = if input.starts_with(&polkavm_common::program::BLOB_MAGIC) {
extract_code_and_data(&input).unwrap_or_else(|| (input, Default::default()))
} else {
(input, vec![])
};
// Dry run the call.
let result = crate::Pezpallet::<T>::bare_instantiate(
OriginFor::<T>::signed(origin),
value,
call_info.weight_limit,
BalanceOf::<T>::max_value(),
Code::Upload(code.clone()),
data.clone(),
None,
exec_config,
);
let returned_data = match result.result {
Ok(return_value) => {
if return_value.result.did_revert() {
return Err(EthTransactError::Data(return_value.result.data));
}
return_value.result.data
},
Err(err) => {
log::debug!(target: LOG_TARGET, "Failed to instantiate: {err:?}");
return extract_error(err);
},
};
EthTransactInfo {
gas_required: result.gas_required,
storage_deposit: result.storage_deposit.charge_or_zero(),
data: returned_data,
eth_gas: Default::default(),
}
},
};
// replace the weight passed in the transaction with the dry_run result
call_info.call.set_weight_limit(dry_run.gas_required);
// we notify the wallet that the tx would not fit
let total_weight = T::FeeInfo::dispatch_info(&call_info.call).total_weight();
let max_weight = Self::evm_max_extrinsic_weight();
if total_weight.any_gt(max_weight) {
Err(EthTransactError::Message(format!(
"\
The transaction consumes more than the allowed weight. \
needed={total_weight} \
allowed={max_weight} \
overweight_by={}\
",
total_weight.saturating_sub(max_weight),
)))?;
}
// not enough gas supplied to pay for both the tx fees and the storage deposit
let transaction_fee = T::FeeInfo::tx_fee(call_info.encoded_len, &call_info.call);
let available_fee = T::FeeInfo::remaining_txfee();
if transaction_fee > available_fee {
Err(EthTransactError::Message(format!(
"Not enough gas supplied: Off by: {:?}",
call_info.tx_fee.saturating_sub(available_fee),
)))?;
}
// We add `1` to account for the potential rounding error of the multiplication.
// Returning a larger value here just increases the the pre-dispatch weight.
let eth_gas: U256 = T::FeeInfo::next_fee_multiplier_reciprocal()
.saturating_mul_int(transaction_fee.saturating_add(dry_run.storage_deposit))
.saturating_add(1_u32.into())
.into();
log::debug!(target: LOG_TARGET, "\
dry_run_eth_transact: \
weight_limit={} \
total_weight={total_weight} \
max_weight={max_weight} \
weight_left={} \
eth_gas={eth_gas}) \
encoded_len={} \
tx_fee={transaction_fee:?} \
storage_deposit={:?}\
",
dry_run.gas_required,
max_weight.saturating_sub(total_weight),
call_info.encoded_len,
dry_run.storage_deposit,
);
dry_run.eth_gas = eth_gas;
Ok(dry_run)
}
/// Get the balance with EVM decimals of the given `address`.
///
/// Returns the spendable balance excluding the existential deposit.
pub fn evm_balance(address: &H160) -> U256 {
let balance = AccountInfo::<T>::balance_of((*address).into());
Self::convert_native_to_evm(balance)
}
/// Get the current Ethereum block from storage.
pub fn eth_block() -> EthBlock {
EthereumBlock::<T>::get()
}
/// Convert the Ethereum block number into the Ethereum block hash.
///
/// # Note
///
/// The Ethereum block number is identical to the Bizinikiwi block number.
/// If the provided block number is outside of the pruning None is returned.
pub fn eth_block_hash_from_number(number: U256) -> Option<H256> {
let number = BlockNumberFor::<T>::try_from(number).ok()?;
let hash = <BlockHash<T>>::get(number);
if hash == H256::zero() {
None
} else {
Some(hash)
}
}
/// The details needed to reconstruct the receipt information offchain.
pub fn eth_receipt_data() -> Vec<ReceiptGasInfo> {
ReceiptInfoData::<T>::get()
}
/// Set the EVM balance of an account.
///
/// The account's total balance becomes the EVM value plus the existential deposit,
/// consistent with `evm_balance` which returns the spendable balance excluding the existential
/// deposit.
pub fn set_evm_balance(address: &H160, evm_value: U256) -> Result<(), Error<T>> {
let (balance, dust) = Self::new_balance_with_dust(evm_value)
.map_err(|_| <Error<T>>::BalanceConversionFailed)?;
let account_id = T::AddressMapper::to_account_id(&address);
T::Currency::set_balance(&account_id, balance);
AccountInfoOf::<T>::mutate(&address, |account| {
if let Some(account) = account {
account.dust = dust;
} else {
*account = Some(AccountInfo { dust, ..Default::default() });
}
});
Ok(())
}
/// Construct native balance from EVM balance.
///
/// Adds the existential deposit and returns the native balance plus the dust.
pub fn new_balance_with_dust(
evm_value: U256,
) -> Result<(BalanceOf<T>, u32), BalanceConversionError> {
let ed = T::Currency::minimum_balance();
let balance_with_dust = BalanceWithDust::<BalanceOf<T>>::from_value::<T>(evm_value)?;
let (value, dust) = balance_with_dust.deconstruct();
Ok((ed.saturating_add(value), dust))
}
/// Get the nonce for the given `address`.
pub fn evm_nonce(address: &H160) -> u32
where
T::Nonce: Into<u32>,
{
let account = T::AddressMapper::to_account_id(&address);
System::<T>::account_nonce(account).into()
}
/// Get the block gas limit.
pub fn evm_block_gas_limit() -> U256 {
let max_block_weight = T::BlockWeights::get()
.get(DispatchClass::Normal)
.max_total
.unwrap_or_else(|| T::BlockWeights::get().max_block);
let length_fee = T::FeeInfo::next_fee_multiplier_reciprocal().saturating_mul_int(
T::FeeInfo::length_to_fee(*T::BlockLength::get().max.get(DispatchClass::Normal)),
);
Self::evm_gas_from_weight(max_block_weight).saturating_add(length_fee.into())
}
/// The maximum weight an `eth_transact` is allowed to consume.
pub fn evm_max_extrinsic_weight() -> Weight {
let factor = <T as Config>::MaxEthExtrinsicWeight::get();
let max_weight = <T as pezframe_system::Config>::BlockWeights::get()
.get(DispatchClass::Normal)
.max_extrinsic
.unwrap_or_else(|| <T as pezframe_system::Config>::BlockWeights::get().max_block);
Weight::from_parts(
factor.saturating_mul_int(max_weight.ref_time()),
factor.saturating_mul_int(max_weight.proof_size()),
)
}
/// Get the base gas price.
pub fn evm_base_fee() -> U256 {
let multiplier = T::FeeInfo::next_fee_multiplier();
multiplier.saturating_mul_int::<u128>(T::NativeToEthRatio::get().into()).into()
}
/// Build an EVM tracer from the given tracer type.
pub fn evm_tracer(tracer_type: TracerType) -> Tracer<T>
where
T::Nonce: Into<u32>,
{
match tracer_type {
TracerType::CallTracer(config) => CallTracer::new(
config.unwrap_or_default(),
Self::evm_gas_from_weight as fn(Weight) -> U256,
)
.into(),
TracerType::PrestateTracer(config) =>
PrestateTracer::new(config.unwrap_or_default()).into(),
}
}
/// A generalized version of [`Self::upload_code`].
///
/// It is identical to [`Self::upload_code`] and only differs in the information it returns.
pub fn bare_upload_code(
origin: OriginFor<T>,
code: Vec<u8>,
storage_deposit_limit: BalanceOf<T>,
) -> CodeUploadResult<BalanceOf<T>> {
let origin = T::UploadOrigin::ensure_origin(origin)?;
let bytecode_type = if code.starts_with(&polkavm_common::program::BLOB_MAGIC) {
BytecodeType::Pvm
} else {
if !T::AllowEVMBytecode::get() {
return Err(<Error<T>>::CodeRejected.into());
}
BytecodeType::Evm
};
let (module, deposit) = Self::try_upload_code(
origin,
code,
bytecode_type,
storage_deposit_limit,
&ExecConfig::new_bizinikiwi_tx(),
)?;
Ok(CodeUploadReturnValue { code_hash: *module.code_hash(), deposit })
}
/// Query storage of a specified contract under a specified key.
pub fn get_storage(address: H160, key: [u8; 32]) -> GetStorageResult {
let contract_info =
AccountInfo::<T>::load_contract(&address).ok_or(ContractAccessError::DoesntExist)?;
let maybe_value = contract_info.read(&Key::from_fixed(key));
Ok(maybe_value)
}
/// Get the immutable data of a specified contract.
///
/// Returns `None` if the contract does not exist or has no immutable data.
pub fn get_immutables(address: H160) -> Option<ImmutableData> {
let immutable_data = <ImmutableDataOf<T>>::get(address);
immutable_data
}
/// Sets immutable data of a contract
///
/// Returns an error if the contract does not exist.
///
/// # Warning
///
/// Does not collect any storage deposit. Not safe to be called by user controlled code.
pub fn set_immutables(address: H160, data: ImmutableData) -> Result<(), ContractAccessError> {
AccountInfo::<T>::load_contract(&address).ok_or(ContractAccessError::DoesntExist)?;
<ImmutableDataOf<T>>::insert(address, data);
Ok(())
}
/// Query storage of a specified contract under a specified variable-sized key.
pub fn get_storage_var_key(address: H160, key: Vec<u8>) -> GetStorageResult {
let contract_info =
AccountInfo::<T>::load_contract(&address).ok_or(ContractAccessError::DoesntExist)?;
let maybe_value = contract_info.read(
&Key::try_from_var(key)
.map_err(|_| ContractAccessError::KeyDecodingFailed)?
.into(),
);
Ok(maybe_value)
}
/// Convert a native balance to EVM balance.
pub fn convert_native_to_evm(value: impl Into<BalanceWithDust<BalanceOf<T>>>) -> U256 {
let (value, dust) = value.into().deconstruct();
value
.into()
.saturating_mul(T::NativeToEthRatio::get().into())
.saturating_add(dust.into())
}
/// Set storage of a specified contract under a specified key.
///
/// If the `value` is `None`, the storage entry is deleted.
///
/// Returns an error if the contract does not exist or if the write operation fails.
///
/// # Warning
///
/// Does not collect any storage deposit. Not safe to be called by user controlled code.
pub fn set_storage(address: H160, key: [u8; 32], value: Option<Vec<u8>>) -> SetStorageResult {
let contract_info =
AccountInfo::<T>::load_contract(&address).ok_or(ContractAccessError::DoesntExist)?;
contract_info
.write(&Key::from_fixed(key), value, None, false)
.map_err(ContractAccessError::StorageWriteFailed)
}
/// Set the storage of a specified contract under a specified variable-sized key.
///
/// If the `value` is `None`, the storage entry is deleted.
///
/// Returns an error if the contract does not exist, if the key decoding fails,
/// or if the write operation fails.
///
/// # Warning
///
/// Does not collect any storage deposit. Not safe to be called by user controlled code.
pub fn set_storage_var_key(
address: H160,
key: Vec<u8>,
value: Option<Vec<u8>>,
) -> SetStorageResult {
let contract_info =
AccountInfo::<T>::load_contract(&address).ok_or(ContractAccessError::DoesntExist)?;
contract_info
.write(
&Key::try_from_var(key)
.map_err(|_| ContractAccessError::KeyDecodingFailed)?
.into(),
value,
None,
false,
)
.map_err(ContractAccessError::StorageWriteFailed)
}
/// Pezpallet account, used to hold funds for contracts upload deposit.
pub fn account_id() -> T::AccountId {
use pezframe_support::PalletId;
use pezsp_runtime::traits::AccountIdConversion;
PalletId(*b"py/reviv").into_account_truncating()
}
/// The address of the validator that produced the current block.
pub fn block_author() -> H160 {
use pezframe_support::traits::FindAuthor;
let digest = <pezframe_system::Pezpallet<T>>::digest();
let pre_runtime_digests = digest.logs.iter().filter_map(|d| d.as_pre_runtime());
T::FindAuthor::find_author(pre_runtime_digests)
.map(|account_id| T::AddressMapper::to_address(&account_id))
.unwrap_or_default()
}
/// Returns the code at `address`.
///
/// This takes pre-compiles into account.
pub fn code(address: &H160) -> Vec<u8> {
use precompiles::{All, Precompiles};
if let Some(code) = <All<T>>::code(address.as_fixed_bytes()) {
return code.into();
}
AccountInfo::<T>::load_contract(&address)
.and_then(|contract| <PristineCode<T>>::get(contract.code_hash))
.map(|code| code.into())
.unwrap_or_default()
}
/// Uploads new code and returns the Vm binary contract blob and deposit amount collected.
pub fn try_upload_code(
origin: T::AccountId,
code: Vec<u8>,
code_type: BytecodeType,
storage_deposit_limit: BalanceOf<T>,
exec_config: &ExecConfig<T>,
) -> Result<(ContractBlob<T>, BalanceOf<T>), DispatchError> {
let mut module = match code_type {
BytecodeType::Pvm => ContractBlob::from_pvm_code(code, origin)?,
BytecodeType::Evm => ContractBlob::from_evm_runtime_code(code, origin)?,
};
let deposit = module.store_code(exec_config, None)?;
ensure!(storage_deposit_limit >= deposit, <Error<T>>::StorageDepositLimitExhausted);
Ok((module, deposit))
}
/// Run the supplied function `f` if no other instance of this pezpallet is on the stack.
fn run_guarded<R, F: FnOnce() -> Result<R, ExecError>>(f: F) -> Result<R, ExecError> {
executing_contract::using_once(&mut false, || {
executing_contract::with(|f| {
// Fail if already entered contract execution
if *f {
return Err(())
}
// We are entering contract execution
*f = true;
Ok(())
})
.expect("Returns `Ok` if called within `using_once`. It is syntactically obvious that this is the case; qed")
.map_err(|_| <Error<T>>::ReenteredPallet.into())
.map(|_| f())
.and_then(|r| r)
})
}
/// Convert a weight to a gas value.
pub fn evm_gas_from_weight(weight: Weight) -> U256 {
T::FeeInfo::weight_to_fee(&weight, Combinator::Max).into()
}
/// Transfer a deposit from some account to another.
///
/// `from` is usually the transaction origin and `to` a contract or
/// the pallets own account.
fn charge_deposit(
hold_reason: Option<HoldReason>,
from: &T::AccountId,
to: &T::AccountId,
amount: BalanceOf<T>,
exec_config: &ExecConfig<T>,
) -> DispatchResult {
use pezframe_support::traits::tokens::{Fortitude, Precision, Preservation};
if amount.is_zero() {
return Ok(());
}
match (exec_config.collect_deposit_from_hold.is_some(), hold_reason) {
(true, hold_reason) => {
T::FeeInfo::withdraw_txfee(amount)
.ok_or(())
.and_then(|credit| T::Currency::resolve(to, credit).map_err(|_| ()))
.and_then(|_| {
if let Some(hold_reason) = hold_reason {
T::Currency::hold(&hold_reason.into(), to, amount).map_err(|_| ())?;
}
Ok(())
})
.map_err(|_| Error::<T>::StorageDepositNotEnoughFunds)?;
},
(false, Some(hold_reason)) => {
T::Currency::transfer_and_hold(
&hold_reason.into(),
from,
to,
amount,
Precision::Exact,
Preservation::Preserve,
Fortitude::Polite,
)
.map_err(|_| Error::<T>::StorageDepositNotEnoughFunds)?;
},
(false, None) => {
T::Currency::transfer(from, to, amount, Preservation::Preserve)
.map_err(|_| Error::<T>::StorageDepositNotEnoughFunds)?;
},
}
Ok(())
}
/// Refund a deposit.
///
/// `to` is usually the transaction origin and `from` a contract or
/// the pallets own account.
fn refund_deposit(
hold_reason: HoldReason,
from: &T::AccountId,
to: &T::AccountId,
amount: BalanceOf<T>,
exec_config: Option<&ExecConfig<T>>,
) -> Result<(), DispatchError> {
use pezframe_support::traits::{
fungible::InspectHold,
tokens::{Fortitude, Precision, Preservation, Restriction},
};
if amount.is_zero() {
return Ok(());
}
let hold_reason = hold_reason.into();
let result = if exec_config.map(|c| c.collect_deposit_from_hold.is_some()).unwrap_or(false)
{
T::Currency::release(&hold_reason, from, amount, Precision::Exact)
.and_then(|amount| {
T::Currency::withdraw(
from,
amount,
Precision::Exact,
Preservation::Preserve,
Fortitude::Polite,
)
})
.map(T::FeeInfo::deposit_txfee)
} else {
T::Currency::transfer_on_hold(
&hold_reason,
from,
to,
amount,
Precision::Exact,
Restriction::Free,
Fortitude::Polite,
)
.map(|_| ())
};
result.map_err(|_| {
let available = T::Currency::balance_on_hold(&hold_reason, from);
if available < amount {
// The storage deposit accounting got out of sync with the balance: This would be a
// straight up bug in this pezpallet.
log::error!(
target: LOG_TARGET,
"Failed to refund storage deposit {:?} from contract {:?} to origin {:?}. Not enough deposit: {:?}. This is a bug.",
amount, from, to, available,
);
Error::<T>::StorageRefundNotEnoughFunds.into()
} else {
// There are some locks preventing the refund. This could be the case if the
// contract participates in government. The consequence is that if a contract votes
// with its storage deposit it would no longer be possible to remove storage without first
// reducing the lock.
log::warn!(
target: LOG_TARGET,
"Failed to refund storage deposit {:?} from contract {:?} to origin {:?}. First remove locks (staking, governance) from the contracts account.",
amount, from, to,
);
Error::<T>::StorageRefundLocked.into()
}
})
}
/// Returns true if the evm value carries dust.
fn has_dust(value: U256) -> bool {
value % U256::from(<T>::NativeToEthRatio::get()) != U256::zero()
}
/// Returns true if the evm value carries balance.
fn has_balance(value: U256) -> bool {
value >= U256::from(<T>::NativeToEthRatio::get())
}
/// Return the existential deposit of [`Config::Currency`].
fn min_balance() -> BalanceOf<T> {
<T::Currency as Inspect<AccountIdOf<T>>>::minimum_balance()
}
/// Deposit a pezpallet revive event.
///
/// This method will be called by the EVM to deposit events emitted by the contract.
/// Therefore all events must be contract emitted events.
fn deposit_event(event: Event<T>) {
<pezframe_system::Pezpallet<T>>::deposit_event(<T as Config>::RuntimeEvent::from(event))
}
// Returns Ok with the account that signed the eth transaction.
fn ensure_eth_signed(origin: OriginFor<T>) -> Result<AccountIdOf<T>, DispatchError> {
match <T as Config>::RuntimeOrigin::from(origin).into() {
Ok(Origin::EthTransaction(signer)) => Ok(signer),
_ => Err(BadOrigin.into()),
}
}
/// Ensure that the origin is neither a pre-compile nor a contract.
///
/// This enforces EIP-3607.
fn ensure_non_contract_if_signed(origin: &OriginFor<T>) -> DispatchResult {
if DebugSettings::bypass_eip_3607::<T>() {
return Ok(());
}
let Some(address) = origin
.as_system_ref()
.and_then(|o| o.as_signed())
.map(<T::AddressMapper as AddressMapper<T>>::to_address)
else {
return Ok(());
};
if exec::is_precompile::<T, ContractBlob<T>>(&address) ||
<AccountInfo<T>>::is_contract(&address)
{
log::debug!(
target: crate::LOG_TARGET,
"EIP-3607: reject tx as pre-compile or account exist at {address:?}",
);
Err(DispatchError::BadOrigin)
} else {
Ok(())
}
}
}
/// The address used to call the runtime's pallets dispatchables
///
/// Note:
/// computed with PalletId(*b"py/paddr").into_account_truncating();
pub const RUNTIME_PALLETS_ADDR: H160 =
H160(hex_literal::hex!("6d6f646c70792f70616464720000000000000000"));
// Set up a global reference to the boolean flag used for the re-entrancy guard.
environmental!(executing_contract: bool);
pezsp_api::decl_runtime_apis! {
/// The API used to dry-run contract interactions.
#[api_version(1)]
pub trait ReviveApi<AccountId, Balance, Nonce, BlockNumber, Moment> where
AccountId: Codec,
Balance: Codec,
Nonce: Codec,
BlockNumber: Codec,
Moment: Codec,
{
/// Returns the current ETH block.
///
/// This is one block behind the bizinikiwi block.
fn eth_block() -> EthBlock;
/// Returns the ETH block hash for the given block number.
fn eth_block_hash(number: U256) -> Option<H256>;
/// The details needed to reconstruct the receipt information offchain.
///
/// # Note
///
/// Each entry corresponds to the appropriate Ethereum transaction in the current block.
fn eth_receipt_data() -> Vec<ReceiptGasInfo>;
/// Returns the block gas limit.
fn block_gas_limit() -> U256;
/// Returns the free balance of the given `[H160]` address, using EVM decimals.
fn balance(address: H160) -> U256;
/// Returns the gas price.
fn gas_price() -> U256;
/// Returns the nonce of the given `[H160]` address.
fn nonce(address: H160) -> Nonce;
/// Perform a call from a specified account to a given contract.
///
/// See [`crate::Pezpallet::bare_call`].
fn call(
origin: AccountId,
dest: H160,
value: Balance,
gas_limit: Option<Weight>,
storage_deposit_limit: Option<Balance>,
input_data: Vec<u8>,
) -> ContractResult<ExecReturnValue, Balance>;
/// Instantiate a new contract.
///
/// See `[crate::Pezpallet::bare_instantiate]`.
fn instantiate(
origin: AccountId,
value: Balance,
gas_limit: Option<Weight>,
storage_deposit_limit: Option<Balance>,
code: Code,
data: Vec<u8>,
salt: Option<[u8; 32]>,
) -> ContractResult<InstantiateReturnValue, Balance>;
/// Perform an Ethereum call.
///
/// Deprecated use `v2` version instead.
/// See [`crate::Pezpallet::dry_run_eth_transact`]
fn eth_transact(tx: GenericTransaction) -> Result<EthTransactInfo<Balance>, EthTransactError>;
/// Perform an Ethereum call.
///
/// See [`crate::Pezpallet::dry_run_eth_transact`]
fn eth_transact_with_config(
tx: GenericTransaction,
config: DryRunConfig<Moment>,
) -> Result<EthTransactInfo<Balance>, EthTransactError>;
/// Upload new code without instantiating a contract from it.
///
/// See [`crate::Pezpallet::bare_upload_code`].
fn upload_code(
origin: AccountId,
code: Vec<u8>,
storage_deposit_limit: Option<Balance>,
) -> CodeUploadResult<Balance>;
/// Query a given storage key in a given contract.
///
/// Returns `Ok(Some(Vec<u8>))` if the storage value exists under the given key in the
/// specified account and `Ok(None)` if it doesn't. If the account specified by the address
/// doesn't exist, or doesn't have a contract then `Err` is returned.
fn get_storage(
address: H160,
key: [u8; 32],
) -> GetStorageResult;
/// Query a given variable-sized storage key in a given contract.
///
/// Returns `Ok(Some(Vec<u8>))` if the storage value exists under the given key in the
/// specified account and `Ok(None)` if it doesn't. If the account specified by the address
/// doesn't exist, or doesn't have a contract then `Err` is returned.
fn get_storage_var_key(
address: H160,
key: Vec<u8>,
) -> GetStorageResult;
/// Traces the execution of an entire block and returns call traces.
///
/// This is intended to be called through `state_call` to replay the block from the
/// parent block.
///
/// See eth-rpc `debug_traceBlockByNumber` for usage.
fn trace_block(
block: Block,
config: TracerType
) -> Vec<(u32, Trace)>;
/// Traces the execution of a specific transaction within a block.
///
/// This is intended to be called through `state_call` to replay the block from the
/// parent hash up to the transaction.
///
/// See eth-rpc `debug_traceTransaction` for usage.
fn trace_tx(
block: Block,
tx_index: u32,
config: TracerType
) -> Option<Trace>;
/// Dry run and return the trace of the given call.
///
/// See eth-rpc `debug_traceCall` for usage.
fn trace_call(tx: GenericTransaction, config: TracerType) -> Result<Trace, EthTransactError>;
/// The address of the validator that produced the current block.
fn block_author() -> H160;
/// Get the H160 address associated to this account id
fn address(account_id: AccountId) -> H160;
/// Get the account id associated to this H160 address.
fn account_id(address: H160) -> AccountId;
/// The address used to call the runtime's pallets dispatchables
fn runtime_pallets_address() -> H160;
/// The code at the specified address taking pre-compiles into account.
fn code(address: H160) -> Vec<u8>;
/// Construct the new balance and dust components of this EVM balance.
fn new_balance_with_dust(balance: U256) -> Result<(Balance, u32), BalanceConversionError>;
}
}
/// This macro wraps bizinikiwi's `impl_runtime_apis!` and implements `pezpallet_revive` runtime APIs
/// and other required traits.
///
/// # Note
///
/// This also implements [`SetWeightLimit`] for the runtime call.
///
/// # Parameters
/// - `$Runtime`: The runtime type to implement the APIs for.
/// - `$Revive`: The name under which revive is declared in `construct_runtime`.
/// - `$Executive`: The Executive type of the runtime.
/// - `$EthExtra`: Type for additional Ethereum runtime extension.
/// - `$($rest:tt)*`: Remaining input to be forwarded to the underlying `impl_runtime_apis!`.
#[macro_export]
macro_rules! impl_runtime_apis_plus_revive_traits {
($Runtime: ty, $Revive: ident, $Executive: ty, $EthExtra: ty, $($rest:tt)*) => {
type __ReviveMacroMoment = <<$Runtime as $crate::Config>::Time as $crate::Time>::Moment;
impl $crate::evm::runtime::SetWeightLimit for RuntimeCall {
fn set_weight_limit(&mut self, weight_limit: Weight) -> Weight {
use $crate::pezpallet::Call as ReviveCall;
match self {
Self::$Revive(
ReviveCall::eth_call{ gas_limit, .. } |
ReviveCall::eth_instantiate_with_code{ gas_limit, .. }
) => {
let old = *gas_limit;
*gas_limit = weight_limit;
old
},
_ => Weight::default(),
}
}
}
impl_runtime_apis! {
$($rest)*
impl pezpallet_revive::ReviveApi<Block, AccountId, Balance, Nonce, BlockNumber, __ReviveMacroMoment> for $Runtime
{
fn eth_block() -> $crate::EthBlock {
$crate::Pezpallet::<Self>::eth_block()
}
fn eth_block_hash(number: $crate::U256) -> Option<$crate::H256> {
$crate::Pezpallet::<Self>::eth_block_hash_from_number(number)
}
fn eth_receipt_data() -> Vec<$crate::ReceiptGasInfo> {
$crate::Pezpallet::<Self>::eth_receipt_data()
}
fn balance(address: $crate::H160) -> $crate::U256 {
$crate::Pezpallet::<Self>::evm_balance(&address)
}
fn block_author() -> $crate::H160 {
$crate::Pezpallet::<Self>::block_author()
}
fn block_gas_limit() -> $crate::U256 {
$crate::Pezpallet::<Self>::evm_block_gas_limit()
}
fn gas_price() -> $crate::U256 {
$crate::Pezpallet::<Self>::evm_base_fee()
}
fn nonce(address: $crate::H160) -> Nonce {
use $crate::AddressMapper;
let account = <Self as $crate::Config>::AddressMapper::to_account_id(&address);
$crate::pezframe_system::Pezpallet::<Self>::account_nonce(account)
}
fn address(account_id: AccountId) -> $crate::H160 {
use $crate::AddressMapper;
<Self as $crate::Config>::AddressMapper::to_address(&account_id)
}
fn eth_transact(
tx: $crate::evm::GenericTransaction,
) -> Result<$crate::EthTransactInfo<Balance>, $crate::EthTransactError> {
use $crate::{
codec::Encode, evm::runtime::EthExtra, pezframe_support::traits::Get,
pezsp_runtime::traits::TransactionExtension,
pezsp_runtime::traits::Block as BlockT
};
$crate::Pezpallet::<Self>::dry_run_eth_transact(tx, Default::default())
}
fn eth_transact_with_config(
tx: $crate::evm::GenericTransaction,
config: $crate::DryRunConfig<__ReviveMacroMoment>,
) -> Result<$crate::EthTransactInfo<Balance>, $crate::EthTransactError> {
use $crate::{
codec::Encode, evm::runtime::EthExtra, pezframe_support::traits::Get,
pezsp_runtime::traits::TransactionExtension,
pezsp_runtime::traits::Block as BlockT
};
$crate::Pezpallet::<Self>::dry_run_eth_transact(tx, config)
}
fn call(
origin: AccountId,
dest: $crate::H160,
value: Balance,
gas_limit: Option<$crate::Weight>,
storage_deposit_limit: Option<Balance>,
input_data: Vec<u8>,
) -> $crate::ContractResult<$crate::ExecReturnValue, Balance> {
use $crate::pezframe_support::traits::Get;
let blockweights: $crate::BlockWeights =
<Self as $crate::pezframe_system::Config>::BlockWeights::get();
$crate::Pezpallet::<Self>::prepare_dry_run(&origin);
$crate::Pezpallet::<Self>::bare_call(
<Self as $crate::pezframe_system::Config>::RuntimeOrigin::signed(origin),
dest,
$crate::Pezpallet::<Self>::convert_native_to_evm(value),
gas_limit.unwrap_or(blockweights.max_block),
storage_deposit_limit.unwrap_or(u128::MAX),
input_data,
$crate::ExecConfig::new_bizinikiwi_tx().with_dry_run(Default::default()),
)
}
fn instantiate(
origin: AccountId,
value: Balance,
gas_limit: Option<$crate::Weight>,
storage_deposit_limit: Option<Balance>,
code: $crate::Code,
data: Vec<u8>,
salt: Option<[u8; 32]>,
) -> $crate::ContractResult<$crate::InstantiateReturnValue, Balance> {
use $crate::pezframe_support::traits::Get;
let blockweights: $crate::BlockWeights =
<Self as $crate::pezframe_system::Config>::BlockWeights::get();
$crate::Pezpallet::<Self>::prepare_dry_run(&origin);
$crate::Pezpallet::<Self>::bare_instantiate(
<Self as $crate::pezframe_system::Config>::RuntimeOrigin::signed(origin),
$crate::Pezpallet::<Self>::convert_native_to_evm(value),
gas_limit.unwrap_or(blockweights.max_block),
storage_deposit_limit.unwrap_or(u128::MAX),
code,
data,
salt,
$crate::ExecConfig::new_bizinikiwi_tx().with_dry_run(Default::default()),
)
}
fn upload_code(
origin: AccountId,
code: Vec<u8>,
storage_deposit_limit: Option<Balance>,
) -> $crate::CodeUploadResult<Balance> {
let origin =
<Self as $crate::pezframe_system::Config>::RuntimeOrigin::signed(origin);
$crate::Pezpallet::<Self>::bare_upload_code(
origin,
code,
storage_deposit_limit.unwrap_or(u128::MAX),
)
}
fn get_storage_var_key(
address: $crate::H160,
key: Vec<u8>,
) -> $crate::GetStorageResult {
$crate::Pezpallet::<Self>::get_storage_var_key(address, key)
}
fn get_storage(address: $crate::H160, key: [u8; 32]) -> $crate::GetStorageResult {
$crate::Pezpallet::<Self>::get_storage(address, key)
}
fn trace_block(
block: Block,
tracer_type: $crate::evm::TracerType,
) -> Vec<(u32, $crate::evm::Trace)> {
use $crate::{pezsp_runtime::traits::Block, tracing::trace};
let mut traces = vec![];
let (header, extrinsics) = block.deconstruct();
<$Executive>::initialize_block(&header);
for (index, ext) in extrinsics.into_iter().enumerate() {
let mut tracer = $crate::Pezpallet::<Self>::evm_tracer(tracer_type.clone());
let t = tracer.as_tracing();
let _ = trace(t, || <$Executive>::apply_extrinsic(ext));
if let Some(tx_trace) = tracer.collect_trace() {
traces.push((index as u32, tx_trace));
}
}
traces
}
fn trace_tx(
block: Block,
tx_index: u32,
tracer_type: $crate::evm::TracerType,
) -> Option<$crate::evm::Trace> {
use $crate::{pezsp_runtime::traits::Block, tracing::trace};
let mut tracer = $crate::Pezpallet::<Self>::evm_tracer(tracer_type);
let (header, extrinsics) = block.deconstruct();
<$Executive>::initialize_block(&header);
for (index, ext) in extrinsics.into_iter().enumerate() {
if index as u32 == tx_index {
let t = tracer.as_tracing();
let _ = trace(t, || <$Executive>::apply_extrinsic(ext));
break;
} else {
let _ = <$Executive>::apply_extrinsic(ext);
}
}
tracer.collect_trace()
}
fn trace_call(
tx: $crate::evm::GenericTransaction,
tracer_type: $crate::evm::TracerType,
) -> Result<$crate::evm::Trace, $crate::EthTransactError> {
use $crate::tracing::trace;
let mut tracer = $crate::Pezpallet::<Self>::evm_tracer(tracer_type.clone());
let t = tracer.as_tracing();
t.watch_address(&tx.from.unwrap_or_default());
t.watch_address(&$crate::Pezpallet::<Self>::block_author());
let result = trace(t, || Self::eth_transact(tx));
if let Some(trace) = tracer.collect_trace() {
Ok(trace)
} else if let Err(err) = result {
Err(err)
} else {
Ok($crate::Pezpallet::<Self>::evm_tracer(tracer_type).empty_trace())
}
}
fn runtime_pallets_address() -> $crate::H160 {
$crate::RUNTIME_PALLETS_ADDR
}
fn code(address: $crate::H160) -> Vec<u8> {
$crate::Pezpallet::<Self>::code(&address)
}
fn account_id(address: $crate::H160) -> AccountId {
use $crate::AddressMapper;
<Self as $crate::Config>::AddressMapper::to_account_id(&address)
}
fn new_balance_with_dust(balance: $crate::U256) -> Result<(Balance, u32), $crate::BalanceConversionError> {
$crate::Pezpallet::<Self>::new_balance_with_dust(balance)
}
}
}
};
}