Documentation ¶
Overview ¶
Package vm implements the Ethereum Virtual Machine.
The vm package implements one EVM, a byte code VM. The BC (Byte Code) VM loops over a set of bytes and executes them according to the set of rules defined in the Ethereum yellow paper.
Index ¶
- Constants
- Variables
- func ActivateableEips() []string
- func ActivePrecompiles(rules params.Rules) []common.Address
- func CopyVotePk(pk []byte) []byte
- func DeepCopy(src, dst interface{}) error
- func EnableEIP(eipNum int, jt *JumpTable) error
- func ForbidAddress(addr common.Address) error
- func GenesisAddLockedBalance(db StateDB, addr common.Address, amount *big.Int)
- func GetCurrentEpochID(evm *EVM) (uint64, error)
- func GetCurrentRelayer(state StateDB) []*params.RelayerMember
- func GetRelayersByEpoch(state StateDB, eid, hh uint64) []*params.RelayerMember
- func HistoryWorkEfficiency(state StateDB, epochId uint64, relayer common.Address) (uint64, error)
- func IsInCurrentEpoch(state StateDB, relayer common.Address) bool
- func IsUnlocked(eid, height uint64) bool
- func MergeReward(map1, map2 map[common.Address]*big.Int) map[common.Address]*big.Int
- func MinCalcRedeemHeight(eid uint64) uint64
- func NewMarkdownLogger(cfg *LogConfig, writer io.Writer) *mdLogger
- func RlpHash(x interface{}) (h common.Hash)
- func RunContract(evm *EVM, contract *Contract, input []byte) (ret []byte, err error)
- func RunHeaderStore(evm *EVM, contract *Contract, input []byte) (ret []byte, err error)
- func RunPrecompiledContract(evm *EVM, contract *Contract, p PrecompiledContract, input []byte, ...) (ret []byte, remainingGas uint64, err error)
- func RunTxVerify(evm *EVM, contract *Contract, input []byte) (ret []byte, err error)
- func ToJSON(ii *RegisterSummay) map[string]interface{}
- func ValidEip(eipNum int) bool
- func ValidPk(pk []byte) error
- func WriteLogs(writer io.Writer, logs []*types.Log)
- func WriteTrace(writer io.Writer, logs []StructLog)
- type AccessListTracer
- func (a *AccessListTracer) AccessList() types.AccessList
- func (*AccessListTracer) CaptureEnd(output []byte, gasUsed uint64, t time.Duration, err error)
- func (*AccessListTracer) CaptureEnter(typ OpCode, from common.Address, to common.Address, input []byte, gas uint64, ...)
- func (*AccessListTracer) CaptureExit(output []byte, gasUsed uint64, err error)
- func (*AccessListTracer) CaptureFault(env *EVM, pc uint64, op OpCode, gas, cost uint64, scope *ScopeContext, ...)
- func (a *AccessListTracer) CaptureStart(env *EVM, from common.Address, to common.Address, create bool, input []byte, ...)
- func (a *AccessListTracer) CaptureState(env *EVM, pc uint64, op OpCode, gas, cost uint64, scope *ScopeContext, ...)
- func (a *AccessListTracer) Equal(other *AccessListTracer) bool
- type AccountRef
- type AlterableInfo
- type BalanceInfo
- type BlockBalance
- type BlockContext
- type CallContext
- type CanTransferFunc
- type ChainReward
- type Config
- type Contract
- func (c *Contract) Address() common.Address
- func (c *Contract) AsDelegate() *Contract
- func (c *Contract) Caller() common.Address
- func (c *Contract) GetByte(n uint64) byte
- func (c *Contract) GetOp(n uint64) OpCode
- func (c *Contract) SetCallCode(addr *common.Address, hash common.Hash, code []byte)
- func (c *Contract) SetCodeOptionalHash(addr *common.Address, codeAndHash *codeAndHash)
- func (c *Contract) UseGas(gas uint64) (ok bool)
- func (c *Contract) Value() *big.Int
- type ContractRef
- type EVM
- func (evm *EVM) Call(caller ContractRef, addr common.Address, input []byte, gas uint64, ...) (ret []byte, leftOverGas uint64, err error)
- func (evm *EVM) CallCode(caller ContractRef, addr common.Address, input []byte, gas uint64, ...) (ret []byte, leftOverGas uint64, err error)
- func (evm *EVM) Cancel()
- func (evm *EVM) Cancelled() bool
- func (evm *EVM) ChainConfig() *params.ChainConfig
- func (evm *EVM) Create(caller ContractRef, code []byte, gas uint64, value *big.Int) (ret []byte, contractAddr common.Address, leftOverGas uint64, err error)
- func (evm *EVM) Create2(caller ContractRef, code []byte, gas uint64, endowment *big.Int, ...) (ret []byte, contractAddr common.Address, leftOverGas uint64, err error)
- func (evm *EVM) DelegateCall(caller ContractRef, addr common.Address, input []byte, gas uint64) (ret []byte, leftOverGas uint64, err error)
- func (evm *EVM) Interpreter() *EVMInterpreter
- func (evm *EVM) Reset(txCtx TxContext, statedb StateDB)
- func (evm *EVM) StartGasMetering()
- func (evm *EVM) StaticCall(caller ContractRef, addr common.Address, input []byte, gas uint64) (ret []byte, leftOverGas uint64, err error)
- func (evm *EVM) StopGasMetering()
- type EVMInterpreter
- type EVMRunner
- type EpochIDInfo
- type ErrInvalidOpCode
- type ErrStackOverflow
- type ErrStackUnderflow
- type FineItem
- type GetHashFunc
- type HeaderStore
- func (h *HeaderStore) AddSyncTimes(epochID, amount uint64, relayer common.Address)
- func (h *HeaderStore) CalcReward(epochID uint64, allAmount *big.Int) map[common.Address]*big.Int
- func (h *HeaderStore) DecodeRLP(s *rlp.Stream) error
- func (h *HeaderStore) EncodeRLP(w io.Writer) error
- func (h *HeaderStore) GetReceiveTimes(height uint64) uint64
- func (h *HeaderStore) GetSortedRelayers(epochID uint64) []common.Address
- func (h *HeaderStore) IncrReceiveTimes(height uint64)
- func (h *HeaderStore) Load(state StateDB, address common.Address) (err error)
- func (h *HeaderStore) LoadReward(epochID uint64, relayer common.Address) *big.Int
- func (h *HeaderStore) LoadSyncTimes(epochID uint64, relayer common.Address) uint64
- func (h *HeaderStore) Store(state StateDB, address common.Address) error
- func (h *HeaderStore) StoreReward(epochID uint64, relayer common.Address, reward *big.Int)
- type HeaderStoreCache
- type JSONLogger
- func (l *JSONLogger) CaptureEnd(output []byte, gasUsed uint64, t time.Duration, err error)
- func (l *JSONLogger) CaptureEnter(typ OpCode, from common.Address, to common.Address, input []byte, gas uint64, ...)
- func (l *JSONLogger) CaptureExit(output []byte, gasUsed uint64, err error)
- func (l *JSONLogger) CaptureFault(*EVM, uint64, OpCode, uint64, uint64, *ScopeContext, int, error)
- func (l *JSONLogger) CaptureStart(env *EVM, from, to common.Address, create bool, input []byte, gas uint64, ...)
- func (l *JSONLogger) CaptureState(env *EVM, pc uint64, op OpCode, gas, cost uint64, scope *ScopeContext, ...)
- type JumpTable
- type LockValue
- type LockedAsset
- type LockedItem
- type LogConfig
- type Memory
- func (m *Memory) Data() []byte
- func (m *Memory) GetCopy(offset, size int64) (cpy []byte)
- func (m *Memory) GetPtr(offset, size int64) []byte
- func (m *Memory) Len() int
- func (m *Memory) Print()
- func (m *Memory) Resize(size uint64)
- func (m *Memory) Set(offset, size uint64, value []byte)
- func (m *Memory) Set32(offset uint64, val *uint256.Int)
- type OpCode
- type PairRegisterValue
- type PrecompiledContract
- type RedeemItem
- type Register
- type RegisterAccount
- type RegisterImpl
- func (i *RegisterImpl) AppendAmount(height uint64, addr common.Address, val *big.Int) error
- func (i *RegisterImpl) CancelAccount(curHeight uint64, addr common.Address, amount *big.Int) error
- func (i *RegisterImpl) Counts() int
- func (i *RegisterImpl) DecodeRLP(s *rlp.Stream) error
- func (i *RegisterImpl) DoElections(state StateDB, epochid, height uint64) ([]*RegisterAccount, error)
- func (i *RegisterImpl) EncodeRLP(w io.Writer) error
- func (i *RegisterImpl) GetAllRegisterAccount() Register
- func (i *RegisterImpl) GetBalance(addr common.Address, height uint64) (*big.Int, *big.Int, *big.Int, *big.Int)
- func (i *RegisterImpl) GetCurrentEpochID() uint64
- func (i *RegisterImpl) GetCurrentEpochInfo() ([]*EpochIDInfo, uint64)
- func (i *RegisterImpl) GetRegisterAccount(epochid uint64, addr common.Address) (*RegisterAccount, error)
- func (i *RegisterImpl) InsertAccount2(height uint64, addr common.Address, val *big.Int) error
- func (i *RegisterImpl) Load(state StateDB, preAddress common.Address) error
- func (i *RegisterImpl) MakeModifyStateByTip10()
- func (i *RegisterImpl) RedeemAccount(curHeight uint64, addr common.Address, amount *big.Int) error
- func (i *RegisterImpl) Save(state StateDB, preAddress common.Address) error
- func (i *RegisterImpl) SetCurrentEpoch(eid uint64)
- func (i *RegisterImpl) Shift(epochid, effectHeight uint64) error
- func (i *RegisterImpl) Summay() *RegisterSummay
- func (i *RegisterImpl) UpdateFee(height uint64, addr common.Address, fee *big.Int) error
- func (i *RegisterImpl) UpdateSAPK(height uint64, addr common.Address, pk []byte) error
- type RegisterSummay
- type RelayerCache
- type RelayerSyncInfo
- type RelayerValue
- type RewardInfo
- type RewardInfos
- type RewardItem
- type ScopeContext
- type Stack
- type StateDB
- type Storage
- type StructLog
- type StructLogger
- func (l *StructLogger) CaptureEnd(output []byte, gasUsed uint64, t time.Duration, err error)
- func (l *StructLogger) CaptureEnter(typ OpCode, from common.Address, to common.Address, input []byte, gas uint64, ...)
- func (l *StructLogger) CaptureExit(output []byte, gasUsed uint64, err error)
- func (l *StructLogger) CaptureFault(env *EVM, pc uint64, op OpCode, gas, cost uint64, scope *ScopeContext, ...)
- func (l *StructLogger) CaptureStart(env *EVM, from common.Address, to common.Address, create bool, input []byte, ...)
- func (l *StructLogger) CaptureState(env *EVM, pc uint64, op OpCode, gas, cost uint64, scope *ScopeContext, ...)
- func (l *StructLogger) Error() error
- func (l *StructLogger) Output() []byte
- func (l *StructLogger) Reset()
- func (l *StructLogger) StructLogs() []StructLog
- type SummayEpochInfo
- type TimedChainReward
- type Tracer
- type TransferFunc
- type TxContext
Constants ¶
const ( GasQuickStep uint64 = 2 GasFastestStep uint64 = 3 GasFastStep uint64 = 5 GasMidStep uint64 = 8 GasSlowStep uint64 = 10 GasExtStep uint64 = 20 )
Gas costs
const ( Save = "save" CurNbrAndHash = "currentNumberAndHash" )
const (
CacheSize = 20
)
const TimesLimit = 3
const (
TxVerify = "txVerify"
)
Variables ¶
var ( PrecompiledAddressesBerlin []common.Address PrecompiledAddressesIstanbul []common.Address PrecompiledAddressesByzantium []common.Address PrecompiledAddressesHomestead []common.Address )
var ( ErrOutOfGas = errors.New("out of gas") ErrCodeStoreOutOfGas = errors.New("contract creation code storage out of gas") ErrDepth = errors.New("max call depth exceeded") ErrInsufficientBalance = errors.New("insufficient balance for transfer") ErrContractAddressCollision = errors.New("contract address collision") ErrExecutionReverted = errors.New("execution reverted") ErrMaxCodeSizeExceeded = errors.New("max code size exceeded") ErrInvalidJump = errors.New("invalid jump destination") ErrWriteProtection = errors.New("write protection") ErrReturnDataOutOfBounds = errors.New("return data out of bounds") ErrGasUintOverflow = errors.New("gas uint64 overflow") ErrRLPDecode = errors.New("rlp decode error") ErrNotSupportChain = errors.New("not supported chain") ErrInvalidCode = errors.New("invalid code: must not begin with 0xef") )
List evm execution errors
var PrecompiledContractsBLS = map[common.Address]PrecompiledContract{ common.BytesToAddress([]byte{10}): &bls12381G1Add{}, common.BytesToAddress([]byte{11}): &bls12381G1Mul{}, common.BytesToAddress([]byte{12}): &bls12381G1MultiExp{}, common.BytesToAddress([]byte{13}): &bls12381G2Add{}, common.BytesToAddress([]byte{14}): &bls12381G2Mul{}, common.BytesToAddress([]byte{15}): &bls12381G2MultiExp{}, common.BytesToAddress([]byte{16}): &bls12381Pairing{}, common.BytesToAddress([]byte{17}): &bls12381MapG1{}, common.BytesToAddress([]byte{18}): &bls12381MapG2{}, params.RelayerAddress: &relayer{}, params.HeaderStoreAddress: &store{}, params.TxVerifyAddress: &verify{}, }
PrecompiledContractsBLS contains the set of pre-compiled Ethereum contracts specified in EIP-2537. These are exported for testing purposes.
var PrecompiledContractsBerlin = map[common.Address]PrecompiledContract{ common.BytesToAddress([]byte{1}): &ecrecover{}, common.BytesToAddress([]byte{2}): &sha256hash{}, common.BytesToAddress([]byte{3}): &ripemd160hash{}, common.BytesToAddress([]byte{4}): &dataCopy{}, common.BytesToAddress([]byte{5}): &bigModExp{eip2565: true}, common.BytesToAddress([]byte{6}): &bn256AddIstanbul{}, common.BytesToAddress([]byte{7}): &bn256ScalarMulIstanbul{}, common.BytesToAddress([]byte{8}): &bn256PairingIstanbul{}, common.BytesToAddress([]byte{9}): &blake2F{}, params.RelayerAddress: &relayer{}, params.HeaderStoreAddress: &store{}, params.TxVerifyAddress: &verify{}, }
PrecompiledContractsBerlin contains the default set of pre-compiled Ethereum contracts used in the Berlin release.
var PrecompiledContractsByzantium = map[common.Address]PrecompiledContract{ common.BytesToAddress([]byte{1}): &ecrecover{}, common.BytesToAddress([]byte{2}): &sha256hash{}, common.BytesToAddress([]byte{3}): &ripemd160hash{}, common.BytesToAddress([]byte{4}): &dataCopy{}, common.BytesToAddress([]byte{5}): &bigModExp{eip2565: false}, common.BytesToAddress([]byte{6}): &bn256AddByzantium{}, common.BytesToAddress([]byte{7}): &bn256ScalarMulByzantium{}, common.BytesToAddress([]byte{8}): &bn256PairingByzantium{}, params.RelayerAddress: &relayer{}, params.HeaderStoreAddress: &store{}, params.TxVerifyAddress: &verify{}, }
PrecompiledContractsByzantium contains the default set of pre-compiled Ethereum contracts used in the Byzantium release.
var PrecompiledContractsHomestead = map[common.Address]PrecompiledContract{ common.BytesToAddress([]byte{1}): &ecrecover{}, common.BytesToAddress([]byte{2}): &sha256hash{}, common.BytesToAddress([]byte{3}): &ripemd160hash{}, common.BytesToAddress([]byte{4}): &dataCopy{}, params.RelayerAddress: &relayer{}, params.HeaderStoreAddress: &store{}, params.TxVerifyAddress: &verify{}, }
var HeaderStoreAddress common.Address = common.BytesToAddress([]byte("headerStoreAddress")) PrecompiledContractsHomestead contains the default set of pre-compiled Ethereum contracts used in the Frontier and Homestead releases.
var PrecompiledContractsIstanbul = map[common.Address]PrecompiledContract{ common.BytesToAddress([]byte{1}): &ecrecover{}, common.BytesToAddress([]byte{2}): &sha256hash{}, common.BytesToAddress([]byte{3}): &ripemd160hash{}, common.BytesToAddress([]byte{4}): &dataCopy{}, common.BytesToAddress([]byte{5}): &bigModExp{eip2565: false}, common.BytesToAddress([]byte{6}): &bn256AddIstanbul{}, common.BytesToAddress([]byte{7}): &bn256ScalarMulIstanbul{}, common.BytesToAddress([]byte{8}): &bn256PairingIstanbul{}, common.BytesToAddress([]byte{9}): &blake2F{}, params.RelayerAddress: &relayer{}, params.HeaderStoreAddress: &store{}, params.TxVerifyAddress: &verify{}, }
PrecompiledContractsIstanbul contains the default set of pre-compiled Ethereum contracts used in the Istanbul release.
var SyncGas = map[string]uint64{ CurNbrAndHash: 42000, }
SyncGas defines all method gas
var TxVerifyGas = map[string]uint64{ TxVerify: 42000, }
Functions ¶
func ActivateableEips ¶
func ActivateableEips() []string
func ActivePrecompiles ¶
ActivePrecompiles returns the precompiles enabled with the current configuration.
func CopyVotePk ¶
func EnableEIP ¶
EnableEIP enables the given EIP on the config. This operation writes in-place, and callers need to ensure that the globally defined jump tables are not polluted.
func ForbidAddress ¶
func GenesisAddLockedBalance ¶
func GetCurrentEpochID ¶
func GetCurrentRelayer ¶
func GetCurrentRelayer(state StateDB) []*params.RelayerMember
func GetRelayersByEpoch ¶
func GetRelayersByEpoch(state StateDB, eid, hh uint64) []*params.RelayerMember
func HistoryWorkEfficiency ¶
func IsUnlocked ¶
func MergeReward ¶
func MinCalcRedeemHeight ¶
func NewMarkdownLogger ¶
NewMarkdownLogger creates a logger which outputs information in a format adapted for human readability, and is also a valid markdown table
func RunContract ¶
func RunHeaderStore ¶
RunHeaderStore execute atlas header store contract
func RunPrecompiledContract ¶
func RunPrecompiledContract(evm *EVM, contract *Contract, p PrecompiledContract, input []byte, suppliedGas uint64) (ret []byte, remainingGas uint64, err error)
RunPrecompiledContract runs and evaluates the output of a precompiled contract. It returns - the returned bytes, - the _remaining_ gas, - any error that occurred
func RunTxVerify ¶ added in v0.3.1
RunTxVerify execute atlas tx verify contract
func ToJSON ¶
func ToJSON(ii *RegisterSummay) map[string]interface{}
func WriteTrace ¶
WriteTrace writes a formatted trace to the given writer
Types ¶
type AccessListTracer ¶
type AccessListTracer struct {
// contains filtered or unexported fields
}
AccessListTracer is a tracer that accumulates touched accounts and storage slots into an internal set.
func NewAccessListTracer ¶
func NewAccessListTracer(acl types.AccessList, from, to common.Address, precompiles []common.Address) *AccessListTracer
NewAccessListTracer creates a new tracer that can generate AccessLists. An optional AccessList can be specified to occupy slots and addresses in the resulting accesslist.
func (*AccessListTracer) AccessList ¶
func (a *AccessListTracer) AccessList() types.AccessList
AccessList returns the current accesslist maintained by the tracer.
func (*AccessListTracer) CaptureEnd ¶
func (*AccessListTracer) CaptureEnter ¶ added in v0.3.1
func (*AccessListTracer) CaptureExit ¶ added in v0.3.1
func (*AccessListTracer) CaptureExit(output []byte, gasUsed uint64, err error)
func (*AccessListTracer) CaptureFault ¶
func (*AccessListTracer) CaptureFault(env *EVM, pc uint64, op OpCode, gas, cost uint64, scope *ScopeContext, depth int, err error)
func (*AccessListTracer) CaptureStart ¶
func (*AccessListTracer) CaptureState ¶
func (a *AccessListTracer) CaptureState(env *EVM, pc uint64, op OpCode, gas, cost uint64, scope *ScopeContext, rData []byte, depth int, err error)
CaptureState captures all opcodes that touch storage or addresses and adds them to the accesslist.
func (*AccessListTracer) Equal ¶
func (a *AccessListTracer) Equal(other *AccessListTracer) bool
Equal returns if the content of two access list traces are equal.
type AccountRef ¶
AccountRef implements ContractRef.
Account references are used during EVM initialisation and it's primary use is to fetch addresses. Removing this object proves difficult because of the cached jump destinations which are fetched from the parent contract (i.e. the caller), which is a ContractRef.
func (AccountRef) Address ¶
func (ar AccountRef) Address() common.Address
Address casts AccountRef to a Address
type AlterableInfo ¶
type BalanceInfo ¶
type BalanceInfo struct { Address common.Address `json:"address"` Valid *big.Int `json:"valid"` Lock *big.Int `json:"lock"` }
func ToBalanceInfos ¶
func ToBalanceInfos(items map[common.Address]*BalanceInfo) []*BalanceInfo
type BlockBalance ¶
type BlockBalance struct {
Balance []*BalanceInfo `json:"addrWithBalance" gencodec:"required"`
}
func (*BlockBalance) ToMap ¶
func (s *BlockBalance) ToMap() map[common.Address]*BalanceInfo
type BlockContext ¶
type BlockContext struct { // CanTransfer returns whether the account contains // sufficient ether to transfer the value CanTransfer CanTransferFunc // Transfer transfers ether from one account to the other Transfer TransferFunc // GetHash returns the hash corresponding to n GetHash GetHashFunc // Block information Coinbase common.Address // Provides information for COINBASE GasLimit uint64 // Provides information for GASLIMIT BlockNumber *big.Int // Provides information for NUMBER Time *big.Int // Provides information for TIME Difficulty *big.Int // Provides information for DIFFICULTY BaseFee *big.Int // Provides information for BASEFEE }
BlockContext provides the EVM with auxiliary information. Once provided it shouldn't be modified.
type CallContext ¶
type CallContext interface { // Call another contract Call(env *EVM, me ContractRef, addr common.Address, data []byte, gas, value *big.Int) ([]byte, error) // Take another's contract code and execute within our own context CallCode(env *EVM, me ContractRef, addr common.Address, data []byte, gas, value *big.Int) ([]byte, error) // Same as CallCode except sender and value is propagated from parent to child scope DelegateCall(env *EVM, me ContractRef, addr common.Address, data []byte, gas *big.Int) ([]byte, error) // Create a new contract Create(env *EVM, me ContractRef, data []byte, gas, value *big.Int) ([]byte, common.Address, error) }
CallContext provides a basic interface for the EVM calling conventions. The EVM depends on this context being implemented for doing subcalls and initialising new EVM contracts.
type CanTransferFunc ¶
CanTransferFunc is the signature of a transfer guard function
type ChainReward ¶
type ChainReward struct { Height uint64 St uint64 CoinBase *RewardInfo `json:"blockminer"` }
func CloneChainReward ¶
func CloneChainReward(reward *ChainReward) *ChainReward
func NewChainReward ¶
func NewChainReward(height, tt uint64, coin *RewardInfo, fruits []*RewardInfo, relayer []*RewardInfos) *ChainReward
func (*ChainReward) CoinRewardInfo ¶
func (s *ChainReward) CoinRewardInfo() map[string]interface{}
func (*ChainReward) RelayerRewardInfo ¶
func (s *ChainReward) RelayerRewardInfo() map[string]interface{}
type Config ¶
type Config struct { Debug bool // Enables debugging Tracer Tracer // Opcode logger NoRecursion bool // Disables call, callcode, delegate call and create NoBaseFee bool // Forces the EIP-1559 baseFee to 0 (needed for 0 price calls) EnablePreimageRecording bool // Enables recording of SHA3/keccak preimages JumpTable [256]*operation // EVM instruction table, automatically populated if unset ExtraEips []int // Additional EIPS that are to be enabled }
Config are the configuration options for the Interpreter
type Contract ¶
type Contract struct { // CallerAddress is the result of the caller which initialised this // contract. However when the "call method" is delegated this value // needs to be initialised to that of the caller's caller. CallerAddress common.Address Code []byte CodeHash common.Hash CodeAddr *common.Address Input []byte Gas uint64 // contains filtered or unexported fields }
Contract represents an ethereum contract in the state database. It contains the contract code, calling arguments. Contract implements ContractRef
func NewContract ¶
func NewContract(caller ContractRef, object ContractRef, value *big.Int, gas uint64) *Contract
NewContract returns a new contract environment for the execution of EVM.
func (*Contract) AsDelegate ¶
AsDelegate sets the contract to be a delegate call and returns the current contract (for chaining calls)
func (*Contract) Caller ¶
Caller returns the caller of the contract.
Caller will recursively call caller when the contract is a delegate call, including that of caller's caller.
func (*Contract) SetCallCode ¶
SetCallCode sets the code of the contract and address of the backing data object
func (*Contract) SetCodeOptionalHash ¶
SetCodeOptionalHash can be used to provide code, but it's optional to provide hash. In case hash is not provided, the jumpdest analysis will not be saved to the parent context
type ContractRef ¶
ContractRef is a reference to the contract's backing object
type EVM ¶
type EVM struct { // Context provides auxiliary blockchain related information Context BlockContext TxContext // StateDB gives access to the underlying state StateDB StateDB // virtual machine configuration options used to initialise the // evm. Config Config // contains filtered or unexported fields }
EVM is the Ethereum Virtual Machine base object and provides the necessary tools to run a contract on the given state with the provided context. It should be noted that any error generated through any of the calls should be considered a revert-state-and-consume-all-gas operation, no checks on specific errors should ever be performed. The interpreter makes sure that any errors generated are to be considered faulty code.
The EVM should never be reused and is not thread safe.
func NewEVM ¶
func NewEVM(blockCtx BlockContext, txCtx TxContext, statedb StateDB, chainConfig *params.ChainConfig, config Config) *EVM
NewEVM returns a new EVM. The returned EVM is not thread safe and should only ever be used *once*.
func (*EVM) Call ¶
func (evm *EVM) Call(caller ContractRef, addr common.Address, input []byte, gas uint64, value *big.Int) (ret []byte, leftOverGas uint64, err error)
Call executes the contract associated with the addr with the given input as parameters. It also handles any necessary value transfer required and takes the necessary steps to create accounts and reverses the state in case of an execution error or failed value transfer.
func (*EVM) CallCode ¶
func (evm *EVM) CallCode(caller ContractRef, addr common.Address, input []byte, gas uint64, value *big.Int) (ret []byte, leftOverGas uint64, err error)
CallCode executes the contract associated with the addr with the given input as parameters. It also handles any necessary value transfer required and takes the necessary steps to create accounts and reverses the state in case of an execution error or failed value transfer.
CallCode differs from Call in the sense that it executes the given address' code with the caller as context.
func (*EVM) Cancel ¶
func (evm *EVM) Cancel()
Cancel cancels any running EVM operation. This may be called concurrently and it's safe to be called multiple times.
func (*EVM) ChainConfig ¶
func (evm *EVM) ChainConfig() *params.ChainConfig
ChainConfig returns the environment's chain configuration
func (*EVM) Create ¶
func (evm *EVM) Create(caller ContractRef, code []byte, gas uint64, value *big.Int) (ret []byte, contractAddr common.Address, leftOverGas uint64, err error)
Create creates a new contract using code as deployment code.
func (*EVM) Create2 ¶
func (evm *EVM) Create2(caller ContractRef, code []byte, gas uint64, endowment *big.Int, salt *uint256.Int) (ret []byte, contractAddr common.Address, leftOverGas uint64, err error)
Create2 creates a new contract using code as deployment code.
The different between Create2 with Create is Create2 uses sha3(0xff ++ msg.sender ++ salt ++ sha3(init_code))[12:] instead of the usual sender-and-nonce-hash as the address where the contract is initialized at.
func (*EVM) DelegateCall ¶
func (evm *EVM) DelegateCall(caller ContractRef, addr common.Address, input []byte, gas uint64) (ret []byte, leftOverGas uint64, err error)
DelegateCall executes the contract associated with the addr with the given input as parameters. It reverses the state in case of an execution error.
DelegateCall differs from CallCode in the sense that it executes the given address' code with the caller as context and the caller is set to the caller of the caller.
func (*EVM) Interpreter ¶
func (evm *EVM) Interpreter() *EVMInterpreter
Interpreter returns the current interpreter
func (*EVM) Reset ¶
Reset resets the EVM with a new transaction context.Reset This is not threadsafe and should only be done very cautiously.
func (*EVM) StartGasMetering ¶ added in v0.3.1
func (evm *EVM) StartGasMetering()
func (*EVM) StaticCall ¶
func (evm *EVM) StaticCall(caller ContractRef, addr common.Address, input []byte, gas uint64) (ret []byte, leftOverGas uint64, err error)
StaticCall executes the contract associated with the addr with the given input as parameters while disallowing any modifications to the state during the call. Opcodes that attempt to perform such modifications will result in exceptions instead of performing the modifications.
func (*EVM) StopGasMetering ¶ added in v0.3.1
func (evm *EVM) StopGasMetering()
type EVMInterpreter ¶
type EVMInterpreter struct {
// contains filtered or unexported fields
}
EVMInterpreter represents an EVM interpreter
func NewEVMInterpreter ¶
func NewEVMInterpreter(evm *EVM, cfg Config) *EVMInterpreter
NewEVMInterpreter returns a new instance of the Interpreter.
func (*EVMInterpreter) Run ¶
func (in *EVMInterpreter) Run(contract *Contract, input []byte, readOnly bool) (ret []byte, err error)
Run loops and evaluates the contract's code with the given input data and returns the return byte-slice and an error if one occurred.
It's important to note that any errors returned by the interpreter should be considered a revert-and-consume-all-gas operation except for ErrExecutionReverted which means revert-and-keep-gas-left.
type EVMRunner ¶ added in v0.3.1
type EVMRunner interface { // Execute performs a potentially write operation over the runner's state // It can be seen as a message (input,value) from sender to recipient that returns `ret` Execute(recipient common.Address, input []byte, gas uint64, value *big.Int) (ret []byte, err error) // ExecuteFrom is like Execute, but lets you specify the sender to use for the EVM call. // It exists only for use in the Tobin tax calculation done as part of TobinTransfer, because that // originally used the transaction's sender instead of the zero address. ExecuteFrom(sender, recipient common.Address, input []byte, gas uint64, value *big.Int) (ret []byte, err error) // Query performs a read operation over the runner's state // It can be seen as a message (input,value) from sender to recipient that returns `ret` Query(recipient common.Address, input []byte, gas uint64) (ret []byte, err error) // StopGasMetering backward compatibility method to stop gas metering // Deprecated. DO NOT USE StopGasMetering() // StartGasMetering backward compatibility method to start gas metering // Deprecated. DO NOT USE StartGasMetering() }
EVMRunner provides a simplified API to run EVM calls EVM's sender, gasPrice, txFeeRecipient and state are set by the runner on each call This object can be re-used many times in contrast to the EVM's single use behaviour.
type EpochIDInfo ¶
func GetEpochFromHeight ¶
func GetEpochFromHeight(hh uint64) *EpochIDInfo
func GetEpochFromID ¶
func GetEpochFromID(eid uint64) *EpochIDInfo
func GetEpochFromRange ¶
func GetEpochFromRange(begin, end uint64) []*EpochIDInfo
func GetFirstEpoch ¶
func GetFirstEpoch() *EpochIDInfo
func FromBlock(block *SnailBlock) (begin, end uint64) { begin, end = 0, 0 l := len(block.Fruits()) if l > 0 { begin, end = block.Fruits()[0].FastNumber().Uint64(), block.Fruits()[l-1].FastNumber().Uint64() } return }
func GetPreFirstEpoch ¶
func GetPreFirstEpoch() *EpochIDInfo
func (*EpochIDInfo) String ¶
func (e *EpochIDInfo) String() string
type ErrInvalidOpCode ¶
type ErrInvalidOpCode struct {
// contains filtered or unexported fields
}
ErrInvalidOpCode wraps an evm error when an invalid opcode is encountered.
func (*ErrInvalidOpCode) Error ¶
func (e *ErrInvalidOpCode) Error() string
type ErrStackOverflow ¶
type ErrStackOverflow struct {
// contains filtered or unexported fields
}
ErrStackOverflow wraps an evm error when the items on the stack exceeds the maximum allowance.
func (*ErrStackOverflow) Error ¶
func (e *ErrStackOverflow) Error() string
type ErrStackUnderflow ¶
type ErrStackUnderflow struct {
// contains filtered or unexported fields
}
ErrStackUnderflow wraps an evm error when the items on the stack less than the minimal requirement.
func (*ErrStackUnderflow) Error ¶
func (e *ErrStackUnderflow) Error() string
type GetHashFunc ¶
GetHashFunc returns the n'th block hash in the blockchain and is used by the BLOCKHASH EVM op code.
type HeaderStore ¶
type HeaderStore struct {
// contains filtered or unexported fields
}
func CloneHeaderStore ¶
func CloneHeaderStore(src *HeaderStore) (dst *HeaderStore, err error)
func NewHeaderStore ¶
func NewHeaderStore() *HeaderStore
func (*HeaderStore) AddSyncTimes ¶
func (h *HeaderStore) AddSyncTimes(epochID, amount uint64, relayer common.Address)
func (*HeaderStore) CalcReward ¶
func (*HeaderStore) GetReceiveTimes ¶
func (h *HeaderStore) GetReceiveTimes(height uint64) uint64
func (*HeaderStore) GetSortedRelayers ¶
func (h *HeaderStore) GetSortedRelayers(epochID uint64) []common.Address
func (*HeaderStore) IncrReceiveTimes ¶
func (h *HeaderStore) IncrReceiveTimes(height uint64)
func (*HeaderStore) Load ¶
func (h *HeaderStore) Load(state StateDB, address common.Address) (err error)
func (*HeaderStore) LoadReward ¶
func (*HeaderStore) LoadSyncTimes ¶
func (h *HeaderStore) LoadSyncTimes(epochID uint64, relayer common.Address) uint64
func (*HeaderStore) Store ¶
func (h *HeaderStore) Store(state StateDB, address common.Address) error
func (*HeaderStore) StoreReward ¶
type HeaderStoreCache ¶
type JSONLogger ¶
type JSONLogger struct {
// contains filtered or unexported fields
}
func NewJSONLogger ¶
func NewJSONLogger(cfg *LogConfig, writer io.Writer) *JSONLogger
NewJSONLogger creates a new EVM tracer that prints execution steps as JSON objects into the provided stream.
func (*JSONLogger) CaptureEnd ¶
CaptureEnd is triggered at end of execution.
func (*JSONLogger) CaptureEnter ¶ added in v0.3.1
func (*JSONLogger) CaptureExit ¶ added in v0.3.1
func (l *JSONLogger) CaptureExit(output []byte, gasUsed uint64, err error)
func (*JSONLogger) CaptureFault ¶
func (l *JSONLogger) CaptureFault(*EVM, uint64, OpCode, uint64, uint64, *ScopeContext, int, error)
func (*JSONLogger) CaptureStart ¶
func (*JSONLogger) CaptureState ¶
func (l *JSONLogger) CaptureState(env *EVM, pc uint64, op OpCode, gas, cost uint64, scope *ScopeContext, rData []byte, depth int, err error)
CaptureState outputs state information on the logger.
type JumpTable ¶
type JumpTable [256]*operation
JumpTable contains the EVM opcodes supported at a given fork.
type LockValue ¶
func (LockValue) MarshalJSON ¶
MarshalJSON marshals as JSON.
func (*LockValue) UnmarshalJSON ¶
UnmarshalJSON unmarshals from JSON.
type LockedAsset ¶
type LockedAsset struct { LockValue []*LockValue `json:"lockValue"` Address common.Address `json:"address"` }
func (LockedAsset) MarshalJSON ¶
func (l LockedAsset) MarshalJSON() ([]byte, error)
MarshalJSON marshals as JSON.
func (*LockedAsset) UnmarshalJSON ¶
func (l *LockedAsset) UnmarshalJSON(input []byte) error
UnmarshalJSON unmarshals from JSON.
type LockedItem ¶
type LogConfig ¶
type LogConfig struct { EnableMemory bool // enable memory capture DisableStack bool // disable stack capture DisableStorage bool // disable storage capture EnableReturnData bool // enable return data capture Debug bool // print output during capture end Limit int // maximum length of output, but zero means unlimited // Chain overrides, can be used to execute a trace using future fork rules Overrides *params.ChainConfig `json:"overrides,omitempty"` }
LogConfig are the configuration options for structured logger the EVM
type Memory ¶
type Memory struct {
// contains filtered or unexported fields
}
Memory implements a simple memory model for the ethereum virtual machine.
type OpCode ¶
type OpCode byte
OpCode is an EVM opcode
0x0 range - arithmetic ops.
const ( LT OpCode = iota + 0x10 GT SLT SGT EQ ISZERO AND OR XOR NOT BYTE SHL SHR SAR SHA3 OpCode = 0x20 )
0x10 range - comparison ops.
const ( ADDRESS OpCode = 0x30 + iota BALANCE ORIGIN CALLER CALLVALUE CALLDATALOAD CALLDATASIZE CALLDATACOPY CODESIZE CODECOPY GASPRICE EXTCODESIZE EXTCODECOPY RETURNDATASIZE RETURNDATACOPY EXTCODEHASH )
0x30 range - closure state.
const ( BLOCKHASH OpCode = 0x40 + iota COINBASE TIMESTAMP NUMBER DIFFICULTY GASLIMIT CHAINID OpCode = 0x46 SELFBALANCE OpCode = 0x47 BASEFEE OpCode = 0x48 )
0x40 range - block operations.
const ( POP OpCode = 0x50 MLOAD OpCode = 0x51 MSTORE OpCode = 0x52 MSTORE8 OpCode = 0x53 SLOAD OpCode = 0x54 SSTORE OpCode = 0x55 JUMP OpCode = 0x56 JUMPI OpCode = 0x57 PC OpCode = 0x58 MSIZE OpCode = 0x59 GAS OpCode = 0x5a JUMPDEST OpCode = 0x5b )
0x50 range - 'storage' and execution.
const ( PUSH1 OpCode = 0x60 + iota PUSH2 PUSH3 PUSH4 PUSH5 PUSH6 PUSH7 PUSH8 PUSH9 PUSH10 PUSH11 PUSH12 PUSH13 PUSH14 PUSH15 PUSH16 PUSH17 PUSH18 PUSH19 PUSH20 PUSH21 PUSH22 PUSH23 PUSH24 PUSH25 PUSH26 PUSH27 PUSH28 PUSH29 PUSH30 PUSH31 PUSH32 DUP1 DUP2 DUP3 DUP4 DUP5 DUP6 DUP7 DUP8 DUP9 DUP10 DUP11 DUP12 DUP13 DUP14 DUP15 DUP16 SWAP1 SWAP2 SWAP3 SWAP4 SWAP5 SWAP6 SWAP7 SWAP8 SWAP9 SWAP10 SWAP11 SWAP12 SWAP13 SWAP14 SWAP15 SWAP16 )
0x60 range.
const ( CREATE OpCode = 0xf0 + iota CALL CALLCODE RETURN DELEGATECALL CREATE2 STATICCALL OpCode = 0xfa REVERT OpCode = 0xfd SELFDESTRUCT OpCode = 0xff )
0xf0 range - closures.
func StringToOp ¶
StringToOp finds the opcode whose name is stored in `str`.
func (OpCode) IsStaticJump ¶
IsStaticJump specifies if an opcode is JUMP.
type PairRegisterValue ¶
///////////////////////////////////////////////////////////////////////////////
type PrecompiledContract ¶
type PrecompiledContract interface { RequiredGas(input []byte) uint64 // RequiredPrice calculates the contract gas use Run(evm *EVM, contract *Contract, input []byte) ([]byte, error) // Run runs the precompiled contract }
PrecompiledContract is the basic interface for native Go contracts. The implementation requires a deterministic gas count based on the input size of the Run method of the contract.
type Register ¶
type Register []*RegisterAccount
type RegisterAccount ¶
type RegisterAccount struct { Unit *registerUnit Relayer bool Modify *AlterableInfo }
type RegisterImpl ¶
type RegisterImpl struct {
// contains filtered or unexported fields
}
/////////////////////////////////////////////////////////////////////////////// be thread-safe for caller locked
func CloneRegisterImpl ¶
func CloneRegisterImpl(ori *RegisterImpl) *RegisterImpl
func NewRegisterImpl ¶
func NewRegisterImpl() *RegisterImpl
func (*RegisterImpl) AppendAmount ¶
func (*RegisterImpl) CancelAccount ¶
CancelAccount cancel amount of asset for register account,it will be work in next epoch
func (*RegisterImpl) Counts ¶
func (i *RegisterImpl) Counts() int
func (*RegisterImpl) DoElections ¶
func (i *RegisterImpl) DoElections(state StateDB, epochid, height uint64) ([]*RegisterAccount, error)
DoElections called by consensus while it closer the end of epoch
func (*RegisterImpl) EncodeRLP ¶
func (i *RegisterImpl) EncodeRLP(w io.Writer) error
EncodeRLP serializes b into the atlaschain RLP RegisterImpl format.
func (*RegisterImpl) GetAllRegisterAccount ¶
func (i *RegisterImpl) GetAllRegisterAccount() Register
/////////////////////////////////////////////////////////////////////////////// return all register accounts of the current epoch
func (*RegisterImpl) GetBalance ¶
func (*RegisterImpl) GetCurrentEpochID ¶ added in v0.3.1
func (i *RegisterImpl) GetCurrentEpochID() uint64
func (*RegisterImpl) GetCurrentEpochInfo ¶
func (i *RegisterImpl) GetCurrentEpochInfo() ([]*EpochIDInfo, uint64)
func (*RegisterImpl) GetRegisterAccount ¶
func (i *RegisterImpl) GetRegisterAccount(epochid uint64, addr common.Address) (*RegisterAccount, error)
func (*RegisterImpl) InsertAccount2 ¶
func (*RegisterImpl) Load ¶
func (i *RegisterImpl) Load(state StateDB, preAddress common.Address) error
func (*RegisterImpl) MakeModifyStateByTip10 ¶
func (i *RegisterImpl) MakeModifyStateByTip10()
func (*RegisterImpl) RedeemAccount ¶
RedeemAccount redeem amount of asset for register account,it will locked for a certain time
func (*RegisterImpl) Save ¶
func (i *RegisterImpl) Save(state StateDB, preAddress common.Address) error
func (*RegisterImpl) SetCurrentEpoch ¶
func (i *RegisterImpl) SetCurrentEpoch(eid uint64)
func (*RegisterImpl) Shift ¶
func (i *RegisterImpl) Shift(epochid, effectHeight uint64) error
Shift will move the register account which has election flag to the next epoch it will be save the whole state in the current epoch end block after it called by consensus
func (*RegisterImpl) Summay ¶
func (i *RegisterImpl) Summay() *RegisterSummay
func (*RegisterImpl) UpdateSAPK ¶
type RegisterSummay ¶
type RegisterSummay struct { LastReward uint64 Accounts uint64 AllAmount *big.Int Infos []*SummayEpochInfo }
type RelayerCache ¶
var IC *RelayerCache
///////////////////////////////////////////////////////////////////////////////
type RelayerSyncInfo ¶
type RelayerValue ¶
the key is epochid if RelayerValue as a locked asset,otherwise key is block height if RelayerValue as a register asset
func (*RelayerValue) ToUnlockedValue ¶
func (s *RelayerValue) ToUnlockedValue(height uint64) *big.Int
func (*RelayerValue) ToUnlockingValue ¶
func (s *RelayerValue) ToUnlockingValue(height uint64) *big.Int
type RewardInfo ¶
type RewardInfo struct { Address common.Address `json:"Address"` Amount *big.Int `json:"Amount"` Register *big.Int `json:"register"` }
func FetchOne ¶
func FetchOne(sas []*RewardInfos, addr common.Address) []*RewardInfo
func ToRewardInfos1 ¶
func ToRewardInfos1(items map[common.Address]*big.Int) []*RewardInfo
func (*RewardInfo) String ¶
func (e *RewardInfo) String() string
func (*RewardInfo) ToJson ¶
func (e *RewardInfo) ToJson() map[string]interface{}
type RewardInfos ¶
type RewardInfos struct {
Items []*RewardInfo `json:"Items"`
}
func ToRewardInfos2 ¶
func ToRewardInfos2(items map[common.Address]*big.Int) []*RewardInfos
func (*RewardInfos) String ¶
func (s *RewardInfos) String() string
func (*RewardInfos) StringToToken ¶
func (s *RewardInfos) StringToToken() map[string]interface{}
type ScopeContext ¶
ScopeContext contains the things that are per-call, such as stack and memory, but not transients like pc and gas
type Stack ¶
type Stack struct {
// contains filtered or unexported fields
}
Stack is an object for basic stack operations. Items popped to the stack are expected to be changed and modified. stack does not take care of adding newly initialised objects.
type StateDB ¶
type StateDB interface { CreateAccount(common.Address) SubBalance(common.Address, *big.Int) AddBalance(common.Address, *big.Int) GetBalance(common.Address) *big.Int GetNonce(common.Address) uint64 SetNonce(common.Address, uint64) GetCodeHash(common.Address) common.Hash GetCode(common.Address) []byte SetCode(common.Address, []byte) GetCodeSize(common.Address) int AddRefund(uint64) SubRefund(uint64) GetRefund() uint64 GetCommittedState(common.Address, common.Hash) common.Hash GetState(common.Address, common.Hash) common.Hash SetState(common.Address, common.Hash, common.Hash) GetPOWState(common.Address, common.Hash) []byte SetPOWState(common.Address, common.Hash, []byte) Suicide(common.Address) bool HasSuicided(common.Address) bool // Exist reports whether the given account exists in state. // Notably this should also return true for suicided accounts. Exist(common.Address) bool // Empty returns whether the given account is empty. Empty // is defined according to EIP161 (balance = nonce = code = 0). Empty(common.Address) bool PrepareAccessList(sender common.Address, dest *common.Address, precompiles []common.Address, txAccesses types.AccessList) AddressInAccessList(addr common.Address) bool SlotInAccessList(addr common.Address, slot common.Hash) (addressOk bool, slotOk bool) // AddAddressToAccessList adds the given address to the access list. This operation is safe to perform // even if the feature/fork is not active yet AddAddressToAccessList(addr common.Address) // AddSlotToAccessList adds the given (address,slot) to the access list. This operation is safe to perform // even if the feature/fork is not active yet AddSlotToAccessList(addr common.Address, slot common.Hash) RevertToSnapshot(int) Snapshot() int AddLog(*types.Log) AddPreimage(common.Hash, []byte) ForEachStorage(common.Address, func(common.Hash, common.Hash) bool) error ForEachPOWStorage(common.Address, func(common.Hash, []byte) bool) GetUnlockedBalance(addr common.Address) *big.Int GetLockedBalance(addr common.Address) *big.Int SetLockedBalance(addr common.Address, value *big.Int) }
StateDB is an EVM database for full state querying.
type StructLog ¶
type StructLog struct { Pc uint64 `json:"pc"` Op OpCode `json:"op"` Gas uint64 `json:"gas"` GasCost uint64 `json:"gasCost"` Memory []byte `json:"memory"` MemorySize int `json:"memSize"` Stack []uint256.Int `json:"stack"` ReturnData []byte `json:"returnData"` Storage map[common.Hash]common.Hash `json:"-"` Depth int `json:"depth"` RefundCounter uint64 `json:"refund"` Err error `json:"-"` }
StructLog is emitted to the EVM each cycle and lists information about the current internal state prior to the execution of the statement.
func (*StructLog) ErrorString ¶
ErrorString formats the log's error as a string.
func (StructLog) MarshalJSON ¶
MarshalJSON marshals as JSON.
func (*StructLog) UnmarshalJSON ¶
UnmarshalJSON unmarshals from JSON.
type StructLogger ¶
type StructLogger struct {
// contains filtered or unexported fields
}
StructLogger is an EVM state logger and implements Tracer.
StructLogger can capture state based on the given Log configuration and also keeps a track record of modified storage which is used in reporting snapshots of the contract their storage.
func NewStructLogger ¶
func NewStructLogger(cfg *LogConfig) *StructLogger
NewStructLogger returns a new logger
func (*StructLogger) CaptureEnd ¶
CaptureEnd is called after the call finishes to finalize the tracing.
func (*StructLogger) CaptureEnter ¶ added in v0.3.1
func (*StructLogger) CaptureExit ¶ added in v0.3.1
func (l *StructLogger) CaptureExit(output []byte, gasUsed uint64, err error)
func (*StructLogger) CaptureFault ¶
func (l *StructLogger) CaptureFault(env *EVM, pc uint64, op OpCode, gas, cost uint64, scope *ScopeContext, depth int, err error)
CaptureFault implements the Tracer interface to trace an execution fault while running an opcode.
func (*StructLogger) CaptureStart ¶
func (l *StructLogger) CaptureStart(env *EVM, from common.Address, to common.Address, create bool, input []byte, gas uint64, value *big.Int)
CaptureStart implements the Tracer interface to initialize the tracing operation.
func (*StructLogger) CaptureState ¶
func (l *StructLogger) CaptureState(env *EVM, pc uint64, op OpCode, gas, cost uint64, scope *ScopeContext, rData []byte, depth int, err error)
CaptureState logs a new structured log message and pushes it out to the environment
CaptureState also tracks SLOAD/SSTORE ops to track storage change.
func (*StructLogger) Error ¶
func (l *StructLogger) Error() error
Error returns the VM error captured by the trace.
func (*StructLogger) Output ¶
func (l *StructLogger) Output() []byte
Output returns the VM return value captured by the trace.
func (*StructLogger) Reset ¶ added in v0.3.1
func (l *StructLogger) Reset()
Reset clears the data held by the logger.
func (*StructLogger) StructLogs ¶
func (l *StructLogger) StructLogs() []StructLog
StructLogs returns the captured log entries.
type SummayEpochInfo ¶
type TimedChainReward ¶
type TimedChainReward struct { St uint64 Number uint64 Reward *ChainReward }
type Tracer ¶
type Tracer interface { CaptureStart(env *EVM, from common.Address, to common.Address, create bool, input []byte, gas uint64, value *big.Int) CaptureState(env *EVM, pc uint64, op OpCode, gas, cost uint64, scope *ScopeContext, rData []byte, depth int, err error) CaptureEnter(typ OpCode, from common.Address, to common.Address, input []byte, gas uint64, value *big.Int) CaptureExit(output []byte, gasUsed uint64, err error) CaptureFault(env *EVM, pc uint64, op OpCode, gas, cost uint64, scope *ScopeContext, depth int, err error) CaptureEnd(output []byte, gasUsed uint64, t time.Duration, err error) }
Tracer is used to collect execution traces from an EVM transaction execution. CaptureState is called for each step of the VM with the current VM state. Note that reference types are actual VM data structures; make copies if you need to retain them beyond the current call.
type TransferFunc ¶
TransferFunc is the signature of a transfer function
Source Files ¶
- access_list_tracer.go
- analysis.go
- common.go
- contract.go
- contracts.go
- doc.go
- eips.go
- errors.go
- evm.go
- extstore.go
- gas.go
- gas_table.go
- gen_structlog.go
- headerstore.go
- instructions.go
- interface.go
- interpreter.go
- jump_table.go
- logger.go
- logger_json.go
- memory.go
- memory_table.go
- opcodes.go
- operations_acl.go
- relayer.go
- relayerUtil.go
- relayer_api.go
- relayer_external.go
- stack.go
- stack_table.go
- store.go
- tx_verify.go