You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Messages and submessages are merged; the replyOn type now got a new "never" case for the fire and forget messages
replyOn is not an integer but supports the Stringer interface (i.e. .String())
The interface version was bumped from interface_version_5 to interface_version_6 such that CosmWasm 0.15.0 contracts need to be used
In some Wasm messages "send" was renamed to "funds" for consistency
The IBC acknowledgement type was changed slightly
There is a new Gov message (MsgVote) that needs to be connected
Deserializing contract results now cost gas. This needs to be configured in a new argument of vm.Execute and friends. We messed up storing the value in the vm instance, such that it needs to be passed to every call. Sorry for that! The deserialization cost is in gas per byte. It is a fraction, so you can use 20/1, 10/1, 1/1, 1/2, 1/30, ... in there.
Contract responses now contain events. The exiting Attributes should go into a main wasm event as before. All other events should be added with a wasm- prefix on the event type.
Not yet released. Will follow shortly after https://github.com/CosmWasm/cosmwasm/milestone/17 is done.
The text was updated successfully, but these errors were encountered: