An interactive CLI tool for building and testing WASM modules.
cargo install --path .
To update the tool, use the same command.
- Rust
- Cargo (with rustup)
- WasmEdge
If you don't already have WasmEdge, you can install it:
curl -sSf https://raw.githubusercontent.com/WasmEdge/WasmEdge/master/utils/install.sh | bash
After installation, source the updated environment variables:
source ~/.zshenv # For zsh users
# OR
source ~/.bashrc # For bash users
To verify the installation:
which wasmedge
If you encounter any dynamic library loading errors when running WASM tests, set the library path:
# For macOS
export DYLD_LIBRARY_PATH=$DYLD_LIBRARY_PATH:~/.wasmedge/lib
# For Linux
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:~/.wasmedge/lib
Run the tool without any arguments for an interactive experience:
craft
Or use specific commands:
craft build # Build a WASM module
craft setup-wee-alloc # Setup wee_alloc for smaller binary size
craft test # Test a WASM module
craft start-rippled # Check if rippled is running and start it if needed
craft list-rippled # List and manage running rippled processes
craft start-explorer # Set up and run the XRPL Explorer
Currently, the craft
tool primarily uses interactive prompts to gather information such as build mode, optimization level, and project selection.
The test
command supports direct command-line options:
craft test --function <name> # Test a specific function in your WASM module
For scripting purposes, you may want to specify options directly without interactive prompts. If there are specific options you'd like to set via command line (for example: craft build --mode release --opt-level small
), please open a GitHub issue to let us know which interactive prompts you'd like to bypass.
The test
command provides an interactive environment for testing your WASM modules:
craft test
Organize your WASM modules in the projects
directory:
.
├── projects/
│ └── helloworld/ # Example
│ ├── Cargo.toml
│ └── src/
│ └── lib.rs
└── ...
The tool automatically detects WASM projects in the projects
directory.
This tool provides a testing environment for XLS-100d compliant WebAssembly modules. It simulates the host environment that will execute escrow finish conditions on the XRPL.
The wasm-host tool:
- Loads and executes WebAssembly modules
- Provides test transaction and ledger object data
- Calls the
finish
function as specified in XLS-100d - Reports execution results and any errors
The tool includes a set of test fixtures in the fixtures/escrow
directory. Currently, these fixtures are specific to the notary
project. The intent is to generalize or reuse for future projects.
tx.json
: Transaction with the correct notary accountledger_object.json
: Corresponding escrow object
tx.json
: Transaction with an incorrect notary accountledger_object.json
: Corresponding escrow object
See reference/README.md for details on using and updating the reference implementations.
Located at reference/rippled
, this provides the authoritative XRPL server implementation.
Located at reference/explorer
, this provides a web interface for exploring XRPL transactions and data.
To clone this repository including all submodules, use:
git clone --recurse-submodules https://github.com/your-username/craft.git
Or if you've already cloned the repository without submodules:
git submodule update --init --recursive
To update all submodules to their latest versions:
git submodule update --remote
The craft
tool includes commands to manage a local rippled
instance:
# Check if rippled is running and start it if not (background mode)
craft start-rippled
# Start rippled with visible console output (can be terminated with Ctrl+C)
craft start-rippled --foreground
# List running rippled processes and show how to terminate them
craft list-rippled
To terminate rippled
:
killall rippled
The craft
tool includes commands to set up and run the XRPL Explorer:
# Set up and run the Explorer (foreground mode by default)
craft start-explorer
# Run Explorer in background mode without visible console output
craft start-explorer --background
When you run start-explorer
for the first time, it will:
- Create the necessary
.env
file if it doesn't exist - Install dependencies using
npm install
- Start the Explorer
The XRPL Explorer provides a web interface for exploring XRPL transactions and data:
- View account information, transactions, and objects
- Explore the XRPL ledger
- Monitor network activity
- Test API calls
The Explorer should be available at: http://localhost:3000
To stop the Explorer:
- If running in foreground mode: Press
Ctrl+C
in the terminal - If running in background mode: Run
killall node
From the wasm-host
directory:
# Run with success test case
cargo run -- --wasm-file ../path/to/your/module.wasm --test-case success
# Run with failure test case
cargo run -- --wasm-file ../path/to/your/module.wasm --test-case failure
From any workspace directory:
cargo run -p wasm-host -- --wasm-file path/to/your/module.wasm --test-case success
--wasm-file <PATH>
: Path to the WebAssembly module to test--wasm-path <PATH>
: (Alias for --wasm-file for backward compatibility)--test-case <CASE>
: Test case to run (success/failure)--verbose
: Enable detailed logging-h, --help
: Show help information
To see detailed execution information, including memory allocation, data processing, and function execution steps, use the --verbose
flag:
cargo run -p wasm-host -- --wasm-file path/to/module.wasm --test-case success --verbose
The verbose output may include:
- Memory allocation details
- JSON data being processed
- Function execution steps
- Results of the execution
Example verbose output:
[INFO wasm_host] Starting WasmEdge host application
[INFO wasm_host] Loading WASM module from: path/to/module.wasm
[INFO wasm_host] Target function: finish (XLS-100d)
[INFO wasm_host] Using test case: success
[DEBUG wasm_host] Initializing WasiModule
[DEBUG wasm_host] WasiModule initialized successfully
[INFO wasm_host::vm] Executing WASM function: finish
[DEBUG wasm_host::vm] TX data size: 610 bytes, LO data size: 919 bytes
[INFO wasm_host::vm] Allocating memory for transaction data
[DEBUG wasm_host::vm] Allocated memory at address: 0x110008
...
The wasm-host tool is typically used through the craft test
command, which provides an interactive interface for selecting test cases:
# Test a WASM module
craft test
# Test with verbose output
RUST_LOG=debug craft test
The interactive interface will prompt you to select:
- Test case (success/failure)
- Other build and test options
The tool provides test data that simulates:
- An EscrowFinish transaction
- An Escrow ledger object
This data is used to test the module's finish
function implementation.
To add new test cases:
- Create a new directory under
fixtures/escrow/
- Add
tx.json
andledger_object.json
files - Update the test case selection in the craft tool
If the WebAssembly module execution fails, the tool will:
- Display an error message explaining the failure
- Show the function name that failed
- Show the test case being run
- Provide context about the error
- Exit with a non-zero status code
Example error output:
-------------------------------------------------
| WASM FUNCTION EXECUTION ERROR |
-------------------------------------------------
| Function: finish |
| Test Case: failure |
| Error: WASM function execution error |
-------------------------------------------------