@polkadot-api/wasm-executor

0.2.1 • Public • Published

@polkadot-api/wasm-executor

This package has been strongly influenced by Chopsticks. It can be used in both web and NodeJS environments.

At this point, it just exports a getMetadataFromRuntime function that runs WASM under the hood, and returns its metadata in string.

Examples

Web

// IMPORTANT to prefix it with `0x`!
const runtime = "0x" + fs.readFileSync("runtime.wasm").toString("hex");

// returns a `0x` prefixed OpaqueMetadata. It's as well prefixed by a compactInt of its length
const metadata = await import("@polkadot-api/wasm-executor/web").then(
  async ({ default: init, getMetadataFromRuntime }) => {
    await init();
    return getMetadataFromRuntime(runtime);
  },
);

Node

import { getMetadataFromRuntime } from "@polkadot-api/wasm-executor/node";

// IMPORTANT to prefix it with `0x`!
const runtime = "0x" + fs.readFileSync("runtime.wasm").toString("hex");

// returns a `0x` prefixed OpaqueMetadata. It's as well prefixed by a compactInt of its length
const metadata = getMetadataFromRuntime(runtime);

Readme

Keywords

none

Package Sidebar

Install

npm i @polkadot-api/wasm-executor

Weekly Downloads

4,560

Version

0.2.1

License

MIT

Unpacked Size

5.52 MB

Total Files

10

Last publish

Collaborators

  • voliva
  • josepot