@fuels/vm-asm
v0.58.2
Published
WASM version of `fuel-asm` Rust crate
Downloads
36,576
Readme
@fuels/vm-fuel-asm
WASM version of fuel-asm
Rust crate:
- https://crates.io/crates/fuel-asm
- https://github.com/FuelLabs/fuel-vm/tree/master/fuel-asm
Getting Started
Be sure to await
the WASM async initialization:
import * as fuel_asm from '@fuels/vm-asm'
(async function() {
await fuel_asm.initWasm();
// fuel_asm.<?>();
// ...
})();