Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Constructor ¶
type Constructor func( blockCtx vm.BlockContext, txCtx vm.TxContext, stateDB vm.StateDB, chainConfig *params.ChainConfig, config vm.Config, customPrecompiles PrecompiledContracts, ) EVM
Constructor defines the function used to instantiate the EVM on each state transition.
type EVM ¶
type EVM interface { Config() vm.Config Context() vm.BlockContext TxContext() vm.TxContext Reset(txCtx vm.TxContext, statedb vm.StateDB) Cancel() Cancelled() bool //nolint Interpreter() *vm.EVMInterpreter Call(caller vm.ContractRef, addr common.Address, input []byte, gas uint64, value *big.Int) (ret []byte, leftOverGas uint64, err error) CallCode(caller vm.ContractRef, addr common.Address, input []byte, gas uint64, value *big.Int) (ret []byte, leftOverGas uint64, err error) DelegateCall(caller vm.ContractRef, addr common.Address, input []byte, gas uint64) (ret []byte, leftOverGas uint64, err error) StaticCall(caller vm.ContractRef, addr common.Address, input []byte, gas uint64) (ret []byte, leftOverGas uint64, err error) Create(caller vm.ContractRef, code []byte, gas uint64, value *big.Int) (ret []byte, contractAddr common.Address, leftOverGas uint64, err error) Create2( caller vm.ContractRef, code []byte, gas uint64, endowment *big.Int, salt *uint256.Int) ( ret []byte, contractAddr common.Address, leftOverGas uint64, err error, ) ChainConfig() *params.ChainConfig ActivePrecompiles(rules params.Rules) []common.Address Precompile(addr common.Address) (vm.PrecompiledContract, bool) RunPrecompiledContract( p StatefulPrecompiledContract, addr common.Address, input []byte, suppliedGas uint64, value *big.Int) ( ret []byte, remainingGas uint64, err error, ) }
EVM defines the interface for the Ethereum Virtual Machine used by the EVM module.
type PrecompiledContracts ¶
type PrecompiledContracts map[common.Address]vm.PrecompiledContract
PrecompiledContracts defines a map of address -> precompiled contract
Click to show internal directories.
Click to hide internal directories.