Skip to content

Commit

Permalink
docs: add libwasmvm instruction to manual node setup (#759)
Browse files Browse the repository at this point in the history
Co-authored-by: Milap Sheth <[email protected]>
  • Loading branch information
RiceAndMeet and milapsheth authored Feb 6, 2024
1 parent e0edfac commit 889519e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
2 changes: 2 additions & 0 deletions src/pages/node/config-node.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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
```
8 changes: 7 additions & 1 deletion src/pages/validator/setup/manual.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -19,21 +19,23 @@ Check the appropriate version for the network accordingly:
```bash
AXELARD_RELEASE=v0.34.1
TOFND_RELEASE=v0.10.1
WASMVM_RELEASE=v1.3.1
```

</tab-item>
<tab-item title="Testnet">
```bash
AXELARD_RELEASE=v0.34.1
TOFND_RELEASE=v0.10.1
WASMVM_RELEASE=v1.3.1
```

</tab-item>
</tabs>

```bash
# verify correct versions
echo $AXELARD_RELEASE $TOFND_RELEASE
echo $AXELARD_RELEASE $TOFND_RELEASE $WASMVM_RELEASE

# create a temp dir for binaries
cd $HOME
Expand All @@ -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
```

Expand Down

0 comments on commit 889519e

Please sign in to comment.