Documentation ¶
Index ¶
- Constants
- Variables
- func Failure(exitCode exitcode.ExitCode, gasAmount int64) types.MessageReceipt
- func NewActorStateHandle(ctx actorStateHandleContext) rt5.StateHandle
- type ActorImplLookup
- type ActorStorage
- type AddressIn
- type Any
- type CircSupplyCalculator
- type CodeIn
- type ExecCallBack
- type FakeSyscalls
- func (f FakeSyscalls) BatchVerifySeals(ctx context.Context, vis map[address.Address][]proof7.SealVerifyInfo) (map[address.Address][]bool, error)
- func (f FakeSyscalls) ComputeUnsealedSectorCID(context.Context, abi.RegisteredSealProof, []abi.PieceInfo) (cid.Cid, error)
- func (f FakeSyscalls) HashBlake2b(data []byte) [32]byte
- func (f FakeSyscalls) VerifyConsensusFault(ctx context.Context, h1, h2, extra []byte, view SyscallsStateView) (*rt7.ConsensusFault, error)
- func (f FakeSyscalls) VerifySeal(ctx context.Context, info proof7.SealVerifyInfo) error
- func (f FakeSyscalls) VerifySignature(ctx context.Context, view SyscallsStateView, signature crypto.Signature, ...) error
- func (f FakeSyscalls) VerifyWindowPoSt(ctx context.Context, info proof7.WindowPoStVerifyInfo) error
- func (f FakeSyscalls) VerifyWinningPoSt(ctx context.Context, info proof7.WinningPoStVerifyInfo) error
- type GasChargeBlockStore
- type HeadChainRandomness
- type ILookBack
- type IsAccountActor
- type LookbackStateGetter
- type Ret
- type SyscallsImpl
- type SyscallsStateView
- type TestStorage
- type VM
- func (vm *VM) ActorStore(ctx context.Context) adt.Store
- func (vm *VM) ApplyGenesisMessage(from address.Address, to address.Address, method abi.MethodNum, ...) (*Ret, error)
- func (vm *VM) ApplyImplicitMessage(msg types.ChainMsg) (*Ret, error)
- func (vm *VM) ApplyMessage(msg types.ChainMsg) (*Ret, error)
- func (vm *VM) ApplyTipSetMessages(blocks []types.BlockMessagesInfo, ts *types.TipSet, ...) (cid.Cid, []types.MessageReceipt, error)
- func (vm *VM) ContextStore() adt.Store
- func (vm *VM) CurrentEpoch() abi.ChainEpoch
- func (vm *VM) Flush() (tree.Root, error)
- func (vm *VM) GetCircSupply(ctx context.Context) (abi.TokenAmount, error)
- func (vm *VM) NetworkVersion() network.Version
- func (vm *VM) SetCurrentEpoch(current abi.ChainEpoch) error
- func (vm *VM) StateTree() tree.Tree
- type VMDebugMsg
- type VMInterpreter
- type VmMessage
- type VmOption
Constants ¶
const MaxCallDepth = 4096
Variables ¶
var BatchSealVerifyParallelism = 2 * goruntime.NumCPU()
var EmptyObjectCid cid.Cid
Functions ¶
func Failure ¶ added in v0.9.7
func Failure(exitCode exitcode.ExitCode, gasAmount int64) types.MessageReceipt
Failure returns with a non-zero exit code.
func NewActorStateHandle ¶
func NewActorStateHandle(ctx actorStateHandleContext) rt5.StateHandle
NewActorStateHandle returns a new `ActorStateHandle`
Note: just visible for testing.
Types ¶
type ActorImplLookup ¶
type ActorImplLookup interface {
GetActorImpl(code cid.Cid, rt runtime.Runtime) (dispatch.Dispatcher, *dispatch.ExcuteError)
}
ActorImplLookup provides access To upgradeable actor code.
type ActorStorage ¶
type ActorStorage struct {
// contains filtered or unexported fields
}
ActorStorage hides the storage methods From the actors and turns the errors into runtime panics.
func NewActorStorage ¶
func NewActorStorage(ctx context.Context, inner cbornode.IpldStore, gasTank *gas.GasTracker, pricelist gas.Pricelist) *ActorStorage
func (*ActorStorage) StoreGet ¶
func (s *ActorStorage) StoreGet(cid cid.Cid, obj cbor.Unmarshaler) bool
func (*ActorStorage) StorePut ¶
func (s *ActorStorage) StorePut(obj cbor.Marshaler) cid.Cid
type AddressIn ¶
type AddressIn struct {
Addresses []address.Address
}
AddressIn pattern checks if the callers address is in the list of items provided.
type CircSupplyCalculator ¶
type CircSupplyCalculator func(context.Context, abi.ChainEpoch, tree.Tree) (abi.TokenAmount, error)
type CodeIn ¶
type CodeIn struct {
Codes []cid.Cid
}
CodeIn pattern checks if the callers code CID is in the list of items provided.
type ExecCallBack ¶
type FakeSyscalls ¶
type FakeSyscalls struct { }
func (FakeSyscalls) BatchVerifySeals ¶
func (f FakeSyscalls) BatchVerifySeals(ctx context.Context, vis map[address.Address][]proof7.SealVerifyInfo) (map[address.Address][]bool, error)
func (FakeSyscalls) ComputeUnsealedSectorCID ¶
func (f FakeSyscalls) ComputeUnsealedSectorCID(context.Context, abi.RegisteredSealProof, []abi.PieceInfo) (cid.Cid, error)
func (FakeSyscalls) HashBlake2b ¶
func (f FakeSyscalls) HashBlake2b(data []byte) [32]byte
func (FakeSyscalls) VerifyConsensusFault ¶
func (f FakeSyscalls) VerifyConsensusFault(ctx context.Context, h1, h2, extra []byte, view SyscallsStateView) (*rt7.ConsensusFault, error)
func (FakeSyscalls) VerifySeal ¶
func (f FakeSyscalls) VerifySeal(ctx context.Context, info proof7.SealVerifyInfo) error
func (FakeSyscalls) VerifySignature ¶
func (f FakeSyscalls) VerifySignature(ctx context.Context, view SyscallsStateView, signature crypto.Signature, signer address.Address, plaintext []byte) error
func (FakeSyscalls) VerifyWindowPoSt ¶ added in v1.2.0
func (f FakeSyscalls) VerifyWindowPoSt(ctx context.Context, info proof7.WindowPoStVerifyInfo) error
func (FakeSyscalls) VerifyWinningPoSt ¶
func (f FakeSyscalls) VerifyWinningPoSt(ctx context.Context, info proof7.WinningPoStVerifyInfo) error
type GasChargeBlockStore ¶
type GasChargeBlockStore struct {
// contains filtered or unexported fields
}
GasChargeBlockStore in addition to the basic blockstore read and write capabilities, a certain amount of gas consumption will be deducted for each operation
type HeadChainRandomness ¶ added in v1.1.0
type HeadChainRandomness interface { ChainGetRandomnessFromBeacon(ctx context.Context, personalization acrypto.DomainSeparationTag, randEpoch abi.ChainEpoch, entropy []byte) (abi.Randomness, error) ChainGetRandomnessFromTickets(ctx context.Context, personalization acrypto.DomainSeparationTag, randEpoch abi.ChainEpoch, entropy []byte) (abi.Randomness, error) }
ChainRandomness define randomness method in filecoin
type ILookBack ¶ added in v1.1.2
type ILookBack interface { StateView(ctx context.Context, ts *types.TipSet) (*state.View, error) GetLookbackTipSetForRound(ctx context.Context, ts *types.TipSet, round abi.ChainEpoch, version network.Version) (*types.TipSet, cid.Cid, error) }
ChainRandomness define randomness method in filecoin
type IsAccountActor ¶
type IsAccountActor struct{}
IsAccountActor pattern checks if the caller is an account actor. Dragons: delete after switching to new actors
func (IsAccountActor) IsMatch ¶
func (IsAccountActor) IsMatch(ctx runtime.PatternContext) bool
IsMatch returns "True" if the patterns matches
type LookbackStateGetter ¶ added in v1.1.2
func LookbackStateGetterForTipset ¶ added in v1.1.2
type Ret ¶
type Ret struct { GasTracker *gas.GasTracker OutPuts gas.GasOutputs Receipt types.MessageReceipt }
type SyscallsImpl ¶
type SyscallsImpl interface { VerifySignature(ctx context.Context, view SyscallsStateView, signature crypto.Signature, signer address.Address, plaintext []byte) error HashBlake2b(data []byte) [32]byte ComputeUnsealedSectorCID(ctx context.Context, proof7 abi.RegisteredSealProof, pieces []abi.PieceInfo) (cid.Cid, error) VerifySeal(ctx context.Context, info proof7.SealVerifyInfo) error BatchVerifySeals(ctx context.Context, vis map[address.Address][]proof7.SealVerifyInfo) (map[address.Address][]bool, error) VerifyAggregateSeals(aggregate proof7.AggregateSealVerifyProofAndInfos) error VerifyReplicaUpdate(update proof7.ReplicaUpdateInfo) error VerifyPoSt(ctx context.Context, info proof7.WindowPoStVerifyInfo) error VerifyConsensusFault(ctx context.Context, h1, h2, extra []byte, curEpoch abi.ChainEpoch, msg VmMessage, gasIpld cbornode.IpldStore, view SyscallsStateView, getter LookbackStateGetter) (*rt7.ConsensusFault, error) }
Syscall implementation interface. These methods take the chain epoch and other context that is implicit in the runtime as explicit parameters.
type SyscallsStateView ¶
type SyscallsStateView interface { ResolveToKeyAddr(ctx context.Context, address address.Address) (address.Address, error) MinerInfo(ctx context.Context, maddr address.Address, nv network.Version) (*miner.MinerInfo, error) TotalFilCircSupply(height abi.ChainEpoch, st vmState.Tree) (abi.TokenAmount, error) GetNetworkVersion(ctx context.Context, ce abi.ChainEpoch) network.Version }
type TestStorage ¶
type TestStorage struct {
// contains filtered or unexported fields
}
TestStorage is a fake storage used for testing.
func NewTestStorage ¶
func NewTestStorage(state interface{}) *TestStorage
NewTestStorage returns a new "TestStorage"
func (*TestStorage) StoreGet ¶
func (ts *TestStorage) StoreGet(cid cid.Cid, obj cbor.Unmarshaler) bool
Get implements runtime.Store.
func (*TestStorage) StorePut ¶
func (ts *TestStorage) StorePut(v cbor.Marshaler) cid.Cid
Put implements runtime.Store.
type VM ¶
VM holds the stateView and executes messages over the stateView.
func NewVM ¶
NewVM creates a new runtime for executing messages. Dragons: change To take a root and the store, build the tree internally
func (*VM) ActorStore ¶ added in v1.0.4
Get the buffered blockstore associated with the VM. This includes any temporary blocks produced during this VM's execution.
func (*VM) ApplyGenesisMessage ¶
func (vm *VM) ApplyGenesisMessage(from address.Address, to address.Address, method abi.MethodNum, value abi.TokenAmount, params interface{}) (*Ret, error)
ApplyGenesisMessage forces the execution of a message in the vm actor.
This Method is intended To be used in the generation of the genesis block only.
func (*VM) ApplyImplicitMessage ¶
func (*VM) ApplyMessage ¶
todo estimate gasLimit
func (*VM) ApplyTipSetMessages ¶
func (vm *VM) ApplyTipSetMessages(blocks []types.BlockMessagesInfo, ts *types.TipSet, parentEpoch, epoch abi.ChainEpoch, cb ExecCallBack) (cid.Cid, []types.MessageReceipt, error)
ApplyTipSetMessages implements interpreter.VMInterpreter
func (*VM) ContextStore ¶
ContextStore provides access To specs-actors adt library.
This type of store is used To access some internal actor stateView.
func (*VM) CurrentEpoch ¶
func (vm *VM) CurrentEpoch() abi.ChainEpoch
CurrentEpoch implements runtime.Runtime.
func (*VM) GetCircSupply ¶ added in v1.2.0
func (*VM) NetworkVersion ¶ added in v1.2.0
func (*VM) SetCurrentEpoch ¶
func (vm *VM) SetCurrentEpoch(current abi.ChainEpoch) error
type VMDebugMsg ¶
type VMDebugMsg struct {
// contains filtered or unexported fields
}
VMDebugMsg for vm debug
func NewVMDebugMsg ¶
func NewVMDebugMsg() *VMDebugMsg
func (*VMDebugMsg) Printfln ¶
func (debug *VMDebugMsg) Printfln(msg string, args ...interface{})
func (*VMDebugMsg) Println ¶
func (debug *VMDebugMsg) Println(args ...interface{})
func (*VMDebugMsg) WriteToFile ¶
func (debug *VMDebugMsg) WriteToFile(fileName string) error
WriteToFile write debug message to file
func (*VMDebugMsg) WriteToTerminal ¶
func (debug *VMDebugMsg) WriteToTerminal()
WriteToTerminal write debug message to terminal
type VMInterpreter ¶
type VMInterpreter interface { // ApplyTipSetMessages applies all the messages in a tipset. // // Note: any message processing error will be present as an `ExitCode` in the `MessageReceipt`. ApplyTipSetMessages(blocks []types.BlockMessagesInfo, ts *types.TipSet, parentEpoch abi.ChainEpoch, epoch abi.ChainEpoch, cb ExecCallBack) (cid.Cid, []types.MessageReceipt, error) ApplyGenesisMessage(from address.Address, to address.Address, method abi.MethodNum, value abi.TokenAmount, params interface{}) (*Ret, error) ApplyMessage(msg types.ChainMsg) (*Ret, error) ApplyImplicitMessage(msg types.ChainMsg) (*Ret, error) StateTree() tree.Tree Flush() (tree.Root, error) }
VMInterpreter orchestrates the execution of messages from a tipset on that tipset’s parent State.
type VmMessage ¶
type VmMessage struct { From address.Address To address.Address Value abi.TokenAmount Method abi.MethodNum Params interface{} }
func (VmMessage) Caller ¶
func (msg VmMessage) Caller() address.Address
Caller implements runtime.MessageInfo.
func (VmMessage) Receiver ¶
func (msg VmMessage) Receiver() address.Address
Receiver implements runtime.MessageInfo.
func (VmMessage) ValueReceived ¶
func (msg VmMessage) ValueReceived() abi.TokenAmount
ValueReceived implements runtime.MessageInfo.
type VmOption ¶
type VmOption struct { CircSupplyCalculator CircSupplyCalculator LookbackStateGetter LookbackStateGetter NetworkVersion network.Version Rnd HeadChainRandomness BaseFee abi.TokenAmount Fork fork.IFork ActorCodeLoader *dispatch.CodeLoader Epoch abi.ChainEpoch GasPriceSchedule *gas.PricesSchedule PRoot cid.Cid Bsstore blockstoreutil.Blockstore SysCallsImpl SyscallsImpl }