diff --git a/src/pages/node/config-node.mdx b/src/pages/node/config-node.mdx index a35e123d3..d3fba2442 100644 --- a/src/pages/node/config-node.mdx +++ b/src/pages/node/config-node.mdx @@ -73,5 +73,7 @@ On a fresh install `setup-node.sh` puts the following in your node's home direct │   ├── config.toml │   ├── genesis.json │   └── seeds.toml +├── lib +│   └── libwasmvm.${arch}.so └── logs ``` diff --git a/src/pages/validator/setup/manual.mdx b/src/pages/validator/setup/manual.mdx index 539861656..f6c7778d3 100644 --- a/src/pages/validator/setup/manual.mdx +++ b/src/pages/validator/setup/manual.mdx @@ -19,6 +19,7 @@ Check the appropriate version for the network accordingly: ```bash AXELARD_RELEASE=v0.34.1 TOFND_RELEASE=v0.10.1 +WASMVM_RELEASE=v1.3.1 ``` @@ -26,6 +27,7 @@ TOFND_RELEASE=v0.10.1 ```bash AXELARD_RELEASE=v0.34.1 TOFND_RELEASE=v0.10.1 +WASMVM_RELEASE=v1.3.1 ``` @@ -33,7 +35,7 @@ TOFND_RELEASE=v0.10.1 ```bash # verify correct versions -echo $AXELARD_RELEASE $TOFND_RELEASE +echo $AXELARD_RELEASE $TOFND_RELEASE $WASMVM_RELEASE # create a temp dir for binaries cd $HOME @@ -52,11 +54,15 @@ chmod +x * # move to usr bin sudo mv * /usr/bin/ +# get wasmvm library +wget https://github.com/CosmWasm/wasmvm/releases/download/$WASMVM_RELEASE/libwasmvm.x86_64.so -O /usr/local/lib/libwasmvm.x86_64.so + # get out of binaries directory cd $HOME # check versions axelard version +axelard q wasm libwasmvm-version tofnd --help ```