-
Notifications
You must be signed in to change notification settings - Fork 471
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
31 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Aleo Wasm | ||
|
||
## Publish instructions | ||
|
||
```bash | ||
npm login | ||
wasm-pack build --scope aleohq | ||
cd pkg | ||
npm publish --access=public | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,25 @@ | ||
# Aleo Wasm | ||
|
||
## Publish instructions | ||
Aleo low-level utilities for account and record management in Rust - packaged to be Wasm-compatible. | ||
|
||
For more general utilities to help with program compilation and node connectivity, check out https://crates.io/crates/aleo. | ||
|
||
Happy hacking! | ||
|
||
## Build Guide | ||
```bash | ||
wasm-pack build --target nodejs | ||
``` | ||
|
||
## Testing | ||
```bash | ||
npm login | ||
wasm-pack build --scope aleohq | ||
cd pkg | ||
npm publish --access=public | ||
wasm-pack test | ||
``` | ||
|
||
## Aleo Tools | ||
|
||
[Aleo SDK account generator](https://aleohq.github.io/aleo/) | ||
|
||
[Aleo Home](https://www.aleo.org/) | ||
|
||
You can visit the [SnarkVM repo](https://github.com/AleoHQ/snarkVM) and [SnarkOS repo](https://github.com/AleoHQ/snarkOS) to go deep into the code of aleo infrastructure |