Documentation ¶
Index ¶
- Constants
- Variables
- func AddBalance(db dbInterface, id *types.TokenTypeId, amount *big.Int)
- func BlockGasCost(data []byte, baseGas uint64, snapshotCount uint8, quotaTable *QuotaTable) (uint64, error)
- func CalcQuotaUsed(useQuota bool, quotaTotal, quotaAddition, quotaLeft uint64, err error) (qStakeUsed uint64, qUsed uint64)
- func CheckFork(db dbInterface, f func(uint64) bool) bool
- func ComputeSendBlockHash(receiveBlock *ledger.AccountBlock, sendBlock *ledger.AccountBlock, index uint8) types.Hash
- func DataQuotaCost(data []byte, quotaTable *QuotaTable) (uint64, error)
- func DealWithErr(v interface{})
- func FirstToLower(str string) string
- func GetCodeFromCreateContractData(data []byte, snapshotHeight uint64) []byte
- func GetContractCode(db dbInterface, addr *types.Address, status GlobalStatus) ([]byte, []byte)
- func GetContractTypeFromCreateContractData(data []byte) uint8
- func GetCreateContractData(bytecode []byte, contractType uint8, snapshotCount uint8, ...) []byte
- func GetGidFromCreateContractData(data []byte) types.Gid
- func GetQuotaMultiplierFromCreateContractData(data []byte, snapshotHeight uint64) uint8
- func GetSnapshotCountFromCreateContractData(data []byte) uint8
- func GetSnapshotWithSeedCountCountFromCreateContractData(data []byte) uint8
- func GetValue(db dbInterface, key []byte) []byte
- func IsDelegateGid(gid types.Gid) bool
- func IsExistContractType(contractType uint8) bool
- func IsPoW(block *ledger.AccountBlock) bool
- func IsSnapshotGid(gid types.Gid) bool
- func IsViteToken(tokenID types.TokenTypeId) bool
- func MakeRequestBlock(fromAddress types.Address, toAddress types.Address, blockType byte, ...) *ledger.AccountBlock
- func MultipleCost(cost uint64, quotaMultiplier uint8) (uint64, error)
- func NewContractAddress(accountAddress types.Address, accountBlockHeight uint64, ...) types.Address
- func PackContractCode(contractType uint8, code []byte) []byte
- func PrintMap(m map[string][]byte) string
- func RequestQuotaCost(data []byte, quotaTable *QuotaTable) (uint64, error)
- func SetValue(db dbInterface, key []byte, value []byte)
- func SubBalance(db dbInterface, id *types.TokenTypeId, amount *big.Int)
- func UseQuota(quotaLeft, cost uint64) (uint64, error)
- func UseQuotaWithFlag(quotaLeft, cost uint64, flag bool) (uint64, error)
- type ConsensusReader
- type GlobalStatus
- type IntPool
- type QuotaTable
- type VMConsensusReader
- func (r *VMConsensusReader) GetConsensusDetailByDay(startIndex, endIndex uint64) ([]*core.DayStats, error)
- func (r *VMConsensusReader) GetEndTimeByIndex(index uint64) int64
- func (r *VMConsensusReader) GetIndexByEndTime(t int64, genesisTime int64) (uint64, int64, bool)
- func (r *VMConsensusReader) GetIndexByStartTime(t int64, genesisTime int64) (uint64, int64, bool)
- func (r *VMConsensusReader) GetIndexByTime(t int64, genesisTime int64) uint64
Constants ¶
Variables ¶
var ( // AttovPerVite defines decimals of vite AttovPerVite = big.NewInt(1e18) // CreateContractDataLengthMin defines create contract request block data prefix length before seed fork CreateContractDataLengthMin = 13 // CreateContractDataLengthMinRand defines create contract request block data prefix length after seed fork CreateContractDataLengthMinRand = 14 )
var ( ErrInvalidMethodParam = errors.New("invalid method param") ErrInvalidQuotaMultiplier = errors.New("invalid quota multiplier") ErrRewardIsNotDrained = errors.New("reward is not drained") ErrInsufficientBalance = errors.New("insufficient balance for transfer") ErrCalcPoWTwice = errors.New("calc PoW twice referring to one snapshot block") ErrAbiMethodNotFound = errors.New("abi: method not found") ErrInvalidResponseLatency = errors.New("invalid response latency") ErrInvalidRandomDegree = errors.New("invalid random degree") ErrAddressNotMatch = errors.New("current address not match") ErrTransactionTypeNotSupport = errors.New("transaction type not supported") ErrVersionNotSupport = errors.New("feature not supported in current snapshot height") ErrBlockTypeNotSupported = errors.New("block type not supported") ErrDataNotExist = errors.New("data not exist") ErrContractNotExists = errors.New("contract not exists") ErrNoReliableStatus = errors.New("no reliable status") ErrAddressCollision = errors.New("contract address collision") ErrIDCollision = errors.New("id collision") ErrRewardNotDue = errors.New("reward not due") ErrExecutionReverted = errors.New("execution reverted") ErrDepth = errors.New("max call depth exceeded") ErrGasUintOverflow = errors.New("gas uint64 overflow") ErrStorageModifyLimitReached = errors.New("contract storage modify count limit reached") ErrMemSizeOverflow = errors.New("memory size uint64 overflow") ErrReturnDataOutOfBounds = errors.New("vm: return data out of bounds") ErrBlockQuotaLimitReached = errors.New("quota limit for block reached") ErrAccountQuotaLimitReached = errors.New("quota limit for account reached") ErrOutOfQuota = errors.New("out of quota") ErrInvalidCodeLength = errors.New("invalid code length") ErrInvalidUnconfirmedQuota = errors.New("calc quota failed, invalid unconfirmed quota") ErrStackLimitReached = errors.New("stack limit reached") ErrStackUnderflow = errors.New("stack underflow") ErrInvalidJumpDestination = errors.New("invalid jump destination") ErrInvalidOpCode = errors.New("invalid opcode") ErrChainForked = errors.New("chain forked") ErrContractCreationFail = errors.New("contract creation failed") ErrExecutionCanceled = errors.New("vm execution canceled") )
var ( // SolidityPPContractType defines contract type of solidity++ byte code SolidityPPContractType uint8 = 1 )
Functions ¶
func AddBalance ¶
func AddBalance(db dbInterface, id *types.TokenTypeId, amount *big.Int)
AddBalance add balance of certain token to current account. Used in response block. Panics when db error.
func BlockGasCost ¶
func BlockGasCost(data []byte, baseGas uint64, snapshotCount uint8, quotaTable *QuotaTable) (uint64, error)
BlockGasCost calculate base quota cost of a block
func CalcQuotaUsed ¶
func CalcQuotaUsed(useQuota bool, quotaTotal, quotaAddition, quotaLeft uint64, err error) (qStakeUsed uint64, qUsed uint64)
CalcQuotaUsed calculate stake quota and total quota used by a block
func CheckFork ¶
CheckFork check whether current snapshot block height is over certain hard fork
func ComputeSendBlockHash ¶
func ComputeSendBlockHash(receiveBlock *ledger.AccountBlock, sendBlock *ledger.AccountBlock, index uint8) types.Hash
func DataQuotaCost ¶
func DataQuotaCost(data []byte, quotaTable *QuotaTable) (uint64, error)
DataQuotaCost calculate quota cost by request block data
func DealWithErr ¶
func DealWithErr(v interface{})
DealWithErr panics if err is not nil. Used when chain forked or db error.
func FirstToLower ¶
FirstToLower change first character for string to lower case
func GetCodeFromCreateContractData ¶ added in v1.2.0
GetCodeFromCreateContractData decode code and constructor params from create contract request block data
func GetContractCode ¶ added in v1.2.0
func GetContractCode(db dbInterface, addr *types.Address, status GlobalStatus) ([]byte, []byte)
GetContractCode get contract in certain snapshot block. if input addr == current address,
return contract code in latest contract account block.
if input addr != current address,
return contract code in snapshot block of global status.
Panics when db error.
func GetContractTypeFromCreateContractData ¶ added in v1.2.0
GetContractTypeFromCreateContractData decode contract type from create contract request block data
func GetCreateContractData ¶ added in v1.2.0
func GetCreateContractData(bytecode []byte, contractType uint8, snapshotCount uint8, snapshotWithSeedCount uint8, quotaMultiplier uint8, gid types.Gid) []byte
GetCreateContractData generate create contract request block data
func GetGidFromCreateContractData ¶ added in v1.2.0
GetGidFromCreateContractData decode gid from create contract request block data
func GetQuotaMultiplierFromCreateContractData ¶
GetQuotaMultiplierFromCreateContractData decode quota multiplier from create contract request block data
func GetSnapshotCountFromCreateContractData ¶
GetSnapshotCountFromCreateContractData decode snapshot block count(response latency) from create contract request block data
func GetSnapshotWithSeedCountCountFromCreateContractData ¶
GetSnapshotWithSeedCountCountFromCreateContractData decode snapshot block with seed count(random degree) from create contract request block data
func GetValue ¶
GetValue get current contract storage value by key. Panics when db error.
func IsDelegateGid ¶
IsDelegateGid checks whether gid is global delegate consensus group id
func IsExistContractType ¶ added in v1.2.0
IsExistContractType check contract type validation
func IsSnapshotGid ¶
IsSnapshotGid checks whether gid is snapshot consensus group id
func IsViteToken ¶
func IsViteToken(tokenID types.TokenTypeId) bool
IsViteToken checks whether tokenId is vite token
func MakeRequestBlock ¶
func MakeRequestBlock(fromAddress types.Address, toAddress types.Address, blockType byte, amount *big.Int, tokenID types.TokenTypeId, data []byte) *ledger.AccountBlock
MakeRequestBlock returns a request block
func MultipleCost ¶
MultipleCost multiply quota
func NewContractAddress ¶ added in v1.2.0
func NewContractAddress(accountAddress types.Address, accountBlockHeight uint64, prevBlockHash types.Hash) types.Address
NewContractAddress generate contract address in create contract request block
func PackContractCode ¶ added in v1.2.0
PackContractCode generate contract code on chain
func PrintMap ¶ added in v1.2.0
PrintMap is used to print storage map under debug mode
func RequestQuotaCost ¶
func RequestQuotaCost(data []byte, quotaTable *QuotaTable) (uint64, error)
RequestQuotaCost calculate quota cost by a request block
func SetValue ¶
SetValue update current contract storage value by key. Delete key when value is nil. Key len must be no more than 32 bytes. Panics when db error.
func SubBalance ¶
func SubBalance(db dbInterface, id *types.TokenTypeId, amount *big.Int)
SubBalance sub balance of certain token to current account. Balance check must be performed before calling this method. Used in request block. Panics when db error.
func UseQuota ¶
UseQuota check out of quota and return quota left
Types ¶
type ConsensusReader ¶
type ConsensusReader interface { GetIndexByStartTime(t int64, genesisTime int64) (startIndex uint64, startTime int64, drained bool) GetIndexByEndTime(t int64, genesisTime int64) (endIndex uint64, endTime int64, withinADay bool) GetIndexByTime(t int64, genesisTime int64) uint64 GetEndTimeByIndex(index uint64) int64 GetConsensusDetailByDay(startIndex, endIndex uint64) ([]*core.DayStats, error) }
ConsensusReader defines interfaces of consensus reader in vm module used by sbp reward calculation
type GlobalStatus ¶
type GlobalStatus interface { Seed() (uint64, error) // Random number, returns same number Random() (uint64, error) // Random number, returns different number every time calls SnapshotBlock() *ledger.SnapshotBlock // Confirm snapshot block of send block }
GlobalStatus contains confirm snapshot block and seed of contract response block
type IntPool ¶
type IntPool struct {
// contains filtered or unexported fields
}
intPool is a pool of big integers that can be reused for all big.Int operations.
func (*IntPool) Get ¶
get retrieves a big int from the pool, allocating one if the pool is empty. Note, the returned int's amount is arbitrary and will not be zeroed!
func (*IntPool) GetZero ¶
getZero retrieves a big int from the pool, setting it to zero or allocating a new one if the pool is empty.
type QuotaTable ¶
type QuotaTable struct { AddQuota uint64 MulQuota uint64 SubQuota uint64 DivQuota uint64 SDivQuota uint64 ModQuota uint64 SModQuota uint64 AddModQuota uint64 MulModQuota uint64 ExpQuota uint64 ExpByteQuota uint64 SignExtendQuota uint64 LtQuota uint64 GtQuota uint64 SltQuota uint64 SgtQuota uint64 EqQuota uint64 IsZeroQuota uint64 AndQuota uint64 OrQuota uint64 XorQuota uint64 NotQuota uint64 ByteQuota uint64 ShlQuota uint64 ShrQuota uint64 SarQuota uint64 Blake2bQuota uint64 Blake2bWordQuota uint64 AddressQuota uint64 BalanceQuota uint64 CallerQuota uint64 CallValueQuota uint64 CallDataLoadQuota uint64 CallDataSizeQuota uint64 CallDataCopyQuota uint64 MemCopyWordQuota uint64 CodeSizeQuota uint64 CodeCopyQuota uint64 ReturnDataSizeQuota uint64 ReturnDataCopyQuota uint64 TimestampQuota uint64 HeightQuota uint64 TokenIDQuota uint64 AccountHeightQuota uint64 PreviousHashQuota uint64 FromBlockHashQuota uint64 SeedQuota uint64 RandomQuota uint64 PopQuota uint64 MloadQuota uint64 MstoreQuota uint64 Mstore8Quota uint64 SloadQuota uint64 SstoreResetQuota uint64 SstoreInitQuota uint64 SstoreCleanQuota uint64 SstoreNoopQuota uint64 SstoreMemQuota uint64 JumpQuota uint64 JumpiQuota uint64 PcQuota uint64 MsizeQuota uint64 JumpdestQuota uint64 PushQuota uint64 DupQuota uint64 SwapQuota uint64 LogQuota uint64 LogTopicQuota uint64 LogDataQuota uint64 CallMinusQuota uint64 MemQuotaDivision uint64 SnapshotQuota uint64 CodeQuota uint64 MemQuota uint64 TxQuota uint64 TxDataQuota uint64 CreateTxRequestQuota uint64 CreateTxResponseQuota uint64 RegisterQuota uint64 UpdateBlockProducingAddressQuota uint64 UpdateRewardWithdrawAddressQuota uint64 RevokeQuota uint64 WithdrawRewardQuota uint64 VoteQuota uint64 CancelVoteQuota uint64 StakeQuota uint64 CancelStakeQuota uint64 DelegateStakeQuota uint64 CancelDelegateStakeQuota uint64 IssueQuota uint64 ReIssueQuota uint64 BurnQuota uint64 TransferOwnershipQuota uint64 DisableReIssueQuota uint64 GetTokenInfoQuota uint64 DexFundDepositQuota uint64 DexFundWithdrawQuota uint64 DexFundOpenNewMarketQuota uint64 DexFundPlaceOrderQuota uint64 DexFundSettleOrdersQuota uint64 DexFundTriggerPeriodJobQuota uint64 DexFundStakeForMiningQuota uint64 DexFundStakeForVipQuota uint64 DexFundStakeForSuperVIPQuota uint64 DexFundDelegateStakeCallbackQuota uint64 DexFundCancelDelegateStakeCallbackQuota uint64 DexFundGetTokenInfoCallbackQuota uint64 DexFundAdminConfigQuota uint64 DexFundTradeAdminConfigQuota uint64 DexFundMarketAdminConfigQuota uint64 DexFundTransferTokenOwnershipQuota uint64 DexFundNotifyTimeQuota uint64 DexFundCreateNewInviterQuota uint64 DexFundBindInviteCodeQuota uint64 DexFundEndorseVxQuota uint64 DexFundSettleMakerMinedVxQuota uint64 DexFundConfigMarketAgentsQuota uint64 DexFundPlaceAgentOrderQuota uint64 DexFundLockVxForDividendQuota uint64 DexFundSwitchConfigQuota uint64 DexFundStakeForPrincipalSuperVIPQuota uint64 DexFundCancelStakeByIdQuota uint64 DexFundDelegateStakeCallbackV2Quota uint64 DexFundDelegateCancelStakeCallbackV2Quota uint64 DexFundCancelOrderBySendHashQuota uint64 DexFundCommonAdminConfigQuota uint64 }
QuotaTable is used to query quota used by op code and transactions
func QuotaTableByHeight ¶
func QuotaTableByHeight(sbHeight uint64) *QuotaTable
QuotaTableByHeight returns different quota table by hard fork version
type VMConsensusReader ¶
type VMConsensusReader struct {
// contains filtered or unexported fields
}
VMConsensusReader implements consensus reader interfaces
func NewVMConsensusReader ¶
func NewVMConsensusReader(sr sbpStatReader) *VMConsensusReader
NewVMConsensusReader generate VMConsensusReader instance
func (*VMConsensusReader) GetConsensusDetailByDay ¶
func (r *VMConsensusReader) GetConsensusDetailByDay(startIndex, endIndex uint64) ([]*core.DayStats, error)
GetConsensusDetailByDay returns the top 100 sbp block producing details of each cycle. Used for calculating sbp reward. Parameters:
startIndex: start cycle index(included) endIndex: end cycle index(included)
Returns:
1: block producing details of each cycle 2: db error
func (*VMConsensusReader) GetEndTimeByIndex ¶
func (r *VMConsensusReader) GetEndTimeByIndex(index uint64) int64
GetEndTimeByIndex calculate cycle end time of index Parameters:
index: cycle index
Returns:
end time of input cycle
func (*VMConsensusReader) GetIndexByEndTime ¶
GetIndexByEndTime calculate first cycle index before t Parameters:
t: timestamp genesisTime: genesis snapshot block timestamp
Returns:
1: first cycle index before input timestamp 2: start time of cycle 3: is reward drained, true - reward is drained, false - reward is not drained
Notes: if t <= genesis time + 24h, return index 0, within one day if t ∈ (genesis time + 24h, genesis time + 48h], return index 0
func (*VMConsensusReader) GetIndexByStartTime ¶
GetIndexByStartTime calculate first cycle index after t Parameters:
t: timestamp genesisTime: genesis snapshot block timestamp
Returns:
1: first cycle index after input timestamp 2: start time of cycle 3: is reward drained, true - reward is drained, false - reward is not drained
Notes:
index 0 : (genesis time, genesis time + 24h] index 1: (genesis time + 24h, genesis time + 48h] get first index after t and index start time if t == -1, reward drained if t == 0, return index 0 if t ∈ (genesis time, genesis time + 24h], return index 1
func (*VMConsensusReader) GetIndexByTime ¶
func (r *VMConsensusReader) GetIndexByTime(t int64, genesisTime int64) uint64
GetIndexByTime calculate cycle index of t Parameters:
t: timestamp genesisTime: genesis snapshot block timestamp
Returns:
cycle index of input timestamp