Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/starcoinorg/mini-starcoinvm
a standalone starcoin vm used in layer2
https://github.com/starcoinorg/mini-starcoinvm
Last synced: 5 days ago
JSON representation
a standalone starcoin vm used in layer2
- Host: GitHub
- URL: https://github.com/starcoinorg/mini-starcoinvm
- Owner: starcoinorg
- License: apache-2.0
- Created: 2022-08-01T07:11:13.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-11-02T06:27:19.000Z (about 2 years ago)
- Last Synced: 2023-07-13T19:50:58.950Z (over 1 year ago)
- Language: Rust
- Size: 35.2 KB
- Stars: 4
- Watchers: 17
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# mini-starcoinvm
a standalone starcoin vm used in layer2## Get Started
By default, data will be pulled from the remote, and written to the files
```shell
cargo build --release
```Then, you can validate the data in file mode
```shell
cargo build --release --no-default-features
```you can get more details by typing -h:
```shell
cargo run -- -h
```## Cross Compile
1. Add mips-unknown-linux-musl supports:
```shell
rustup target add mips-unknown-linux-musl
```
2. Download musl toolchain from [musl.cc](https://musl.cc): mips-linux-musl-cross
3. Release:
```shell
cargo build --target mips-unknown-linux-musl --release --no-default-features
```
4. Find the bin:
```text
target/mips-unknown-linux-musl/release
```