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

Latest commit

 

History

History

muta-sdk

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

@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();