WASM version of `fuel-asm` Rust crate
npm install @fuels/vm-asmWASM version of fuel-asm Rust crate:
- https://crates.io/crates/fuel-asm
- https://github.com/FuelLabs/fuel-vm/tree/master/fuel-asm
Be sure to await the WASM async initialization:
``ts
import * as fuel_asm from '@fuels/vm-asm'
(async function() {
await fuel_asm.initWasm();
// fuel_asm.>();
// ...
})();
``