Skip to content
This repository has been archived by the owner on Sep 13, 2022. It is now read-only.

Latest commit

 

History

History
19 lines (13 loc) · 332 Bytes

README.md

File metadata and controls

19 lines (13 loc) · 332 Bytes

@mutadev/muta-sdk

Muta JavaScript SDK.

Usage

const muta = require('@mutadev/muta-sdk');

muta.setDefaultVariables('MUTA_ENDPOINT', 'http://localhost:8000/graphql');

async function main() {
  const client = new muta.Client();
  const height = await client.getLatestBlockHeight();
  console.log(height);
}

main();