WASM wrappers for hyperdrive-rs built using wasm-pack.
yarn add @delvtech/hyperdrive-wasm
# or
npm i @delvtech/hyperdrive-wasm
import * as hyperwasm from "@delvtech/hyperdrive-wasm";
const apr = hyperwasm.getFixedApr(poolInfo, poolConfig); // => '0.034999999999999999'
Install wasm-pack then run:
npm build
This will create the node package at ./pkg/
, add a couple exports so the
package can be used in apps without any extra work on the app developer to
enable wasm support, then create a tarball for installation.
A boilerplate wasm-pack app can be found at ./example
. To run it, first build
then:
npm install
npm start