Documentation ¶
Index ¶
- Constants
- Variables
- func FlowTokenAddress(chain flow.Chain) flow.Address
- func FungibleTokenAddress(chain flow.Chain) flow.Address
- func GetExecutionEffortWeights(env environment.Environment, service runtime.Address) (computationWeights meter.ExecutionEffortWeights, err error)
- func GetExecutionMemoryLimit(env environment.Environment, service runtime.Address) (memoryLimit uint64, err error)
- func GetExecutionMemoryWeights(env environment.Environment, service runtime.Address) (memoryWeights meter.ExecutionMemoryWeights, err error)
- func NewInterpreterRuntime(config runtime.Config) runtime.Runtime
- func NewTransactionEnvironment(ctx Context, txnState *state.TransactionState, ...) environment.Environment
- func Run(executor ProcedureExecutor) error
- type Blocks
- type BootstrapAccountKeys
- type BootstrapParams
- type BootstrapProcedure
- func (proc *BootstrapProcedure) ComputationLimit(_ Context) uint64
- func (proc *BootstrapProcedure) ExecutionTime() derived.LogicalTime
- func (proc *BootstrapProcedure) InitialSnapshotTime() derived.LogicalTime
- func (proc *BootstrapProcedure) MemoryLimit(_ Context) uint64
- func (b *BootstrapProcedure) NewExecutor(ctx Context, txnState *state.TransactionState, ...) ProcedureExecutor
- func (proc *BootstrapProcedure) ShouldDisableMemoryAndInteractionLimits(_ Context) bool
- func (BootstrapProcedure) Type() ProcedureType
- type BootstrapProcedureFeeParameters
- type BootstrapProcedureOption
- func WithAccountCreationFee(fee cadence.UFix64) BootstrapProcedureOption
- func WithBootstrapAccountKeys(keys BootstrapAccountKeys) BootstrapProcedureOption
- func WithEpochConfig(epochConfig epochs.EpochConfig) BootstrapProcedureOption
- func WithExecutionEffortWeights(weights meter.ExecutionEffortWeights) BootstrapProcedureOption
- func WithExecutionMemoryLimit(limit uint64) BootstrapProcedureOption
- func WithExecutionMemoryWeights(weights meter.ExecutionMemoryWeights) BootstrapProcedureOption
- func WithIdentities(identities flow.IdentityList) BootstrapProcedureOption
- func WithInitialTokenSupply(supply cadence.UFix64) BootstrapProcedureOption
- func WithMinimumStorageReservation(reservation cadence.UFix64) BootstrapProcedureOption
- func WithRestrictedAccountCreationEnabled(enabled cadence.Bool) BootstrapProcedureOption
- func WithRestrictedContractDeployment(restricted *bool) BootstrapProcedureOption
- func WithRootBlock(rootBlock *flow.Header) BootstrapProcedureOption
- func WithStorageMBPerFLOW(ratio cadence.UFix64) BootstrapProcedureOption
- func WithTransactionFee(fees BootstrapProcedureFeeParameters) BootstrapProcedureOption
- type Context
- type MeterParamOverridesComputer
- type Option
- func WithAccountKeyWeightThreshold(threshold int) Option
- func WithAccountStorageLimit(enabled bool) Option
- func WithAuthorizationChecksEnabled(enabled bool) Option
- func WithBlockHeader(header *flow.Header) Option
- func WithBlocks(blocks environment.Blocks) Option
- func WithCadenceLogging(enabled bool) Option
- func WithChain(chain flow.Chain) Option
- func WithComputationLimit(limit uint64) Option
- func WithContractDeploymentRestricted(enabled bool) Option
- func WithContractRemovalRestricted(enabled bool) Option
- func WithDerivedBlockData(derivedBlockData *derived.DerivedBlockData) Option
- func WithEventCollectionSizeLimit(limit uint64) Option
- func WithEventEncoder(encoder environment.EventEncoder) Option
- func WithExtensiveTracing() Option
- func WithGasLimit(limit uint64) Option
- func WithLogger(logger zerolog.Logger) Option
- func WithMaxStateInteractionSize(limit uint64) Option
- func WithMaxStateKeySize(limit uint64) Option
- func WithMaxStateValueSize(limit uint64) Option
- func WithMemoryAndInteractionLimitsDisabled() Option
- func WithMemoryLimit(limit uint64) Option
- func WithMetricsReporter(mr environment.MetricsReporter) Option
- func WithRestrictedDeployment(restricted bool) Option
- func WithReusableCadenceRuntimePool(pool reusableRuntime.ReusableCadenceRuntimePool) Option
- func WithSequenceNumberCheckAndIncrementEnabled(enabled bool) Option
- func WithServiceAccount(enabled bool) Option
- func WithServiceEventCollectionEnabled() Option
- func WithTracer(tr module.Tracer) Option
- func WithTransactionBodyExecutionEnabled(enabled bool) Option
- func WithTransactionFeesEnabled(enabled bool) Option
- func WithTransactionProcessors(processors ...interface{}) Option
- type Procedure
- type ProcedureExecutor
- type ProcedureType
- type ScriptProcedure
- func (proc *ScriptProcedure) ComputationLimit(ctx Context) uint64
- func (proc *ScriptProcedure) ExecutionTime() derived.LogicalTime
- func (proc *ScriptProcedure) InitialSnapshotTime() derived.LogicalTime
- func (proc *ScriptProcedure) MemoryLimit(ctx Context) uint64
- func (proc *ScriptProcedure) NewExecutor(ctx Context, txnState *state.TransactionState, ...) ProcedureExecutor
- func (proc *ScriptProcedure) ShouldDisableMemoryAndInteractionLimits(ctx Context) bool
- func (ScriptProcedure) Type() ProcedureType
- func (proc *ScriptProcedure) WithArguments(args ...[]byte) *ScriptProcedure
- func (proc *ScriptProcedure) WithRequestContext(reqContext context.Context) *ScriptProcedure
- type TransactionExecutorParams
- type TransactionInvoker
- type TransactionPayerBalanceChecker
- type TransactionProcedure
- func (proc *TransactionProcedure) ComputationLimit(ctx Context) uint64
- func (proc *TransactionProcedure) ExecutionTime() derived.LogicalTime
- func (proc *TransactionProcedure) InitialSnapshotTime() derived.LogicalTime
- func (proc *TransactionProcedure) IsSampled() bool
- func (proc *TransactionProcedure) MemoryLimit(ctx Context) uint64
- func (proc *TransactionProcedure) NewExecutor(ctx Context, txnState *state.TransactionState, ...) ProcedureExecutor
- func (proc *TransactionProcedure) SetTraceSpan(traceSpan otelTrace.Span)
- func (proc *TransactionProcedure) ShouldDisableMemoryAndInteractionLimits(ctx Context) bool
- func (proc *TransactionProcedure) StartSpanFromProcTraceSpan(tracer module.Tracer, spanName trace.SpanName) otelTrace.Span
- func (TransactionProcedure) Type() ProcedureType
- type TransactionSequenceNumberChecker
- type TransactionStorageLimiter
- type TransactionVerifier
- type VirtualMachine
Constants ¶
const ( AccountKeyWeightThreshold = 1000 DefaultComputationLimit = 100_000 // 100K DefaultMemoryLimit = math.MaxUint64 DefaultMaxInteractionSize = 20_000_000 // ~20MB )
const ( BootstrapProcedureType = ProcedureType("bootstrap") TransactionProcedureType = ProcedureType("transaction") ScriptProcedureType = ProcedureType("script") )
Variables ¶
var ( DefaultAccountCreationFee = mustParseUFix64( "account creation fee", "0.00100000") DefaultMinimumStorageReservation = mustParseUFix64( "minimum storage reservation", "0.00100000") DefaultStorageMBPerFLOW = mustParseUFix64( "storage mb per flow", "100.00000000") // DefaultTransactionFees are the default transaction fee parameters if // transaction fees are on. Surge factor is 1.0, inclusion effort cost is // 0.0001 (because the static inclusion effort is 1.0) and execution effort // cost is 0.0 because dynamic execution fees are off. If they are off // (which is the default behaviour) that means the transaction fees are 0.0. DefaultTransactionFees = BootstrapProcedureFeeParameters{ SurgeFactor: mustParseUFix64("fee surge factor", "1.0"), InclusionEffortCost: mustParseUFix64( "fee inclusion effort cost", "0.00001"), ExecutionEffortCost: mustParseUFix64( "fee execution effort cost", "0.0"), } )
Functions ¶
func GetExecutionEffortWeights ¶ added in v0.27.0
func GetExecutionEffortWeights( env environment.Environment, service runtime.Address, ) ( computationWeights meter.ExecutionEffortWeights, err error, )
GetExecutionEffortWeights reads stored execution effort weights from the service account
func GetExecutionMemoryLimit ¶ added in v0.27.0
func GetExecutionMemoryLimit( env environment.Environment, service runtime.Address, ) ( memoryLimit uint64, err error, )
GetExecutionMemoryLimit reads the stored execution memory limit from the service account
func GetExecutionMemoryWeights ¶ added in v0.27.0
func GetExecutionMemoryWeights( env environment.Environment, service runtime.Address, ) ( memoryWeights meter.ExecutionMemoryWeights, err error, )
GetExecutionMemoryWeights reads stored execution memory weights from the service account
func NewInterpreterRuntime ¶ added in v0.15.1
func NewTransactionEnvironment ¶ added in v0.20.0
func NewTransactionEnvironment( ctx Context, txnState *state.TransactionState, derivedTxnData environment.DerivedTransactionData, tx *flow.TransactionBody, txIndex uint32, traceSpan otelTrace.Span, ) environment.Environment
TODO(patrick): remove once https://github.com/onflow/flow-emulator/pull/242 is integrated into flow-go's integration test.
func Run ¶ added in v0.29.0
func Run(executor ProcedureExecutor) error
Types ¶
type Blocks ¶
type Blocks = environment.Blocks
TODO(patrick): rm after https://github.com/onflow/flow-emulator/pull/229 is merged and integrated.
func NewBlockFinder ¶ added in v0.13.0
TODO(patrick): rm after https://github.com/onflow/flow-emulator/pull/229 is merged and integrated.
type BootstrapAccountKeys ¶ added in v0.27.0
type BootstrapAccountKeys struct { ServiceAccountPublicKeys []flow.AccountPublicKey FungibleTokenAccountPublicKeys []flow.AccountPublicKey FlowTokenAccountPublicKeys []flow.AccountPublicKey FlowFeesAccountPublicKeys []flow.AccountPublicKey NodeAccountPublicKeys []flow.AccountPublicKey }
type BootstrapParams ¶ added in v0.29.0
type BootstrapParams struct {
// contains filtered or unexported fields
}
type BootstrapProcedure ¶
type BootstrapProcedure struct {
BootstrapParams
}
A BootstrapProcedure is an invokable that can be used to bootstrap the ledger state with the default accounts and contracts required by the Flow virtual machine.
func Bootstrap ¶
func Bootstrap( serviceAccountPublicKey flow.AccountPublicKey, opts ...BootstrapProcedureOption, ) *BootstrapProcedure
Bootstrap returns a new BootstrapProcedure instance configured with the provided genesis parameters.
func (*BootstrapProcedure) ComputationLimit ¶ added in v0.25.2
func (proc *BootstrapProcedure) ComputationLimit(_ Context) uint64
func (*BootstrapProcedure) ExecutionTime ¶ added in v0.28.0
func (proc *BootstrapProcedure) ExecutionTime() derived.LogicalTime
func (*BootstrapProcedure) InitialSnapshotTime ¶ added in v0.28.0
func (proc *BootstrapProcedure) InitialSnapshotTime() derived.LogicalTime
func (*BootstrapProcedure) MemoryLimit ¶ added in v0.25.2
func (proc *BootstrapProcedure) MemoryLimit(_ Context) uint64
func (*BootstrapProcedure) NewExecutor ¶ added in v0.29.0
func (b *BootstrapProcedure) NewExecutor( ctx Context, txnState *state.TransactionState, _ *derived.DerivedTransactionData, ) ProcedureExecutor
func (*BootstrapProcedure) ShouldDisableMemoryAndInteractionLimits ¶ added in v0.28.0
func (proc *BootstrapProcedure) ShouldDisableMemoryAndInteractionLimits(_ Context) bool
func (BootstrapProcedure) Type ¶ added in v0.28.0
func (BootstrapProcedure) Type() ProcedureType
type BootstrapProcedureFeeParameters ¶ added in v0.25.2
type BootstrapProcedureOption ¶ added in v0.14.0
type BootstrapProcedureOption func(*BootstrapProcedure) *BootstrapProcedure
func WithAccountCreationFee ¶ added in v0.14.0
func WithAccountCreationFee(fee cadence.UFix64) BootstrapProcedureOption
func WithBootstrapAccountKeys ¶ added in v0.27.0
func WithBootstrapAccountKeys(keys BootstrapAccountKeys) BootstrapProcedureOption
WithBootstrapAccountKeys sets the public keys of the accounts that will be created during bootstrapping by default all accounts are created with the ServiceAccountPublicKey specified when calling `Bootstrap`.
func WithEpochConfig ¶ added in v0.20.0
func WithEpochConfig(epochConfig epochs.EpochConfig) BootstrapProcedureOption
func WithExecutionEffortWeights ¶ added in v0.25.5
func WithExecutionEffortWeights(weights meter.ExecutionEffortWeights) BootstrapProcedureOption
func WithExecutionMemoryLimit ¶ added in v0.26.2
func WithExecutionMemoryLimit(limit uint64) BootstrapProcedureOption
func WithExecutionMemoryWeights ¶ added in v0.26.0
func WithExecutionMemoryWeights(weights meter.ExecutionMemoryWeights) BootstrapProcedureOption
func WithIdentities ¶ added in v0.20.0
func WithIdentities(identities flow.IdentityList) BootstrapProcedureOption
func WithInitialTokenSupply ¶ added in v0.14.0
func WithInitialTokenSupply(supply cadence.UFix64) BootstrapProcedureOption
func WithMinimumStorageReservation ¶ added in v0.14.0
func WithMinimumStorageReservation(reservation cadence.UFix64) BootstrapProcedureOption
func WithRestrictedAccountCreationEnabled ¶ added in v0.17.6
func WithRestrictedAccountCreationEnabled(enabled cadence.Bool) BootstrapProcedureOption
func WithRestrictedContractDeployment ¶ added in v0.26.0
func WithRestrictedContractDeployment(restricted *bool) BootstrapProcedureOption
func WithRootBlock ¶ added in v0.20.0
func WithRootBlock(rootBlock *flow.Header) BootstrapProcedureOption
func WithStorageMBPerFLOW ¶ added in v0.16.1
func WithStorageMBPerFLOW(ratio cadence.UFix64) BootstrapProcedureOption
func WithTransactionFee ¶ added in v0.14.0
func WithTransactionFee(fees BootstrapProcedureFeeParameters) BootstrapProcedureOption
type Context ¶
type Context struct { // DisableMemoryAndInteractionLimits will override memory and interaction // limits and set them to MaxUint64, effectively disabling these limits. DisableMemoryAndInteractionLimits bool ComputationLimit uint64 MemoryLimit uint64 MaxStateKeySize uint64 MaxStateValueSize uint64 MaxStateInteractionSize uint64 TransactionExecutorParams DerivedBlockData *derived.DerivedBlockData environment.EnvironmentParams }
A Context defines a set of execution parameters used by the virtual machine.
func NewContext ¶
NewContext initializes a new execution context with the provided options.
func NewContextFromParent ¶
NewContextFromParent spawns a child execution context with the provided options.
type MeterParamOverridesComputer ¶ added in v0.29.0
type MeterParamOverridesComputer struct {
// contains filtered or unexported fields
}
func NewMeterParamOverridesComputer ¶ added in v0.29.0
func NewMeterParamOverridesComputer( ctx Context, derivedTxnData *derived.DerivedTransactionData, ) MeterParamOverridesComputer
func (MeterParamOverridesComputer) Compute ¶ added in v0.29.0
func (computer MeterParamOverridesComputer) Compute( txnState *state.TransactionState, _ struct{}, ) ( derived.MeterParamOverrides, error, )
type Option ¶
An Option sets a configuration parameter for a virtual machine context.
func WithAccountKeyWeightThreshold ¶ added in v0.29.0
WithAccountKeyWeightThreshold sets the key weight threshold used for authorization checks. If the threshold is a negative number, signature verification is skipped.
Note: This is set only by tests
func WithAccountStorageLimit ¶ added in v0.14.0
WithAccountStorageLimit enables or disables checking if account storage used is over its storage capacity
func WithAuthorizationChecksEnabled ¶ added in v0.29.0
WithAuthorizationCheckxEnabled enables or disables pre-execution authorization checks.
func WithBlockHeader ¶
WithBlockHeader sets the block header for a virtual machine context.
The VM uses the header to provide current block information to the Cadence runtime, as well as to seed the pseudorandom number generator.
func WithBlocks ¶
func WithBlocks(blocks environment.Blocks) Option
WithBlocks sets the block storage provider for a virtual machine context.
The VM uses the block storage provider to provide historical block information to the Cadence runtime.
func WithCadenceLogging ¶ added in v0.13.1
WithCadenceLogging enables or disables Cadence logging for a virtual machine context.
func WithComputationLimit ¶ added in v0.25.2
WithComputationLimit sets the computation limit for a virtual machine context.
func WithContractDeploymentRestricted ¶ added in v0.27.0
WithRestrictedContractDeployment enables or disables restricted contract deployment for a virtual machine context. Warning! this would be overridden with the flag stored on chain. this is just a fallback value
func WithContractRemovalRestricted ¶ added in v0.27.0
WithRestrictContractRemoval enables or disables restricted contract removal for a virtual machine context. Warning! this would be overridden with the flag stored on chain. this is just a fallback value
func WithDerivedBlockData ¶ added in v0.29.0
func WithDerivedBlockData(derivedBlockData *derived.DerivedBlockData) Option
WithDerivedBlockData sets the derived data cache storage to be used by the transaction/script.
func WithEventCollectionSizeLimit ¶ added in v0.13.1
WithEventCollectionSizeLimit sets the event collection byte size limit for a virtual machine context.
func WithEventEncoder ¶ added in v0.29.0
func WithEventEncoder(encoder environment.EventEncoder) Option
WithEventEncoder sets events encoder to be used for encoding events emitted during execution
func WithExtensiveTracing ¶ added in v0.16.0
func WithExtensiveTracing() Option
WithExtensiveTracing sets the extensive tracing
func WithGasLimit ¶
WithGasLimit sets the computation limit for a virtual machine context. @depricated, please use WithComputationLimit instead.
func WithLogger ¶ added in v0.28.0
WithLogger sets the context logger
func WithMaxStateInteractionSize ¶ added in v0.14.0
WithMaxStateInteractionSize sets the byte size limit for total interaction with ledger. this prevents attacks such as reading all large registers
func WithMaxStateKeySize ¶ added in v0.14.0
WithMaxStateKeySize sets the byte size limit for ledger keys
func WithMaxStateValueSize ¶ added in v0.14.0
WithMaxStateValueSize sets the byte size limit for ledger values
func WithMemoryAndInteractionLimitsDisabled ¶ added in v0.28.0
func WithMemoryAndInteractionLimitsDisabled() Option
WithMemoryAndInteractionLimitsDisabled will override memory and interaction limits and set them to MaxUint64, effectively disabling these limits.
func WithMemoryLimit ¶ added in v0.25.2
WithMemoryLimit sets the memory limit for a virtual machine context.
func WithMetricsReporter ¶ added in v0.17.6
func WithMetricsReporter(mr environment.MetricsReporter) Option
WithMetricsReporter sets the metrics collector for a virtual machine context.
A metrics collector is used to gather metrics reported by the Cadence runtime.
func WithRestrictedDeployment ¶
@Depricated please use WithContractDeploymentRestricted instead of this this has been kept to reduce breaking change on the emulator, but would be removed at some point.
func WithReusableCadenceRuntimePool ¶ added in v0.28.0
func WithReusableCadenceRuntimePool( pool reusableRuntime.ReusableCadenceRuntimePool, ) Option
WithReusableCadenceRuntimePool set the (shared) RedusableCadenceRuntimePool use for creating the cadence runtime.
func WithSequenceNumberCheckAndIncrementEnabled ¶ added in v0.29.0
WithSequenceNumberCheckAndIncrementEnabled enables or disables pre-execution sequence number check / increment.
func WithServiceAccount ¶
WithServiceAccount enables or disables calls to the Flow service account.
func WithServiceEventCollectionEnabled ¶ added in v0.17.1
func WithServiceEventCollectionEnabled() Option
WithServiceEventCollectionEnabled enables service event collection
func WithTracer ¶ added in v0.14.5
WithTracer sets the tracer for a virtual machine context.
func WithTransactionBodyExecutionEnabled ¶ added in v0.29.0
WithTransactionBodyExecutionEnabled enables or disables the transaction body execution.
Note: This is disabled only by tests
func WithTransactionFeesEnabled ¶ added in v0.17.1
WithTransactionFeesEnabled enables or disables deduction of transaction fees
func WithTransactionProcessors ¶
func WithTransactionProcessors(processors ...interface{}) Option
TODO(patrick): remove after emulator has been updated.
WithTransactionProcessors sets the transaction processors for a virtual machine context.
type Procedure ¶
type Procedure interface { NewExecutor( ctx Context, txnState *state.TransactionState, derivedTxnData *derived.DerivedTransactionData, ) ProcedureExecutor ComputationLimit(ctx Context) uint64 MemoryLimit(ctx Context) uint64 ShouldDisableMemoryAndInteractionLimits(ctx Context) bool Type() ProcedureType // The initial snapshot time is used as part of OCC validation to ensure // there are no read-write conflict amongst transactions. Note that once // we start supporting parallel preprocessing/execution, a transaction may // operation on mutliple snapshots. // // For scripts, since they can only be executed after the block has been // executed, the initial snapshot time is EndOfBlockExecutionTime. InitialSnapshotTime() derived.LogicalTime // For transactions, the execution time is TxIndex. For scripts, the // execution time is EndOfBlockExecutionTime. ExecutionTime() derived.LogicalTime }
An Procedure is an operation (or set of operations) that reads or writes ledger state.
type ProcedureExecutor ¶ added in v0.29.0
type ProcedureType ¶ added in v0.28.0
type ProcedureType string
type ScriptProcedure ¶
type ScriptProcedure struct { ID flow.Identifier Script []byte Arguments [][]byte RequestContext context.Context Value cadence.Value Logs []string Events []flow.Event GasUsed uint64 MemoryEstimate uint64 Err errors.CodedError }
func NewScriptWithContextAndArgs ¶ added in v0.26.0
func NewScriptWithContextAndArgs( code []byte, reqContext context.Context, args ...[]byte, ) *ScriptProcedure
func Script ¶
func Script(code []byte) *ScriptProcedure
func (*ScriptProcedure) ComputationLimit ¶ added in v0.25.2
func (proc *ScriptProcedure) ComputationLimit(ctx Context) uint64
func (*ScriptProcedure) ExecutionTime ¶ added in v0.28.0
func (proc *ScriptProcedure) ExecutionTime() derived.LogicalTime
func (*ScriptProcedure) InitialSnapshotTime ¶ added in v0.28.0
func (proc *ScriptProcedure) InitialSnapshotTime() derived.LogicalTime
func (*ScriptProcedure) MemoryLimit ¶ added in v0.25.2
func (proc *ScriptProcedure) MemoryLimit(ctx Context) uint64
func (*ScriptProcedure) NewExecutor ¶ added in v0.29.0
func (proc *ScriptProcedure) NewExecutor( ctx Context, txnState *state.TransactionState, derivedTxnData *derived.DerivedTransactionData, ) ProcedureExecutor
func (*ScriptProcedure) ShouldDisableMemoryAndInteractionLimits ¶ added in v0.28.0
func (proc *ScriptProcedure) ShouldDisableMemoryAndInteractionLimits( ctx Context, ) bool
func (ScriptProcedure) Type ¶ added in v0.28.0
func (ScriptProcedure) Type() ProcedureType
func (*ScriptProcedure) WithArguments ¶
func (proc *ScriptProcedure) WithArguments(args ...[]byte) *ScriptProcedure
func (*ScriptProcedure) WithRequestContext ¶ added in v0.26.0
func (proc *ScriptProcedure) WithRequestContext( reqContext context.Context, ) *ScriptProcedure
type TransactionExecutorParams ¶ added in v0.29.0
type TransactionExecutorParams struct { AuthorizationChecksEnabled bool SequenceNumberCheckAndIncrementEnabled bool // If AccountKeyWeightThreshold is set to a negative number, signature // verification is skipped during authorization checks. // // Note: This is set only by tests AccountKeyWeightThreshold int // Note: This is disabled only by tests TransactionBodyExecutionEnabled bool }
func DefaultTransactionExecutorParams ¶ added in v0.29.0
func DefaultTransactionExecutorParams() TransactionExecutorParams
type TransactionInvoker ¶ added in v0.23.2
type TransactionInvoker struct { }
TODO(patrick): rm once emulator is updated.
func NewTransactionInvoker ¶ added in v0.23.2
func NewTransactionInvoker() *TransactionInvoker
type TransactionPayerBalanceChecker ¶ added in v0.29.0
type TransactionPayerBalanceChecker struct{}
func (TransactionPayerBalanceChecker) CheckPayerBalanceAndReturnMaxFees ¶ added in v0.29.0
func (_ TransactionPayerBalanceChecker) CheckPayerBalanceAndReturnMaxFees( proc *TransactionProcedure, txnState *state.TransactionState, env environment.Environment, ) (uint64, error)
type TransactionProcedure ¶
type TransactionProcedure struct { ID flow.Identifier Transaction *flow.TransactionBody InitialSnapshotTxIndex uint32 TxIndex uint32 Logs []string Events []flow.Event ServiceEvents []flow.Event ComputationUsed uint64 ComputationIntensities meter.MeteredComputationIntensities MemoryEstimate uint64 Err errors.CodedError TraceSpan otelTrace.Span }
func Transaction ¶
func Transaction(tx *flow.TransactionBody, txIndex uint32) *TransactionProcedure
TODO(patrick): pass in initial snapshot time when we start supporting speculative pre-processing / execution.
func (*TransactionProcedure) ComputationLimit ¶ added in v0.25.2
func (proc *TransactionProcedure) ComputationLimit(ctx Context) uint64
func (*TransactionProcedure) ExecutionTime ¶ added in v0.28.0
func (proc *TransactionProcedure) ExecutionTime() derived.LogicalTime
func (*TransactionProcedure) InitialSnapshotTime ¶ added in v0.28.0
func (proc *TransactionProcedure) InitialSnapshotTime() derived.LogicalTime
func (*TransactionProcedure) IsSampled ¶ added in v0.28.2
func (proc *TransactionProcedure) IsSampled() bool
func (*TransactionProcedure) MemoryLimit ¶ added in v0.25.2
func (proc *TransactionProcedure) MemoryLimit(ctx Context) uint64
func (*TransactionProcedure) NewExecutor ¶ added in v0.29.0
func (proc *TransactionProcedure) NewExecutor( ctx Context, txnState *state.TransactionState, derivedTxnData *derived.DerivedTransactionData, ) ProcedureExecutor
func (*TransactionProcedure) SetTraceSpan ¶ added in v0.14.5
func (proc *TransactionProcedure) SetTraceSpan(traceSpan otelTrace.Span)
func (*TransactionProcedure) ShouldDisableMemoryAndInteractionLimits ¶ added in v0.28.0
func (proc *TransactionProcedure) ShouldDisableMemoryAndInteractionLimits( ctx Context, ) bool
func (*TransactionProcedure) StartSpanFromProcTraceSpan ¶ added in v0.28.2
func (TransactionProcedure) Type ¶ added in v0.28.0
func (TransactionProcedure) Type() ProcedureType
type TransactionSequenceNumberChecker ¶
type TransactionSequenceNumberChecker struct{}
func (TransactionSequenceNumberChecker) CheckAndIncrementSequenceNumber ¶ added in v0.29.0
func (c TransactionSequenceNumberChecker) CheckAndIncrementSequenceNumber( tracer module.Tracer, proc *TransactionProcedure, txnState *state.TransactionState, ) error
type TransactionStorageLimiter ¶ added in v0.14.0
type TransactionStorageLimiter struct{}
func (TransactionStorageLimiter) CheckStorageLimits ¶ added in v0.29.0
func (d TransactionStorageLimiter) CheckStorageLimits( env environment.Environment, addresses []flow.Address, payer flow.Address, maxTxFees uint64, ) error
CheckStorageLimits checks each account that had its storage written to during a transaction, that its storage used is less than its storage capacity. Storage used is an FVM register and is easily accessible. Storage capacity is calculated by the FlowStorageFees contract from the account's flow balance.
The payers balance is considered to be maxTxFees lower that its actual balance, due to the fact that the fee deduction step happens after the storage limit check.
type TransactionVerifier ¶ added in v0.27.0
type TransactionVerifier struct {
VerificationConcurrency int
}
TransactionVerifier verifies the content of the transaction by checking accounts (authorizers, payer, proposer) are not frozen checking there is no double signature all signatures are valid all accounts provides enoguh weights
if KeyWeightThreshold is set to a negative number, signature verification is skipped
func (*TransactionVerifier) CheckAuthorization ¶ added in v0.29.0
func (v *TransactionVerifier) CheckAuthorization( tracer module.Tracer, proc *TransactionProcedure, txnState *state.TransactionState, keyWeightThreshold int, ) error
type VirtualMachine ¶
type VirtualMachine struct { }
A VirtualMachine augments the Cadence runtime with Flow host functionality.
func NewVirtualMachine ¶ added in v0.15.1
func NewVirtualMachine() *VirtualMachine
Source Files ¶
Directories ¶
Path | Synopsis |
---|---|
Package systemcontracts stores canonical address locations for all system smart contracts and service events.
|
Package systemcontracts stores canonical address locations for all system smart contracts and service events. |