Documentation ¶
Index ¶
- func DeserializeResponse(gasLimit uint64, deserCost types.UFraction, gasReport *types.GasReport, ...) error
- func LibwasmvmVersion() (string, error)
- type Checksum
- type GasMeter
- type GoAPI
- type KVStore
- type Querier
- type VM
- func (vm *VM) AnalyzeCode(checksum Checksum) (*types.AnalysisReport, error)
- func (vm *VM) Cleanup()
- func (vm *VM) Execute(checksum Checksum, env types.Env, info types.MessageInfo, executeMsg []byte, ...) (*types.ContractResult, uint64, error)
- func (vm *VM) GetCode(checksum Checksum) (WasmCode, error)
- func (vm *VM) GetMetrics() (*types.Metrics, error)
- func (vm *VM) IBCChannelClose(checksum Checksum, env types.Env, msg types.IBCChannelCloseMsg, store KVStore, ...) (*types.IBCBasicResult, uint64, error)
- func (vm *VM) IBCChannelConnect(checksum Checksum, env types.Env, msg types.IBCChannelConnectMsg, ...) (*types.IBCBasicResult, uint64, error)
- func (vm *VM) IBCChannelOpen(checksum Checksum, env types.Env, msg types.IBCChannelOpenMsg, store KVStore, ...) (*types.IBCChannelOpenResult, uint64, error)
- func (vm *VM) IBCPacketAck(checksum Checksum, env types.Env, msg types.IBCPacketAckMsg, store KVStore, ...) (*types.IBCBasicResult, uint64, error)
- func (vm *VM) IBCPacketReceive(checksum Checksum, env types.Env, msg types.IBCPacketReceiveMsg, store KVStore, ...) (*types.IBCReceiveResult, uint64, error)
- func (vm *VM) IBCPacketTimeout(checksum Checksum, env types.Env, msg types.IBCPacketTimeoutMsg, store KVStore, ...) (*types.IBCBasicResult, uint64, error)
- func (vm *VM) Instantiate(checksum Checksum, env types.Env, info types.MessageInfo, initMsg []byte, ...) (*types.ContractResult, uint64, error)
- func (vm *VM) Migrate(checksum Checksum, env types.Env, migrateMsg []byte, store KVStore, ...) (*types.ContractResult, uint64, error)
- func (vm *VM) Pin(checksum Checksum) error
- func (vm *VM) Query(checksum Checksum, env types.Env, queryMsg []byte, store KVStore, goapi GoAPI, ...) (*types.QueryResult, uint64, error)
- func (vm *VM) RemoveCode(checksum Checksum) error
- func (vm *VM) Reply(checksum Checksum, env types.Env, reply types.Reply, store KVStore, ...) (*types.ContractResult, uint64, error)
- func (vm *VM) StoreCode(code WasmCode, gasLimit uint64) (Checksum, uint64, error)
- func (vm *VM) StoreCodeUnchecked(code WasmCode) (Checksum, error)
- func (vm *VM) Sudo(checksum Checksum, env types.Env, sudoMsg []byte, store KVStore, goapi GoAPI, ...) (*types.ContractResult, uint64, error)
- func (vm *VM) Unpin(checksum Checksum) error
- type Vm
- type WasmCode
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func DeserializeResponse ¶
func LibwasmvmVersion ¶
LibwasmvmVersion returns the version of the loaded library at runtime. This can be used for debugging to verify the loaded version matches the expected version.
When cgo is disabled at build time, this returns an error at runtime.
Types ¶
type Checksum ¶
Checksum represents a hash of the Wasm bytecode that serves as an ID. Must be generated from this library.
func CreateChecksum ¶
CreateChecksum performs the hashing of Wasm bytes to obtain the CosmWasm checksum.
Ony Wasm blobs are allowed as inputs and a magic byte check will be performed to avoid accidental misusage.
type VM ¶
type VM struct {
// contains filtered or unexported fields
}
VM is the main entry point to this library. You should create an instance with its own subdirectory to manage state inside, and call it for all cosmwasm code related actions.
func NewVM ¶
func NewVM(dataDir string, supportedCapabilities []string, memoryLimit uint32, printDebug bool, cacheSize uint32) (*VM, error)
NewVM creates a new VM.
`dataDir` is a base directory for Wasm blobs and various caches. `supportedCapabilities` is a list of capabilities supported by the chain. `memoryLimit` is the memory limit of each contract execution (in MiB) `printDebug` is a flag to enable/disable printing debug logs from the contract to STDOUT. This should be false in production environments. `cacheSize` sets the size in MiB of an in-memory cache for e.g. module caching. Set to 0 to disable. `deserCost` sets the gas cost of deserializing one byte of data.
func (*VM) AnalyzeCode ¶
func (vm *VM) AnalyzeCode(checksum Checksum) (*types.AnalysisReport, error)
Returns a report of static analysis of the wasm contract (uncompiled). This contract must have been stored in the cache previously (via Create). Only info currently returned is if it exposes all ibc entry points, but this may grow later
func (*VM) Cleanup ¶
func (vm *VM) Cleanup()
Cleanup should be called when no longer using this instances. It frees resources in libwasmvm (the Rust part) and releases a lock in the base directory.
func (*VM) Execute ¶
func (vm *VM) Execute( checksum Checksum, env types.Env, info types.MessageInfo, executeMsg []byte, store KVStore, goapi GoAPI, querier Querier, gasMeter GasMeter, gasLimit uint64, deserCost types.UFraction, ) (*types.ContractResult, uint64, error)
Execute calls a given contract. Since the only difference between contracts with the same Checksum is the data in their local storage, and their address in the outside world, we need no ContractID here. (That is a detail for the external, sdk-facing, side).
The caller is responsible for passing the correct `store` (which must have been initialized exactly once), and setting the env with relevant info on this instance (address, balance, etc)
func (*VM) GetCode ¶
GetCode will load the original Wasm code for the given checksum. This will only succeed if that checksum was previously returned from a call to StoreCode.
This can be used so that the (short) checksum is stored in the iavl tree and the larger binary blobs (wasm and compiled modules) are all managed by libwasmvm/cosmwasm-vm (Rust part).
func (*VM) GetMetrics ¶
GetMetrics some internal metrics for monitoring purposes.
func (*VM) IBCChannelClose ¶
func (vm *VM) IBCChannelClose( checksum Checksum, env types.Env, msg types.IBCChannelCloseMsg, store KVStore, goapi GoAPI, querier Querier, gasMeter GasMeter, gasLimit uint64, deserCost types.UFraction, ) (*types.IBCBasicResult, uint64, error)
IBCChannelClose is available on IBC-enabled contracts and is a hook to call into at the end of the channel lifetime
func (*VM) IBCChannelConnect ¶
func (vm *VM) IBCChannelConnect( checksum Checksum, env types.Env, msg types.IBCChannelConnectMsg, store KVStore, goapi GoAPI, querier Querier, gasMeter GasMeter, gasLimit uint64, deserCost types.UFraction, ) (*types.IBCBasicResult, uint64, error)
IBCChannelConnect is available on IBC-enabled contracts and is a hook to call into during the handshake pahse
func (*VM) IBCChannelOpen ¶
func (vm *VM) IBCChannelOpen( checksum Checksum, env types.Env, msg types.IBCChannelOpenMsg, store KVStore, goapi GoAPI, querier Querier, gasMeter GasMeter, gasLimit uint64, deserCost types.UFraction, ) (*types.IBCChannelOpenResult, uint64, error)
IBCChannelOpen is available on IBC-enabled contracts and is a hook to call into during the handshake pahse
func (*VM) IBCPacketAck ¶
func (vm *VM) IBCPacketAck( checksum Checksum, env types.Env, msg types.IBCPacketAckMsg, store KVStore, goapi GoAPI, querier Querier, gasMeter GasMeter, gasLimit uint64, deserCost types.UFraction, ) (*types.IBCBasicResult, uint64, error)
IBCPacketAck is available on IBC-enabled contracts and is called when an the response for an outgoing packet (previously sent by this contract) is received
func (*VM) IBCPacketReceive ¶
func (vm *VM) IBCPacketReceive( checksum Checksum, env types.Env, msg types.IBCPacketReceiveMsg, store KVStore, goapi GoAPI, querier Querier, gasMeter GasMeter, gasLimit uint64, deserCost types.UFraction, ) (*types.IBCReceiveResult, uint64, error)
IBCPacketReceive is available on IBC-enabled contracts and is called when an incoming packet is received on a channel belonging to this contract
func (*VM) IBCPacketTimeout ¶
func (vm *VM) IBCPacketTimeout( checksum Checksum, env types.Env, msg types.IBCPacketTimeoutMsg, store KVStore, goapi GoAPI, querier Querier, gasMeter GasMeter, gasLimit uint64, deserCost types.UFraction, ) (*types.IBCBasicResult, uint64, error)
IBCPacketTimeout is available on IBC-enabled contracts and is called when an outgoing packet (previously sent by this contract) will provably never be executed. Usually handled like ack returning an error
func (*VM) Instantiate ¶
func (vm *VM) Instantiate( checksum Checksum, env types.Env, info types.MessageInfo, initMsg []byte, store KVStore, goapi GoAPI, querier Querier, gasMeter GasMeter, gasLimit uint64, deserCost types.UFraction, ) (*types.ContractResult, uint64, error)
Instantiate will create a new contract based on the given Checksum. We can set the initMsg (contract "genesis") here, and it then receives an account and address and can be invoked (Execute) many times.
Storage should be set with a PrefixedKVStore that this code can safely access.
Under the hood, we may recompile the wasm, use a cached native compile, or even use a cached instance for performance.
func (*VM) Migrate ¶
func (vm *VM) Migrate( checksum Checksum, env types.Env, migrateMsg []byte, store KVStore, goapi GoAPI, querier Querier, gasMeter GasMeter, gasLimit uint64, deserCost types.UFraction, ) (*types.ContractResult, uint64, error)
Migrate will migrate an existing contract to a new code binary. This takes storage of the data from the original contract and the Checksum of the new contract that should replace it. This allows it to run a migration step if needed, or return an error if unable to migrate the given data.
MigrateMsg has some data on how to perform the migration.
func (*VM) Pin ¶
Pin pins a code to an in-memory cache, such that is always loaded quickly when executed. Pin is idempotent.
func (*VM) Query ¶
func (vm *VM) Query( checksum Checksum, env types.Env, queryMsg []byte, store KVStore, goapi GoAPI, querier Querier, gasMeter GasMeter, gasLimit uint64, deserCost types.UFraction, ) (*types.QueryResult, uint64, error)
Query allows a client to execute a contract-specific query. If the result is not empty, it should be valid json-encoded data to return to the client. The meaning of path and data can be determined by the code. Path is the suffix of the abci.QueryRequest.Path
func (*VM) RemoveCode ¶
func (*VM) Reply ¶
func (vm *VM) Reply( checksum Checksum, env types.Env, reply types.Reply, store KVStore, goapi GoAPI, querier Querier, gasMeter GasMeter, gasLimit uint64, deserCost types.UFraction, ) (*types.ContractResult, uint64, error)
Reply allows the native Go wasm modules to make a priviledged call to return the result of executing a SubMsg.
These work much like Sudo (same scenario) but focuses on one specific case (and one message type)
func (*VM) StoreCode ¶
StoreCode will compile the Wasm code, and store the resulting compiled module as well as the original code. Both can be referenced later via Checksum. This must be done one time for given code, after which it can be instatitated many times, and each instance called many times.
For example, the code for all ERC-20 contracts should be the same. This function stores the code for that contract only once, but it can be instantiated with custom inputs in the future.
Returns both the checksum, as well as the gas cost of compilation (in CosmWasm Gas) or an error.
func (*VM) StoreCodeUnchecked ¶
StoreCodeUnchecked is the same as StoreCode but skips static validation checks. Use this for adding code that was checked before, particularly in the case of state sync.
func (*VM) Sudo ¶
func (vm *VM) Sudo( checksum Checksum, env types.Env, sudoMsg []byte, store KVStore, goapi GoAPI, querier Querier, gasMeter GasMeter, gasLimit uint64, deserCost types.UFraction, ) (*types.ContractResult, uint64, error)
Sudo allows native Go modules to make priviledged (sudo) calls on the contract. The contract can expose entry points that cannot be triggered by any transaction, but only via native Go modules, and delegate the access control to the system.
These work much like Migrate (same scenario) but allows custom apps to extend the priviledged entry points without forking cosmwasm-vm.