Struct tetsy_vm::ActionParams[][src]

pub struct ActionParams {
    pub code_address: Address,
    pub code_hash: Option<H256>,
    pub address: Address,
    pub sender: Address,
    pub origin: Address,
    pub gas: U256,
    pub gas_price: U256,
    pub value: ActionValue,
    pub code: Option<Arc<Bytes>>,
    pub code_version: U256,
    pub data: Option<Bytes>,
    pub action_type: ActionType,
    pub params_type: ParamsType,
}

Action (call/create) input params. Everything else should be specified in Externalities.

Fields

code_address: Address

Address of currently executed code.

code_hash: Option<H256>

Hash of currently executed code.

address: Address

Receive address. Usually equal to code_address, except when called using CALLCODE.

sender: Address

Sender of current part of the transaction.

origin: Address

Transaction initiator.

gas: U256

Gas paid up front for transaction execution

gas_price: U256

Gas price.

value: ActionValue

Transaction value.

code: Option<Arc<Bytes>>

Code being executed.

code_version: U256

Code version being executed.

data: Option<Bytes>

Input data.

action_type: ActionType

Type of action (e.g. CALL, DELEGATECALL, CREATE, etc.)

params_type: ParamsType

Param types encoding

Trait Implementations

impl Clone for ActionParams[src]

impl Debug for ActionParams[src]

impl Default for ActionParams[src]

fn default() -> ActionParams[src]

Returns default ActionParams initialized with zeros

impl From<Transaction> for ActionParams[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> MaybeDebug for T where
    T: Debug

impl<T> MaybeDebug for T where
    T: Debug

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,