@jamton/sdk
v1.6.26
Published
SDK for the JAMTON apps
Downloads
1,984
Readme
Installation
To use the Jamton SDK, you need to install the
@jamton/sdk package and some @polkadot dependencies:
$ yarn add @jamton/sdk @polkadot/api-augment @polkadot/api
# or
$ npm i @jamton/sdk @polkadot/api-augment @polkadot/apiUsage
import { Tokens, getApiPromise } from '@jamton/sdk'
const ALICE_ACCOUNT_ID = '5GNJqTPyNqANBkUVMN1LPPrxXnFouWXoe2wNSmmEoLctxiZY'
const api = await getApiPromise(endpoint)
const tokens = new Tokens(api)
// get balance of ALICE
const balance = await tokens.nativeBalance(ALICE_ACCOUNT_ID)