iguana-lib
v0.2.2
Published
A library for interacting with iguana with JavaScript
Readme
iguana-lib
Read Transactions, Scripts, ByteArrays and their preimages and evaluate transactions with this package.
Install
npm install --save iguana-libNote
Upon importing iguana-lib, it will instantiate the wasm package, which will be available once the ready Promise resolves:
import { ready, ECC } from 'iguana-lib';
ready.then(() => {
const ecc = new ECC();
console.log('Hello iguana!', ecc);
})
