Documentation ¶
Overview ¶
Copyright (c) 2018 The MATRIX Authors Distributed under the MIT software license, see the accompanying file COPYING or http://www.opensource.org/licenses/mit-license.php
Copyright (c) 2018 The MATRIX Authors Distributed under the MIT software license, see the accompanying file COPYING or http://www.opensource.org/licenses/mit-license.php
Package vm implements the Matrix 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 Matrix yellow paper.
Copyright (c) 2018 The MATRIX Authors Distributed under the MIT software license, see the accompanying file COPYING or http://www.opensource.org/licenses/mit-license.php
Copyright (c) 2018 The MATRIX Authors Distributed under the MIT software license, see the accompanying file COPYING or http://www.opensource.org/licenses/mit-license.php
Copyright (c) 2018 The MATRIX Authors Distributed under the MIT software license, see the accompanying file COPYING or http://www.opensource.org/licenses/mit-license.php
Index ¶
- Constants
- Variables
- func AddContractLog(topics []common.Hash, data []byte, contract *Contract, evm *EVM)
- func EmergeKey(address common.Address, surffix string) common.Hash
- func NewByzantiumInstructionSet() *[256]operation
- func NewConstantinopleInstructionSet() *[256]operation
- func NewFrontierInstructionSet() *[256]operation
- func NewHomesteadInstructionSet() *[256]operation
- func NoopCanTransfer(db StateDBManager, from common.Address, balance *big.Int) bool
- func NoopTransfer(db StateDBManager, from, to common.Address, amount *big.Int)
- func RunPrecompiledContract(p PrecompiledContract, input []byte, contract *Contract, evm *EVM) (ret []byte, err error)
- func WriteLogs(writer io.Writer, logs []*types.Log)
- func WriteTrace(writer io.Writer, logs []StructLog)
- type AccountRef
- type BaseContract
- type BaseMethod
- func (bm *BaseMethod) Inputs() abi.Arguments
- func (bm *BaseMethod) MethodID() [4]byte
- func (bm *BaseMethod) MethodName() string
- func (bm *BaseMethod) Outputs() abi.Arguments
- func (bm *BaseMethod) RequiredGas(input []byte) uint64
- func (bm *BaseMethod) Run(input []byte, contract *Contract, evm *EVM) ([]byte, error)
- type CallContext
- type CanTransferFunc
- type Config
- type Context
- 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) SetCode(hash common.Hash, code []byte)
- func (c *Contract) UseGas(gas uint64) (ok bool)
- func (c *Contract) Value() *big.Int
- type ContractRef
- type DepositDetail
- type DepositInfo
- type DepositInterface
- type EVM
- func (evm *EVM) Call(caller ContractRef, addr common.Address, input []byte, gas uint64, ...) (ret []byte, leftOverGas uint64, shardings []uint, 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) 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) DelegateCall(caller ContractRef, addr common.Address, input []byte, gas uint64) (ret []byte, leftOverGas uint64, err error)
- func (evm *EVM) Interpreter() *Interpreter
- func (evm *EVM) StaticCall(caller ContractRef, addr common.Address, input []byte, gas uint64) (ret []byte, leftOverGas uint64, err error)
- type GetHashFunc
- type Interpreter
- type LogConfig
- type MatrixDeposit001
- func (md *MatrixDeposit001) AddDeposit(contract *Contract, stateDB StateDBManager, address common.Address) error
- func (md *MatrixDeposit001) AddInterest(contract *Contract, stateDB StateDBManager, addr common.Address, ...) error
- func (md *MatrixDeposit001) AddOnlineTime(contract *Contract, stateDB StateDBManager, address common.Address, ...) error
- func (md *MatrixDeposit001) AddSlash(contract *Contract, stateDB StateDBManager, addr common.Address, ...) error
- func (md *MatrixDeposit001) ConversionDeposit(contract *Contract, statedb StateDBManager, t uint64) map[common.Address]common.CheckDepositInfo
- func (md *MatrixDeposit001) GetAllDepositList(contract *Contract, stateDB StateDBManager, withDraw bool, headtime uint64) []DepositDetail
- func (md *MatrixDeposit001) GetAllInterest(contract *Contract, stateDB StateDBManager) map[common.Address]*big.Int
- func (md *MatrixDeposit001) GetAllSlash(contract *Contract, stateDB StateDBManager) map[common.Address]*big.Int
- func (md *MatrixDeposit001) GetAuthAccount(contract *Contract, stateDB StateDBManager, depositAccount common.Address) common.Address
- func (md *MatrixDeposit001) GetDeposit(contract *Contract, stateDB StateDBManager, address common.Address) *big.Int
- func (md *MatrixDeposit001) GetDepositAccount(contract *Contract, stateDB StateDBManager, authAccount common.Address) common.Address
- func (md *MatrixDeposit001) GetInterest(contract *Contract, stateDB StateDBManager, addr common.Address) *big.Int
- func (md *MatrixDeposit001) GetMinerDepositList(contract *Contract, stateDB StateDBManager) []DepositDetail
- func (md *MatrixDeposit001) GetOnlineTime(contract *Contract, stateDB StateDBManager, addr common.Address) *big.Int
- func (md *MatrixDeposit001) GetSlash(contract *Contract, stateDB StateDBManager, addr common.Address) *big.Int
- func (md *MatrixDeposit001) GetValidatorDepositList(contract *Contract, stateDB StateDBManager) []DepositDetail
- func (md *MatrixDeposit001) ResetInterest(contract *Contract, db StateDBManager, address common.Address) error
- func (md *MatrixDeposit001) ResetSlash(contract *Contract, db StateDBManager, address common.Address) error
- func (md *MatrixDeposit001) Run(in []byte, contract *Contract, evm *EVM) ([]byte, error)
- func (md *MatrixDeposit001) SetDeposit(contract *Contract, stateDB StateDBManager, address common.Address) error
- func (md *MatrixDeposit001) SetDepositListItem(contract *Contract, stateDB StateDBManager, index uint64, addr common.Address)
- func (md *MatrixDeposit001) SetInterest(contract *Contract, stateDB StateDBManager, addr common.Address, ...) error
- func (md *MatrixDeposit001) SetOnlineTime(contract *Contract, stateDB StateDBManager, address common.Address, ...) error
- func (md *MatrixDeposit001) SetSlash(contract *Contract, stateDB StateDBManager, addr common.Address, ...) error
- type MatrixDeposit002
- func (md *MatrixDeposit002) AddInterest(contract *Contract, stateDB StateDBManager, addr common.Address, ...) error
- func (md *MatrixDeposit002) AddSlash(contract *Contract, stateDB StateDBManager, addr common.Address, ...) error
- func (md *MatrixDeposit002) CheckWithdraw(dpb *common.DepositBase, headtime uint64) bool
- func (md *MatrixDeposit002) CheckWithdrawByInterest(dpb *common.DepositBase, headtime uint64) bool
- func (md *MatrixDeposit002) DelA0list(contract *Contract, stateDB StateDBManager, addr common.Address) error
- func (md *MatrixDeposit002) GetA0list(contract *Contract, stateDB StateDBManager) ([]common.Address, error)
- func (md *MatrixDeposit002) GetAllDepositList(contract *Contract, stateDB StateDBManager, withDraw bool, headtime uint64) []common.DepositBase
- func (md *MatrixDeposit002) GetAllDepositListByInterest(contract *Contract, stateDB StateDBManager, withDraw bool, headtime uint64) []common.DepositBase
- func (md *MatrixDeposit002) GetAllInterest(contract *Contract, stateDB StateDBManager, headTime uint64) map[common.Address]common.CalculateDeposit
- func (md *MatrixDeposit002) GetAuthAccount(contract *Contract, stateDB StateDBManager, depositAccount common.Address) common.Address
- func (md *MatrixDeposit002) GetDepositAccount(contract *Contract, stateDB StateDBManager, authAccount common.Address) common.Address
- func (md *MatrixDeposit002) GetDepositBase(contract *Contract, stateDB StateDBManager, addr common.Address) *common.DepositBase
- func (md *MatrixDeposit002) GetDepositRole(contract *Contract, stateDB StateDBManager) (dproles []common.DepositRoles)
- func (md *MatrixDeposit002) GetInterest(contract *Contract, stateDB StateDBManager, addr common.Address) common.CalculateDeposit
- func (md *MatrixDeposit002) GetOnlineTime(contract *Contract, stateDB StateDBManager, addr common.Address) *big.Int
- func (md *MatrixDeposit002) GetSlash(contract *Contract, stateDB StateDBManager, addr common.Address) common.CalculateDeposit
- func (md *MatrixDeposit002) PayInterest(contract *Contract, stateDB StateDBManager, addrA0 common.Address, ...) error
- func (md *MatrixDeposit002) ResetInterest(contract *Contract, db StateDBManager, address common.Address) error
- func (md *MatrixDeposit002) ResetSlash(contract *Contract, db StateDBManager, address common.Address) error
- func (md *MatrixDeposit002) Run(in []byte, contract *Contract, evm *EVM) ([]byte, error)
- func (md *MatrixDeposit002) SetA0list(contract *Contract, stateDB StateDBManager) error
- func (md *MatrixDeposit002) SetDepositBase(contract *Contract, stateDB StateDBManager, addr common.Address, ...) error
- func (md *MatrixDeposit002) SetDepositRole(contract *Contract, stateDB StateDBManager, role *big.Int) error
- func (md *MatrixDeposit002) SetInterest(contract *Contract, stateDB StateDBManager, addr common.Address, ...) error
- func (md *MatrixDeposit002) SetOnlineTime(contract *Contract, stateDB StateDBManager, address common.Address, ...) error
- func (md *MatrixDeposit002) SetSlash(contract *Contract, stateDB StateDBManager, addr common.Address, ...) error
- type MatrixDepositVersion
- type Memory
- type MethodInterface
- type NoopEVMCallContext
- func (NoopEVMCallContext) Call(caller ContractRef, addr common.Address, data []byte, gas, value *big.Int) ([]byte, error)
- func (NoopEVMCallContext) CallCode(caller ContractRef, addr common.Address, data []byte, gas, value *big.Int) ([]byte, error)
- func (NoopEVMCallContext) Create(caller ContractRef, data []byte, gas, value *big.Int) ([]byte, common.Address, error)
- func (NoopEVMCallContext) DelegateCall(me ContractRef, addr common.Address, data []byte, gas *big.Int) ([]byte, error)
- type NoopStateDB
- func (NoopStateDB) AddBalance(common.Address, *big.Int)
- func (NoopStateDB) AddLog(*types.Log)
- func (NoopStateDB) AddPreimage(common.Hash, []byte)
- func (NoopStateDB) AddRefund(uint64)
- func (NoopStateDB) CreateAccount(common.Address)
- func (NoopStateDB) Empty(common.Address) bool
- func (NoopStateDB) Exist(common.Address) bool
- func (NoopStateDB) ForEachStorage(common.Address, func(common.Hash, common.Hash) bool)
- func (NoopStateDB) GetBalance(common.Address) *big.Int
- func (NoopStateDB) GetCode(common.Address) []byte
- func (NoopStateDB) GetCodeHash(common.Address) common.Hash
- func (NoopStateDB) GetCodeSize(common.Address) int
- func (NoopStateDB) GetNonce(common.Address) uint64
- func (NoopStateDB) GetRefund() uint64
- func (NoopStateDB) GetState(common.Address, common.Hash) common.Hash
- func (NoopStateDB) HasSuicided(common.Address) bool
- func (NoopStateDB) RevertToSnapshot(int)
- func (NoopStateDB) SetCode(common.Address, []byte)
- func (NoopStateDB) SetNonce(common.Address, uint64)
- func (NoopStateDB) SetState(common.Address, common.Hash, common.Hash)
- func (NoopStateDB) Snapshot() int
- func (NoopStateDB) SubBalance(common.Address, *big.Int)
- func (NoopStateDB) Suicide(common.Address) bool
- type OpCode
- type OwnerInfo
- type PrecompiledContract
- type RateInfo
- type RateOption
- type RewardRate
- type Stack
- type StateDB
- type StateDBManager
- type Storage
- type StructLog
- type StructLogger
- func (l *StructLogger) CaptureEnd(output []byte, gasUsed uint64, t time.Duration, err error) error
- func (l *StructLogger) CaptureFault(env *EVM, pc uint64, op OpCode, gas, cost uint64, memory *Memory, stack *Stack, ...) error
- func (l *StructLogger) CaptureStart(from common.Address, to common.Address, create bool, input []byte, gas uint64, ...) error
- func (l *StructLogger) CaptureState(env *EVM, pc uint64, op OpCode, gas, cost uint64, memory *Memory, stack *Stack, ...) error
- func (l *StructLogger) Error() error
- func (l *StructLogger) Output() []byte
- func (l *StructLogger) StructLogs() []StructLog
- type Tracer
- type TransInterestsInterface
- type TransferFunc
- type ValidatorContractState
- func (vc *ValidatorContractState) Find(address common.Address) bool
- func (vc *ValidatorContractState) GetState(contractAdress common.Address, state StateDBManager) error
- func (vc *ValidatorContractState) GetValidatorGroupInfo(time uint64, state StateDBManager) (map[common.Address]*ValidatorGroupState, error)
- func (vc *ValidatorContractState) Insert(address common.Address)
- func (vc *ValidatorContractState) RemoveEmptyValidatorGroup(address common.Address, state StateDBManager) error
- func (vc *ValidatorContractState) SetState(contractAddress common.Address, state StateDBManager) error
- type ValidatorGroup
- func (vg *ValidatorGroup) AddDepositLog(dType *big.Int, contract *Contract, evm *EVM) error
- func (vg *ValidatorGroup) AddDepositMethod()
- func (vg *ValidatorGroup) AddRefundLog(dtype *big.Int, contract *Contract, evm *EVM) error
- func (vg *ValidatorGroup) AddWithdrawLog(amount, dtype *big.Int, contract *Contract, evm *EVM) error
- func (vg *ValidatorGroup) AnonymousMethod()
- func (vg *ValidatorGroup) Constructor(conAddr, signAddr, Owner common.Address, dType, OwnerRate, nodeRate *big.Int, ...) error
- func (vg *ValidatorGroup) GetRewardMethod()
- func (vg *ValidatorGroup) RefundMethod()
- func (vg *ValidatorGroup) SetSignAccountMethod()
- func (vg *ValidatorGroup) TransferCurrentInterests(amount *big.Int, time uint64, contractAddress common.Address, ...) error
- func (vg *ValidatorGroup) TransferMan(contract *Contract, evm *EVM) error
- func (vg *ValidatorGroup) TransferOwnershipMethod()
- func (vg *ValidatorGroup) TransferRewards(amount *big.Int, time uint64, contractAddress common.Address, ...) error
- func (vg *ValidatorGroup) WithdrawAllMethod()
- func (vg *ValidatorGroup) WithdrawMethod()
- type ValidatorGroupContract
- func (vg *ValidatorGroupContract) AddCreateValidatorGroupLog(signAccount, newContract common.Address, dType *big.Int, contract *Contract, ...) error
- func (vg *ValidatorGroupContract) CreateValidatorGroupMethod()
- func (vg *ValidatorGroupContract) IsPrecompiledContract(address common.Address) bool
- func (vg *ValidatorGroupContract) ListValidatorGroup()
- func (vg *ValidatorGroupContract) TransferCurrentInterests(amount *big.Int, time uint64, contractAddress common.Address, ...) error
- func (vg *ValidatorGroupContract) TransferInterests(amount *big.Int, position uint64, time uint64, address common.Address, ...) error
- func (vg *ValidatorGroupContract) TransferRewards(amount *big.Int, time uint64, contractAddress common.Address, ...) error
- type ValidatorGroupState
- func (vc *ValidatorGroupState) CalDepositWeight(address common.Address, amount *big.Int) *big.Int
- func (vc *ValidatorGroupState) CheckEmptyValidatorGroupState(contractAddress common.Address, state StateDBManager) bool
- func (vc *ValidatorGroupState) CheckValidatorInfo(valiInfo *validatorGroup.ValidatorInfo, contractAddress common.Address, ...) error
- func (vc *ValidatorGroupState) DistributeAmount(amount *big.Int, getDepoist func(*validatorGroup.ValidatorInfo) *big.Int, ...) error
- func (vc *ValidatorGroupState) DistributeCurrentInterests(amount *big.Int) error
- func (vc *ValidatorGroupState) DistributeRewards(amount *big.Int) error
- func (vc *ValidatorGroupState) GetAllDepositInfo(contractAddress common.Address, state StateDBManager) *common.DepositBase
- func (vc *ValidatorGroupState) GetOwner(contractAddress common.Address, state StateDBManager) error
- func (vc *ValidatorGroupState) GetReward(contractAddress common.Address, state StateDBManager) error
- func (vc *ValidatorGroupState) GetState(contractAddress common.Address, time uint64, state StateDBManager) error
- func (vc *ValidatorGroupState) GetValidatorMap(contractAddress common.Address, time uint64, state StateDBManager) error
- func (vc *ValidatorGroupState) SetOwner(contractAddress common.Address, state StateDBManager) error
- func (vc *ValidatorGroupState) SetReward(contractAddress common.Address, state StateDBManager) error
- func (vc *ValidatorGroupState) SetRewardRate(OwnerRate, nodeRate *big.Int, lvlRate []*big.Int) error
- func (vc *ValidatorGroupState) SetState(contractAddress common.Address, state StateDBManager) error
- func (vc *ValidatorGroupState) SetValidatorMap(contractAddress common.Address, state StateDBManager) error
- func (vc *ValidatorGroupState) SuicideContract(contractAddress common.Address, state StateDBManager) (bool, error)
Constants ¶
const ( KeyDepositNum = "DepositNum" KeyDepositA0list = "DepositA0list" KeyDepositRole = "DepositRole" KeyDepositInfo = "DepositInfo" )
const ( GasQuickStep uint64 = 2 GasFastestStep uint64 = 3 GasFastStep uint64 = 5 GasMidStep uint64 = 8 GasSlowStep uint64 = 10 GasExtStep uint64 = 20 GasReturn uint64 = 0 GasStop uint64 = 0 GasContractByte uint64 = 200 )
const ( // 0xf0 range - closures CREATE OpCode = 0xf0 + iota CALL CALLCODE RETURN DELEGATECALL STATICCALL = 0xfa REVERT = 0xfd SELFDESTRUCT = 0xff )
Variables ¶
var ( ErrOutOfGas = errors.New("out of gas") ErrCodeStoreOutOfGas = errors.New("contract creation code storage out of gas") ErrDepth = errors.New("max call depth exceeded") ErrTraceLimitReached = errors.New("the number of logs reached the specified limit") ErrInsufficientBalance = errors.New("insufficient balance for transfer") ErrContractAddressCollision = errors.New("contract address collision") )
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{}, common.BytesToAddress([]byte{6}): &bn256Add{}, common.BytesToAddress([]byte{7}): &bn256ScalarMul{}, common.BytesToAddress([]byte{8}): &bn256Pairing{}, common.BytesToAddress([]byte{10}): &MatrixDepositVersion{}, }
PrecompiledContractsByzantium contains the default set of pre-compiled Matrix contracts used in the Byzantium release.
var (
ValidatorGroupContractAddress = common.BytesToAddress([]byte{20})
)
var (
_, Abierr = abi.JSON(strings.NewReader(depositDef))
)
var (
_, Abierr_v2 = abi.JSON(strings.NewReader(depositDef_v2))
)
{"constant": true,"inputs": [{"name": "addr","type": "address"}],"name": "getDepositInfo","outputs": [{"name": "","type": "uint256"},{"name": "","type": "address"},{"name": "","type": "uint256"}, {"name": "","type": "uint256"}],"payable": false,"stateMutability": "view","type": "function"},
Functions ¶
func AddContractLog ¶
func NewByzantiumInstructionSet ¶
func NewByzantiumInstructionSet() *[256]operation
NewByzantiumInstructionSet returns the frontier, homestead and byzantium instructions.
func NewConstantinopleInstructionSet ¶
func NewConstantinopleInstructionSet() *[256]operation
NewConstantinopleInstructionSet returns the frontier, homestead byzantium and contantinople instructions.
func NewFrontierInstructionSet ¶
func NewFrontierInstructionSet() *[256]operation
NewFrontierInstructionSet returns the frontier instructions that can be executed during the frontier phase.
func NewHomesteadInstructionSet ¶
func NewHomesteadInstructionSet() *[256]operation
NewHomesteadInstructionSet returns the frontier and homestead instructions that can be executed during the homestead phase.
func NoopCanTransfer ¶
func NoopTransfer ¶
func NoopTransfer(db StateDBManager, from, to common.Address, amount *big.Int)
func RunPrecompiledContract ¶
func RunPrecompiledContract(p PrecompiledContract, input []byte, contract *Contract, evm *EVM) (ret []byte, err error)
RunPrecompiledContract runs and evaluates the output of a precompiled contract.
func WriteTrace ¶
WriteTrace writes a formatted trace to the given writer
Types ¶
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 BaseContract ¶
type BaseContract struct {
// contains filtered or unexported fields
}
func (*BaseContract) AddMethod ¶
func (bc *BaseContract) AddMethod(md MethodInterface)
func (*BaseContract) GetMethod ¶
func (bc *BaseContract) GetMethod(input []byte) PrecompiledContract
func (*BaseContract) RequiredGas ¶
func (bc *BaseContract) RequiredGas(input []byte) uint64
type BaseMethod ¶
type BaseMethod struct { Name string Abi *abi.ABI GasUsed uint64 // contains filtered or unexported fields }
func (*BaseMethod) Inputs ¶
func (bm *BaseMethod) Inputs() abi.Arguments
func (*BaseMethod) MethodID ¶
func (bm *BaseMethod) MethodID() [4]byte
func (bm* BaseMethod)getFuncID(abi *abi.ABI,funcName string)[4]byte{ funId := abi.Methods[funcName].Id() var ID [4]byte copy(ID[:],funId[:4]) return ID }
func (*BaseMethod) MethodName ¶
func (bm *BaseMethod) MethodName() string
func (*BaseMethod) Outputs ¶
func (bm *BaseMethod) Outputs() abi.Arguments
func (*BaseMethod) RequiredGas ¶
func (bm *BaseMethod) RequiredGas(input []byte) uint64
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 EVM depends on this context being implemented for doing subcalls and initialising new EVM contracts.
type CanTransferFunc ¶
type Config ¶
type Config struct { // Debug enabled debugging Interpreter options Debug bool // Tracer is the op code logger Tracer Tracer // NoRecursion disabled Interpreter call, callcode, // delegate call and create. NoRecursion bool // Enable recording of SHA3/keccak preimages EnablePreimageRecording bool // JumpTable contains the EVM instruction table. This // may be left uninitialised and will be set to the default // table. JumpTable *[256]operation }
Config are the configuration options for the Interpreter
type Context ¶
type Context struct { // CanTransfer returns whether the account contains // sufficient man to transfer the value CanTransfer CanTransferFunc // Transfer transfers man from one account to the other Transfer TransferFunc // GetHash returns the hash corresponding to n GetHash GetHashFunc // Message information Origin common.Address // Provides information for ORIGIN GasPrice *big.Int // Provides information for GASPRICE // 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 }
Context provides the EVM with auxiliary information. Once provided it shouldn't be modified.
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 Args []byte DelegateCall bool CoinTyp string // contains filtered or unexported fields }
Contract represents an matrix contract in the state database. It contains the the contract code, calling arguments. Contract implements ContractRef
func NewContract ¶
func NewContract(caller ContractRef, object ContractRef, value *big.Int, gas uint64, typ string) *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
type ContractRef ¶
ContractRef is a reference to the contract's backing object
type DepositDetail ¶
type DepositInterface ¶
type DepositInterface interface {
GetDepositBase(contract *Contract, stateDB StateDBManager, addr common.Address) *common.DepositBase
}
type EVM ¶
type EVM struct { // Context provides auxiliary blockchain related information Context // StateDB gives access to the underlying state StateDB StateDBManager Cointyp string // contains filtered or unexported fields }
EVM is the Matrix 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(ctx Context, statedb StateDBManager, chainConfig *params.ChainConfig, vmConfig Config, cointyp string) *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, shardings []uint, 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) 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() *Interpreter
Interpreter returns the EVM interpreter
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.
type GetHashFunc ¶
GetHashFunc returns the nth block hash in the blockchain and is used by the BLOCKHASH EVM op code.
type Interpreter ¶
type Interpreter struct {
// contains filtered or unexported fields
}
Interpreter is used to run Matrix based contracts and will utilise the passed environment to query external sources for state information. The Interpreter will run the byte code VM based on the passed configuration.
func NewInterpreter ¶
func NewInterpreter(evm *EVM, cfg Config) *Interpreter
NewInterpreter returns a new instance of the Interpreter.
func (*Interpreter) Run ¶
func (in *Interpreter) Run(contract *Contract, input []byte) (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 LogConfig ¶
type LogConfig struct { DisableMemory bool // disable memory capture DisableStack bool // disable stack capture DisableStorage bool // disable storage capture Debug bool // print output during capture end Limit int // maximum length of output, but zero means unlimited }
LogConfig are the configuration options for structured logger the EVM
type MatrixDeposit001 ¶
type MatrixDeposit001 struct { }
func (*MatrixDeposit001) AddDeposit ¶
func (md *MatrixDeposit001) AddDeposit(contract *Contract, stateDB StateDBManager, address common.Address) error
AddDeposit add deposit.
func (*MatrixDeposit001) AddInterest ¶
func (md *MatrixDeposit001) AddInterest(contract *Contract, stateDB StateDBManager, addr common.Address, interest *big.Int) error
AddInterest add current interest with state db and address.
func (*MatrixDeposit001) AddOnlineTime ¶
func (md *MatrixDeposit001) AddOnlineTime(contract *Contract, stateDB StateDBManager, address common.Address, ot *big.Int) error
func (*MatrixDeposit001) AddSlash ¶
func (md *MatrixDeposit001) AddSlash(contract *Contract, stateDB StateDBManager, addr common.Address, slash *big.Int) error
AddSlash add current slash with state db and address.
func (*MatrixDeposit001) ConversionDeposit ¶
func (md *MatrixDeposit001) ConversionDeposit(contract *Contract, statedb StateDBManager, t uint64) map[common.Address]common.CheckDepositInfo
func (*MatrixDeposit001) GetAllDepositList ¶
func (md *MatrixDeposit001) GetAllDepositList(contract *Contract, stateDB StateDBManager, withDraw bool, headtime uint64) []DepositDetail
func (*MatrixDeposit001) GetAllInterest ¶
func (md *MatrixDeposit001) GetAllInterest(contract *Contract, stateDB StateDBManager) map[common.Address]*big.Int
GetAllInterest get all account interest.
func (*MatrixDeposit001) GetAllSlash ¶
func (md *MatrixDeposit001) GetAllSlash(contract *Contract, stateDB StateDBManager) map[common.Address]*big.Int
GetAllSlash get all account slash.
func (*MatrixDeposit001) GetAuthAccount ¶
func (md *MatrixDeposit001) GetAuthAccount(contract *Contract, stateDB StateDBManager, depositAccount common.Address) common.Address
func (*MatrixDeposit001) GetDeposit ¶
func (md *MatrixDeposit001) GetDeposit(contract *Contract, stateDB StateDBManager, address common.Address) *big.Int
GetDeposit get deposit.
func (*MatrixDeposit001) GetDepositAccount ¶
func (md *MatrixDeposit001) GetDepositAccount(contract *Contract, stateDB StateDBManager, authAccount common.Address) common.Address
func (*MatrixDeposit001) GetInterest ¶
func (md *MatrixDeposit001) GetInterest(contract *Contract, stateDB StateDBManager, addr common.Address) *big.Int
GetInterest get current interest with state db and address.
func (*MatrixDeposit001) GetMinerDepositList ¶
func (md *MatrixDeposit001) GetMinerDepositList(contract *Contract, stateDB StateDBManager) []DepositDetail
func (*MatrixDeposit001) GetOnlineTime ¶
func (md *MatrixDeposit001) GetOnlineTime(contract *Contract, stateDB StateDBManager, addr common.Address) *big.Int
func (*MatrixDeposit001) GetSlash ¶
func (md *MatrixDeposit001) GetSlash(contract *Contract, stateDB StateDBManager, addr common.Address) *big.Int
GetSlash get current slash with state db and address.
func (*MatrixDeposit001) GetValidatorDepositList ¶
func (md *MatrixDeposit001) GetValidatorDepositList(contract *Contract, stateDB StateDBManager) []DepositDetail
func (*MatrixDeposit001) ResetInterest ¶
func (md *MatrixDeposit001) ResetInterest(contract *Contract, db StateDBManager, address common.Address) error
ResetInterest reset interest to zero with state db and address.
func (*MatrixDeposit001) ResetSlash ¶
func (md *MatrixDeposit001) ResetSlash(contract *Contract, db StateDBManager, address common.Address) error
ResetSlash reset slash to zero with state db and address.
func (*MatrixDeposit001) SetDeposit ¶
func (md *MatrixDeposit001) SetDeposit(contract *Contract, stateDB StateDBManager, address common.Address) error
SetDeposit set deposit.
func (*MatrixDeposit001) SetDepositListItem ¶
func (md *MatrixDeposit001) SetDepositListItem(contract *Contract, stateDB StateDBManager, index uint64, addr common.Address)
func (*MatrixDeposit001) SetInterest ¶
func (md *MatrixDeposit001) SetInterest(contract *Contract, stateDB StateDBManager, addr common.Address, interest *big.Int) error
func (*MatrixDeposit001) SetOnlineTime ¶
func (md *MatrixDeposit001) SetOnlineTime(contract *Contract, stateDB StateDBManager, address common.Address, tm *big.Int) error
func (*MatrixDeposit001) SetSlash ¶
func (md *MatrixDeposit001) SetSlash(contract *Contract, stateDB StateDBManager, addr common.Address, slash *big.Int) error
type MatrixDeposit002 ¶
type MatrixDeposit002 struct { }
func (*MatrixDeposit002) AddInterest ¶
func (md *MatrixDeposit002) AddInterest(contract *Contract, stateDB StateDBManager, addr common.Address, interest common.CalculateDeposit) error
AddInterest add current interest with state db and address.
func (*MatrixDeposit002) AddSlash ¶
func (md *MatrixDeposit002) AddSlash(contract *Contract, stateDB StateDBManager, addr common.Address, slash common.CalculateDeposit) error
AddSlash add current slash with state db and address.
func (*MatrixDeposit002) CheckWithdraw ¶
func (md *MatrixDeposit002) CheckWithdraw(dpb *common.DepositBase, headtime uint64) bool
func (*MatrixDeposit002) CheckWithdrawByInterest ¶
func (md *MatrixDeposit002) CheckWithdrawByInterest(dpb *common.DepositBase, headtime uint64) bool
func (*MatrixDeposit002) DelA0list ¶
func (md *MatrixDeposit002) DelA0list(contract *Contract, stateDB StateDBManager, addr common.Address) error
func (*MatrixDeposit002) GetA0list ¶
func (md *MatrixDeposit002) GetA0list(contract *Contract, stateDB StateDBManager) ([]common.Address, error)
func (*MatrixDeposit002) GetAllDepositList ¶
func (md *MatrixDeposit002) GetAllDepositList(contract *Contract, stateDB StateDBManager, withDraw bool, headtime uint64) []common.DepositBase
func (*MatrixDeposit002) GetAllDepositListByInterest ¶
func (md *MatrixDeposit002) GetAllDepositListByInterest(contract *Contract, stateDB StateDBManager, withDraw bool, headtime uint64) []common.DepositBase
func (*MatrixDeposit002) GetAllInterest ¶
func (md *MatrixDeposit002) GetAllInterest(contract *Contract, stateDB StateDBManager, headTime uint64) map[common.Address]common.CalculateDeposit
GetAllInterest get all account interest.
func (*MatrixDeposit002) GetAuthAccount ¶
func (md *MatrixDeposit002) GetAuthAccount(contract *Contract, stateDB StateDBManager, depositAccount common.Address) common.Address
func (*MatrixDeposit002) GetDepositAccount ¶
func (md *MatrixDeposit002) GetDepositAccount(contract *Contract, stateDB StateDBManager, authAccount common.Address) common.Address
func (*MatrixDeposit002) GetDepositBase ¶
func (md *MatrixDeposit002) GetDepositBase(contract *Contract, stateDB StateDBManager, addr common.Address) *common.DepositBase
func (*MatrixDeposit002) GetDepositRole ¶
func (md *MatrixDeposit002) GetDepositRole(contract *Contract, stateDB StateDBManager) (dproles []common.DepositRoles)
func (*MatrixDeposit002) GetInterest ¶
func (md *MatrixDeposit002) GetInterest(contract *Contract, stateDB StateDBManager, addr common.Address) common.CalculateDeposit
GetInterest get current interest with state db and address.
func (*MatrixDeposit002) GetOnlineTime ¶
func (md *MatrixDeposit002) GetOnlineTime(contract *Contract, stateDB StateDBManager, addr common.Address) *big.Int
func (*MatrixDeposit002) GetSlash ¶
func (md *MatrixDeposit002) GetSlash(contract *Contract, stateDB StateDBManager, addr common.Address) common.CalculateDeposit
GetSlash get current slash with state db and address.
func (*MatrixDeposit002) PayInterest ¶
func (md *MatrixDeposit002) PayInterest(contract *Contract, stateDB StateDBManager, addrA0 common.Address, position uint64, amount *big.Int) error
func (*MatrixDeposit002) ResetInterest ¶
func (md *MatrixDeposit002) ResetInterest(contract *Contract, db StateDBManager, address common.Address) error
ResetInterest reset interest to zero with state db and address.
func (*MatrixDeposit002) ResetSlash ¶
func (md *MatrixDeposit002) ResetSlash(contract *Contract, db StateDBManager, address common.Address) error
ResetSlash reset slash to zero with state db and address.
func (*MatrixDeposit002) SetA0list ¶
func (md *MatrixDeposit002) SetA0list(contract *Contract, stateDB StateDBManager) error
func (*MatrixDeposit002) SetDepositBase ¶
func (md *MatrixDeposit002) SetDepositBase(contract *Contract, stateDB StateDBManager, addr common.Address, dpb *common.DepositBase) error
func (*MatrixDeposit002) SetDepositRole ¶
func (md *MatrixDeposit002) SetDepositRole(contract *Contract, stateDB StateDBManager, role *big.Int) error
func (*MatrixDeposit002) SetInterest ¶
func (md *MatrixDeposit002) SetInterest(contract *Contract, stateDB StateDBManager, addr common.Address, interest common.CalculateDeposit) error
func (*MatrixDeposit002) SetOnlineTime ¶
func (md *MatrixDeposit002) SetOnlineTime(contract *Contract, stateDB StateDBManager, address common.Address, tm *big.Int) error
func (*MatrixDeposit002) SetSlash ¶
func (md *MatrixDeposit002) SetSlash(contract *Contract, stateDB StateDBManager, addr common.Address, slash common.CalculateDeposit) error
type MatrixDepositVersion ¶
type MatrixDepositVersion struct { Deposit001 MatrixDeposit001 Deposit002 MatrixDeposit002 }
func (*MatrixDepositVersion) RequiredGas ¶
func (mdv *MatrixDepositVersion) RequiredGas(input []byte) uint64
type Memory ¶
type Memory struct {
// contains filtered or unexported fields
}
Memory implements a simple memory model for the matrix virtual machine.
type MethodInterface ¶
type MethodInterface interface { PrecompiledContract MethodName() string MethodID() [4]byte }
type NoopEVMCallContext ¶
type NoopEVMCallContext struct{}
func (NoopEVMCallContext) Call ¶
func (NoopEVMCallContext) Call(caller ContractRef, addr common.Address, data []byte, gas, value *big.Int) ([]byte, error)
func (NoopEVMCallContext) CallCode ¶
func (NoopEVMCallContext) CallCode(caller ContractRef, addr common.Address, data []byte, gas, value *big.Int) ([]byte, error)
func (NoopEVMCallContext) Create ¶
func (NoopEVMCallContext) Create(caller ContractRef, data []byte, gas, value *big.Int) ([]byte, common.Address, error)
func (NoopEVMCallContext) DelegateCall ¶
func (NoopEVMCallContext) DelegateCall(me ContractRef, addr common.Address, data []byte, gas *big.Int) ([]byte, error)
type NoopStateDB ¶
type NoopStateDB struct{}
func (NoopStateDB) AddBalance ¶
func (NoopStateDB) AddBalance(common.Address, *big.Int)
func (NoopStateDB) AddLog ¶
func (NoopStateDB) AddLog(*types.Log)
func (NoopStateDB) AddPreimage ¶
func (NoopStateDB) AddPreimage(common.Hash, []byte)
func (NoopStateDB) AddRefund ¶
func (NoopStateDB) AddRefund(uint64)
func (NoopStateDB) CreateAccount ¶
func (NoopStateDB) CreateAccount(common.Address)
func (NoopStateDB) ForEachStorage ¶
func (NoopStateDB) GetBalance ¶
func (NoopStateDB) GetBalance(common.Address) *big.Int
func (NoopStateDB) GetCodeHash ¶
func (NoopStateDB) GetCodeHash(common.Address) common.Hash
func (NoopStateDB) GetCodeSize ¶
func (NoopStateDB) GetCodeSize(common.Address) int
func (NoopStateDB) GetRefund ¶
func (NoopStateDB) GetRefund() uint64
func (NoopStateDB) HasSuicided ¶
func (NoopStateDB) HasSuicided(common.Address) bool
func (NoopStateDB) RevertToSnapshot ¶
func (NoopStateDB) RevertToSnapshot(int)
func (NoopStateDB) Snapshot ¶
func (NoopStateDB) Snapshot() int
func (NoopStateDB) SubBalance ¶
func (NoopStateDB) SubBalance(common.Address, *big.Int)
type OpCode ¶
type OpCode byte
OpCode is an EVM opcode
const ( // 0x60 range 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 )
func StringToOp ¶
func (OpCode) IsStaticJump ¶
type PrecompiledContract ¶
type PrecompiledContract interface { RequiredGas(input []byte) uint64 // RequiredPrice calculates the contract gas use //Run(input []byte) ([]byte, error) // Run runs the precompiled contract Run(input []byte, contract *Contract, evm *EVM) ([]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 RateInfo ¶
type RateInfo struct { Threshold *big.Int Rate RateOption }
type RateOption ¶
type RewardRate ¶
type RewardRate struct { OwnerRate RateOption NodeRate RateOption // CurrentRate RateOption LevelRate []RateInfo }
Rewards proportion to participants
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 { SetMatrixData(hash common.Hash, val []byte) GetMatrixData(hash common.Hash) (val []byte) }
StateDB is an EVM database for full state querying.
type StateDBManager ¶
type StateDBManager interface { CreateAccount(cointyp string, addr common.Address) MakeStatedb(cointyp string, isCheck bool) SetBalance(cointyp string, accountType uint32, addr common.Address, amount *big.Int) SubBalance(cointyp string, idx uint32, addr common.Address, am *big.Int) AddBalance(cointyp string, idx uint32, addr common.Address, am *big.Int) GetBalanceAll(common.Address) common.BalanceType GetBalance(cointyp string, addr common.Address) common.BalanceType GetBalanceByType(cointyp string, addr common.Address, accType uint32) *big.Int GetNonce(cointyp string, addr common.Address) uint64 SetNonce(cointyp string, addr common.Address, noc uint64) GetCodeHash(cointyp string, addr common.Address) common.Hash GetCode(cointyp string, addr common.Address) []byte SetCode(cointyp string, addr common.Address, b []byte) GetCodeSize(cointyp string, addr common.Address) int AddRefund(cointyp string, address common.Address, gas uint64) GetRefund(cointyp string, address common.Address) uint64 GetState(cointyp string, addr common.Address, hash common.Hash) common.Hash SetState(cointyp string, addr common.Address, hash, hash2 common.Hash) GetStateByteArray(cointyp string, addr common.Address, b common.Hash) []byte SetStateByteArray(cointyp string, addr common.Address, key common.Hash, value []byte) CommitSaveTx(cointyp string, addr common.Address) GetSaveTx(cointyp string, addr common.Address, typ byte, key uint32, hash []common.Hash, isdel bool) SaveTx(cointyp string, addr common.Address, typ byte, key uint32, data map[common.Hash][]byte) NewBTrie(cointyp string, addr common.Address, typ byte) Suicide(cointyp string, addr common.Address) bool HasSuicided(cointyp string, addr common.Address) bool GetEntrustStateByteArray(cointyp string, addr common.Address) []byte GetAuthStateByteArray(cointyp string, addr common.Address) []byte SetEntrustStateByteArray(cointyp string, addr common.Address, value []byte) SetAuthStateByteArray(cointyp string, addr common.Address, value []byte) //// Exist reports whether the given account exists in state. //// Notably this should also return true for suicided accounts. Exist(cointyp string, addr common.Address) bool // Empty returns whether the given account is empty. Empty // is defined according to EIP161 (balance = nonce = code = 0). Empty(cointyp string, addr common.Address) bool RevertToSnapshot(cointyp string, ss []int) Snapshot(cointyp string) []int Error() error AddLog(cointyp string, address common.Address, log *types.Log) GetLogs(cointyp string, address common.Address, hash common.Hash) []*types.Log Logs() []types.CoinLogs AddPreimage(cointype string, addr common.Address, hash common.Hash, preimage []byte) Preimages() map[string]map[common.Hash][]byte ForEachStorage(cointyp string, addr common.Address, cb func(key, value common.Hash) bool) IntermediateRoot(deleteEmptyObjects bool) ([]common.CoinRoot, []common.Coinbyte) IntermediateRootByCointype(cointype string, deleteEmptyObjects bool) common.Hash Prepare(thash, bhash common.Hash, ti int) Commit(deleteEmptyObjects bool) ([]common.CoinRoot, []common.Coinbyte, error) SetMatrixData(hash common.Hash, val []byte) GetMatrixData(hash common.Hash) (val []byte) DeleteMxData(hash common.Hash, val []byte) UpdateTxForBtree(key uint32) UpdateTxForBtreeBytime(key uint32) GetGasAuthFrom(cointyp string, entrustFrom common.Address, height uint64) common.Address GetAuthFrom(cointyp string, entrustFrom common.Address, height uint64) common.Address GetGasAuthFromByTime(cointyp string, entrustFrom common.Address, time uint64) common.Address GetEntrustFrom(cointyp string, authFrom common.Address, height uint64) []common.Address Finalise(cointyp string, deleteEmptyObjects bool) GetAllEntrustSignFrom(cointyp string, authFrom common.Address) []common.Address GetAllEntrustGasFrom(cointyp string, authFrom common.Address) []common.Address Dump(cointype string, address common.Address) []byte }
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 []*big.Int `json:"stack"` Storage map[common.Hash]common.Hash `json:"-"` Depth int `json:"depth"` 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 ¶
func (StructLog) MarshalJSON ¶
func (*StructLog) UnmarshalJSON ¶
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 ¶
func (*StructLogger) CaptureFault ¶
func (*StructLogger) CaptureStart ¶
func (*StructLogger) CaptureState ¶
func (l *StructLogger) CaptureState(env *EVM, pc uint64, op OpCode, gas, cost uint64, memory *Memory, stack *Stack, contract *Contract, depth int, err error) error
CaptureState logs a new structured log message and pushes it out to the environment
CaptureState also tracks SSTORE ops to track dirty values.
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) StructLogs ¶
func (l *StructLogger) StructLogs() []StructLog
StructLogs returns the captured log entries.
type Tracer ¶
type Tracer interface { CaptureStart(from common.Address, to common.Address, call bool, input []byte, gas uint64, value *big.Int) error CaptureState(env *EVM, pc uint64, op OpCode, gas, cost uint64, memory *Memory, stack *Stack, contract *Contract, depth int, err error) error CaptureFault(env *EVM, pc uint64, op OpCode, gas, cost uint64, memory *Memory, stack *Stack, contract *Contract, depth int, err error) error CaptureEnd(output []byte, gasUsed uint64, t time.Duration, err error) 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 TransInterestsInterface ¶
type TransInterestsInterface interface {
TransferInterests(amount *big.Int, position uint64, time uint64, address common.Address, state StateDBManager) error
}
func NewTransInterestsInterface ¶
func NewTransInterestsInterface() TransInterestsInterface
type TransferFunc ¶
type ValidatorContractState ¶
type ValidatorContractState struct {
// contains filtered or unexported fields
}
func (*ValidatorContractState) Find ¶
func (vc *ValidatorContractState) Find(address common.Address) bool
func (*ValidatorContractState) GetState ¶
func (vc *ValidatorContractState) GetState(contractAdress common.Address, state StateDBManager) error
func (*ValidatorContractState) GetValidatorGroupInfo ¶
func (vc *ValidatorContractState) GetValidatorGroupInfo(time uint64, state StateDBManager) (map[common.Address]*ValidatorGroupState, error)
func (*ValidatorContractState) Insert ¶
func (vc *ValidatorContractState) Insert(address common.Address)
func (*ValidatorContractState) RemoveEmptyValidatorGroup ¶
func (vc *ValidatorContractState) RemoveEmptyValidatorGroup(address common.Address, state StateDBManager) error
func (*ValidatorContractState) SetState ¶
func (vc *ValidatorContractState) SetState(contractAddress common.Address, state StateDBManager) error
type ValidatorGroup ¶
type ValidatorGroup struct { BaseContract // contains filtered or unexported fields }
func NewValidatorGroup ¶
func NewValidatorGroup() *ValidatorGroup
func (*ValidatorGroup) AddDepositLog ¶
func (*ValidatorGroup) AddDepositMethod ¶
func (vg *ValidatorGroup) AddDepositMethod()
func (*ValidatorGroup) AddRefundLog ¶
//view func (vg* ValidatorGroup) GetDepositList(input []byte,contract *Contract, evm *EVM)error { } func (vg* ValidatorGroup) GetDepositInfo(input []byte,contract *Contract, evm *EVM)error { }
func (*ValidatorGroup) AddWithdrawLog ¶
func (*ValidatorGroup) AnonymousMethod ¶
func (vg *ValidatorGroup) AnonymousMethod()
//method Constructor
func (vg* ValidatorGroup)ConstructMethod(){ bm := &BaseMethod{ Name:"", Abi:&validatorGroup.ValidatorGroupAbi, GasUsed:params.TxGasContractCreation, } bm.run = func(input []byte, contract *Contract, evm *EVM) ([]byte, error) { return nil,vg.transferMan(contract,evm) } vg.anonymousMethod = bm }
Anonymous Method
func (*ValidatorGroup) Constructor ¶
func (*ValidatorGroup) GetRewardMethod ¶
func (vg *ValidatorGroup) GetRewardMethod()
func (*ValidatorGroup) RefundMethod ¶
func (vg *ValidatorGroup) RefundMethod()
func (*ValidatorGroup) SetSignAccountMethod ¶
func (vg *ValidatorGroup) SetSignAccountMethod()
SetSignAccount
func (*ValidatorGroup) TransferCurrentInterests ¶
func (vg *ValidatorGroup) TransferCurrentInterests(amount *big.Int, time uint64, contractAddress common.Address, state StateDBManager) error
func (*ValidatorGroup) TransferMan ¶
func (vg *ValidatorGroup) TransferMan(contract *Contract, evm *EVM) error
func (*ValidatorGroup) TransferOwnershipMethod ¶
func (vg *ValidatorGroup) TransferOwnershipMethod()
TransferOwnership
func (*ValidatorGroup) TransferRewards ¶
func (vg *ValidatorGroup) TransferRewards(amount *big.Int, time uint64, contractAddress common.Address, state StateDBManager) error
func (*ValidatorGroup) WithdrawAllMethod ¶
func (vg *ValidatorGroup) WithdrawAllMethod()
func (*ValidatorGroup) WithdrawMethod ¶
func (vg *ValidatorGroup) WithdrawMethod()
type ValidatorGroupContract ¶
type ValidatorGroupContract struct { BaseContract // contains filtered or unexported fields }
func NewValidatorGroupContract ¶
func NewValidatorGroupContract() *ValidatorGroupContract
func (*ValidatorGroupContract) AddCreateValidatorGroupLog ¶
func (*ValidatorGroupContract) CreateValidatorGroupMethod ¶
func (vg *ValidatorGroupContract) CreateValidatorGroupMethod()
func (*ValidatorGroupContract) IsPrecompiledContract ¶
func (vg *ValidatorGroupContract) IsPrecompiledContract(address common.Address) bool
func (*ValidatorGroupContract) ListValidatorGroup ¶
func (vg *ValidatorGroupContract) ListValidatorGroup()
view
func (*ValidatorGroupContract) TransferCurrentInterests ¶
func (vg *ValidatorGroupContract) TransferCurrentInterests(amount *big.Int, time uint64, contractAddress common.Address, state StateDBManager) error
current Interests
func (*ValidatorGroupContract) TransferInterests ¶
func (vg *ValidatorGroupContract) TransferInterests(amount *big.Int, position uint64, time uint64, address common.Address, state StateDBManager) error
func (*ValidatorGroupContract) TransferRewards ¶
func (vg *ValidatorGroupContract) TransferRewards(amount *big.Int, time uint64, contractAddress common.Address, state StateDBManager) error
reward
type ValidatorGroupState ¶
type ValidatorGroupState struct { OwnerInfo OwnerInfo Reward RewardRate ValidatorMap validatorGroup.ValidatorInfoSlice // contains filtered or unexported fields }
func NewValidatorGroupState ¶
func NewValidatorGroupState() *ValidatorGroupState
func (*ValidatorGroupState) CalDepositWeight ¶
func (*ValidatorGroupState) CheckEmptyValidatorGroupState ¶
func (vc *ValidatorGroupState) CheckEmptyValidatorGroupState(contractAddress common.Address, state StateDBManager) bool
func (*ValidatorGroupState) CheckValidatorInfo ¶
func (vc *ValidatorGroupState) CheckValidatorInfo(valiInfo *validatorGroup.ValidatorInfo, contractAddress common.Address, state StateDBManager) error
func (*ValidatorGroupState) DistributeAmount ¶
func (vc *ValidatorGroupState) DistributeAmount(amount *big.Int, getDepoist func(*validatorGroup.ValidatorInfo) *big.Int, addFunc func(*validatorGroup.ValidatorInfo, *big.Int)) error
func (*ValidatorGroupState) DistributeCurrentInterests ¶
func (vc *ValidatorGroupState) DistributeCurrentInterests(amount *big.Int) error
func (*ValidatorGroupState) DistributeRewards ¶
func (vc *ValidatorGroupState) DistributeRewards(amount *big.Int) error
func (*ValidatorGroupState) GetAllDepositInfo ¶
func (vc *ValidatorGroupState) GetAllDepositInfo(contractAddress common.Address, state StateDBManager) *common.DepositBase
func (*ValidatorGroupState) GetOwner ¶
func (vc *ValidatorGroupState) GetOwner(contractAddress common.Address, state StateDBManager) error
func (*ValidatorGroupState) GetReward ¶
func (vc *ValidatorGroupState) GetReward(contractAddress common.Address, state StateDBManager) error
func (*ValidatorGroupState) GetState ¶
func (vc *ValidatorGroupState) GetState(contractAddress common.Address, time uint64, state StateDBManager) error
func (*ValidatorGroupState) GetValidatorMap ¶
func (vc *ValidatorGroupState) GetValidatorMap(contractAddress common.Address, time uint64, state StateDBManager) error
func (*ValidatorGroupState) SetOwner ¶
func (vc *ValidatorGroupState) SetOwner(contractAddress common.Address, state StateDBManager) error
func (vc *ValidatorGroupState)CalCurrentWithdrawAmount(amount *big.Int)*big.Int{ return vc.Reward.CurrentRate.Mul(amount) }
func (*ValidatorGroupState) SetReward ¶
func (vc *ValidatorGroupState) SetReward(contractAddress common.Address, state StateDBManager) error
func (*ValidatorGroupState) SetRewardRate ¶
func (*ValidatorGroupState) SetState ¶
func (vc *ValidatorGroupState) SetState(contractAddress common.Address, state StateDBManager) error
func (*ValidatorGroupState) SetValidatorMap ¶
func (vc *ValidatorGroupState) SetValidatorMap(contractAddress common.Address, state StateDBManager) error
func (*ValidatorGroupState) SuicideContract ¶
func (vc *ValidatorGroupState) SuicideContract(contractAddress common.Address, state StateDBManager) (bool, error)
Source Files ¶
- ValidatorGroupContract.go
- analysis.go
- common.go
- contract.go
- contracts.go
- depositInterface.go
- deposit_v1.go
- deposit_v2.go
- doc.go
- errors.go
- evm.go
- gas.go
- gas_table.go
- gen_structlog.go
- instructions.go
- int_pool_verifier_empty.go
- interface.go
- interpreter.go
- intpool.go
- jump_table.go
- logger.go
- matrixdepositversion.go
- memory.go
- memory_table.go
- noop.go
- opcodes.go
- stack.go
- stack_table.go
- validatorGroup.go
- validatorGroupState.go
Directories ¶
Path | Synopsis |
---|---|
Package runtime provides a basic execution model for executing EVM code.
|
Package runtime provides a basic execution model for executing EVM code. |