cosmwasm-vm 2.2.5

VM bindings to run CosmWasm contracts
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Test data

The contracts here are compilations of the Hackatom contract.

## contract.wasm

Is a symbolic link to a recent hackatom contract.

## corrupted.wasm

A corrupted contract files, created by

```sh
cp contract.wasm corrupted.wasm
printf '\x11\x11\x11\x11\x11\x11\x11\x11' | dd of=corrupted.wasm bs=1 seek=1000 count=8 conv=notrunc
```