Documentation ¶
Index ¶
- Variables
- func GetDefaultSigner() types.Signer
- func GetSigner(cfg *Config) types.Signer
- type BlockView
- func (bl *BlockView) BatchRunTransactions(txs []*gethTypes.Transaction) ([]*types.Result, error)
- func (bl *BlockView) DirectCall(call *types.DirectCall) (*types.Result, error)
- func (bl *BlockView) DryRunTransaction(tx *gethTypes.Transaction, from gethCommon.Address) (*types.Result, error)
- func (bl *BlockView) RunTransaction(tx *gethTypes.Transaction) (*types.Result, error)
- type Config
- type Emulator
- type Option
- func WithBlockNumber(blockNumber *big.Int) Option
- func WithBlockTime(time uint64) Option
- func WithChainID(chainID *big.Int) Option
- func WithCoinbase(coinbase gethCommon.Address) Option
- func WithDirectCallBaseGasUsage(gas uint64) Option
- func WithExtraPrecompiles(precompiles []types.Precompile) Option
- func WithGasLimit(gasLimit uint64) Option
- func WithGasPrice(gasPrice *big.Int) Option
- func WithGetBlockHashFunction(getHash gethVM.GetHashFunc) Option
- func WithOrigin(origin gethCommon.Address) Option
- func WithRandom(rand *gethCommon.Hash) Option
- type ReadOnlyBlockView
- func (bv *ReadOnlyBlockView) BalanceOf(address types.Address) (*big.Int, error)
- func (bv *ReadOnlyBlockView) CodeHashOf(address types.Address) ([]byte, error)
- func (bv *ReadOnlyBlockView) CodeOf(address types.Address) (types.Code, error)
- func (bv *ReadOnlyBlockView) NonceOf(address types.Address) (uint64, error)
Constants ¶
This section is empty.
Variables ¶
var ( DefaultBlockLevelGasLimit = uint64(math.MaxUint64) DefaultBaseFee = big.NewInt(0) )
var DefaultChainConfig = &gethParams.ChainConfig{ ChainID: types.FlowEVMPreviewNetChainID, HomesteadBlock: bigZero, DAOForkBlock: bigZero, DAOForkSupport: false, EIP150Block: bigZero, EIP155Block: bigZero, EIP158Block: bigZero, ByzantiumBlock: bigZero, ConstantinopleBlock: bigZero, PetersburgBlock: bigZero, IstanbulBlock: bigZero, BerlinBlock: bigZero, LondonBlock: bigZero, MuirGlacierBlock: bigZero, ShanghaiTime: &zero, CancunTime: &zero, PragueTime: &zero, }
DefaultChainConfig is the default chain config which considers majority of EVM upgrades (e.g. Shanghai update) already been applied this has done through setting the height of these changes to zero nad setting the time for some other changes to zero For the future changes of EVM, we need to update the EVM go mod version and set a proper height for the specific release based on the Flow EVM heights so it could gets activated at a desired time.
Functions ¶
func GetDefaultSigner ¶
GetDefaultSigner returns a signer which is compatible with the default config
Types ¶
type BlockView ¶
type BlockView struct {
// contains filtered or unexported fields
}
BlockView allows mutation of the evm state as part of a block
TODO: allow multiple calls per block view TODO: add block level commit (separation of trie commit to storage)
func (*BlockView) BatchRunTransactions ¶ added in v0.33.30
func (*BlockView) DirectCall ¶
DirectCall executes a direct call
func (*BlockView) DryRunTransaction ¶ added in v0.33.30
func (bl *BlockView) DryRunTransaction( tx *gethTypes.Transaction, from gethCommon.Address, ) (*types.Result, error)
DryRunTransaction run unsigned transaction without persisting the state
func (*BlockView) RunTransaction ¶
RunTransaction runs an evm transaction
type Config ¶
type Config struct { // Chain Config ChainConfig *gethParams.ChainConfig // EVM config EVMConfig gethVM.Config // block context BlockContext *gethVM.BlockContext // transaction context TxContext *gethVM.TxContext // base unit of gas for direct calls DirectCallBaseGasUsage uint64 }
Config sets the required parameters
func (*Config) ChainRules ¶ added in v0.33.30
func (c *Config) ChainRules() gethParams.Rules
type Emulator ¶
type Emulator struct {
// contains filtered or unexported fields
}
Emulator handles operations against evm runtime
func NewEmulator ¶
NewEmulator constructs a new EVM Emulator
func (*Emulator) NewBlockView ¶
NewBlockView constructs a new block view (mutable)
func (*Emulator) NewReadOnlyBlockView ¶
func (em *Emulator) NewReadOnlyBlockView(ctx types.BlockContext) (types.ReadOnlyBlockView, error)
NewReadOnlyBlockView constructs a new readonly block view
type Option ¶
func WithBlockNumber ¶
WithBlockNumber sets the block height in the block context
func WithBlockTime ¶
WithBlockTime sets the block time in the block context
func WithChainID ¶ added in v0.33.30
WithChainID sets the evm chain ID
func WithCoinbase ¶
func WithCoinbase(coinbase gethCommon.Address) Option
WithCoinbase sets the coinbase of the block where the fees are collected in
func WithDirectCallBaseGasUsage ¶
WithDirectCallBaseGasUsage sets the base direct call gas usage
func WithExtraPrecompiles ¶ added in v0.33.30
func WithExtraPrecompiles(precompiles []types.Precompile) Option
WithExtraPrecompiles appends precompile list with extra precompiles
func WithGasLimit ¶
WithGasLimit sets the gas limit of the transaction
func WithGasPrice ¶
WithGasPrice sets the gas price for the transaction (usually the one sets by the sender)
func WithGetBlockHashFunction ¶
func WithGetBlockHashFunction(getHash gethVM.GetHashFunc) Option
WithGetBlockHashFunction sets the functionality to look up block hash by height
func WithOrigin ¶
func WithOrigin(origin gethCommon.Address) Option
WithOrigin sets the origin of the transaction (signer)
func WithRandom ¶ added in v0.33.30
func WithRandom(rand *gethCommon.Hash) Option
WithRandom sets the block context random field
type ReadOnlyBlockView ¶
type ReadOnlyBlockView struct {
// contains filtered or unexported fields
}
ReadOnlyBlockView provides a read only view of a block could be used multiple times for queries
func (*ReadOnlyBlockView) CodeHashOf ¶ added in v0.33.30
func (bv *ReadOnlyBlockView) CodeHashOf(address types.Address) ([]byte, error)
CodeHashOf returns the code hash of the given address