// Copyright 2025 the libevm authors. // // The libevm additions to go-ethereum are free software: you can redistribute // them and/or modify them under the terms of the GNU Lesser General Public License // as published by the Free Software Foundation, either version 3 of the License, // or (at your option) any later version. // // The libevm additions are distributed in the hope that they will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser // General Public License for more details. // // You should have received a copy of the GNU Lesser General Public License // along with the go-ethereum library. If not, see // . package vm import ( "github.com/ava-labs/libevm/common" "github.com/ava-labs/libevm/libevm" "github.com/ava-labs/libevm/log" ) // canCreateContract is a convenience wrapper for calling the // [params.RulesHooks.CanCreateContract] hook. func (evm *EVM) canCreateContract(caller ContractRef, contractToCreate common.Address, gas uint64) (remainingGas uint64, _ error) { addrs := &libevm.AddressContext{Origin: evm.Origin, Caller: caller.Address(), Self: contractToCreate} gas, err := evm.chainRules.Hooks().CanCreateContract(addrs, gas, evm.StateDB) // NOTE that this block only performs logging and that all paths propagate // `(gas, err)` unmodified. if err != nil { log.Debug( "Contract creation blocked by libevm hook", "origin", addrs.Origin, "caller", addrs.Caller, "contract", addrs.Self, "hooks", log.TypeOf(evm.chainRules.Hooks()), "reason", err, ) } return gas, err }