Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/therustmonk/exonum-wasmi
Exonum + Wasmi
https://github.com/therustmonk/exonum-wasmi
Last synced: 2 days ago
JSON representation
Exonum + Wasmi
- Host: GitHub
- URL: https://github.com/therustmonk/exonum-wasmi
- Owner: therustmonk
- Created: 2018-02-03T12:03:44.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-02-28T16:05:43.000Z (almost 7 years ago)
- Last Synced: 2025-01-02T21:12:29.228Z (6 days ago)
- Language: WebAssembly
- Size: 765 KB
- Stars: 20
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Exonum + Wasmi
To build the project use:
```
cargo build --all
```When the project is build all necessary binaries placed to `./target/debug` directory.
To run the node use:
```
./target/debug/exowasm-node
```To deploy the test kernel:
```
./target/debug/exowasm-client deploy cryptocurrency cryptocurrency/cryptocurrency.wasm
```To call simple test you can run the following command
```
./target/debug/exowasm-client call cryptocurrency create_wallet
```If you need to pass arguments to wasm you can pass it in HEX like:
```
./target/debug/exowasm-client call cryptocurrency create_wallet 4045
```