SignumJS
  • 👋Welcome to SignumJS
  • Getting Started
    • Installation
    • Modules
    • Usage
  • 👩‍💻Reference
    • API Reference
      • Core Module
      • Util Module
      • Crypto Module
      • Http Module
      • Contracts Module
      • Monitor Module
  • 🧾Recipes
    • Basics
      • Getting Accounts Balance
      • List Transactions
      • Show attached messages
      • Send Signa
    • Advanced
Powered by GitBook
On this page
  1. Recipes
  2. Basics

Getting Accounts Balance

In this simple example we just get an accounts balance and print it to the console.

PreviousBasicsNextList Transactions

Last updated 3 years ago

In the basic examples we still show how to use SignumJS depending the way you are using SignumJS, i.e. imported via NodeJS package manager or as minified bundle. In case you haven't read about the module system, take a quick look there:

A fully working example is available

Following functions from SignumJS are used in this example

  • function to create the api instance

  • function to fetch the accounts balance from the blockchain

  • Value Object to parse and convert the given address

  • Value Object to convert between Planck and Signa

const {Address, composeApi} = require("@signumjs/core")
const {Amount} = require("@signumjs/util")

// Create the Api instance to connect to a blockchain node
const api = composeApi({
    nodeHost: "https://europe.signum.network"
});

async function getBalance(account) {
    // All API calls are asynchronous
    // The recommended pattern is using async/await
    // This makes exception handling easy using try/catch
    try {
        // We just create an address instance of incoming account string, which
        // might be the numeric id or an address like 'S-ABCD....'
        // It throws an error, if the input is not a valid address or account id
        const address = Address.create(account)
    
        // Now, we call the getAccountBalance method
        const {balanceNQT} = await api.account.getAccountBalance(address.getNumericId());

        // all amounts coming from the blockchain are expressed in Planck 
        // 1 SIGNA = 100000000 Planck
        // so we need to convert them using the Amount Value Object class
        const balance = Amount.fromPlanck(balanceNQT)
        
        // Print it to the console
        console.info(`Balance of ${address.getReedSolomonAddress()} is:`, balance.toString())
    } catch (e) {
        console.error(e.message)
    }
}
import {Address, composeApi} from "@signumjs/core"
import {Amount} from "@signumjs/util"

// Create the Api instance to connect to a blockchain node
const api = composeApi({
    nodeHost: "https://europe.signum.network"
});

async function getBalance(account: string) : Promise<void> {
    // All API calls are asynchronous
    // The recommended pattern is using async/await
    // This makes exception handling easy using try/catch
    try {
        // We just create an address instance of incoming account string, which
        // might be the numeric id or an address like 'S-ABCD....'
        // It throws an error, if the input is not a valid address or account id
        const address = Address.create(account)
    
        // Now, we call the getAccountBalance method
        const {balanceNQT} = await api.account.getAccountBalance(address.getNumericId());

        // all amounts coming from the blockchain are expressed in Planck 
        // 1 SIGNA = 100000000 Planck
        // so we need to convert them using the Amount Value Object class
        const balance = Amount.fromPlanck(balanceNQT)
        
        // Print it to the console
        console.info(`Balance of ${address.getReedSolomonAddress()} is:`, balance.toString())
    } catch (e) {
        console.error(e.message)
    }
}
// you need to have imported in your index.html:
/*
<script src='https://cdn.jsdelivr.net/npm/@signumjs/core/dist/signumjs.min.js'></script>
<script src='https://cdn.jsdelivr.net/npm/@signumjs/util/dist/signumjs.util.min.js'></script>
*/

// Create the Api instance to connect to a blockchain node
const api = sig$.composeApi({
    nodeHost: "https://europe.signum.network"
});

async function getBalance(account) {
    // All API calls are asynchronous
    // The recommended pattern is using async/await
    // This makes exception handling easy using try/catch
    try {
        // We just create an address instance of incoming account string, which
        // might be the numeric id or an address like 'S-ABCD....'
        // It throws an error, if the input is not a valid address or account id
        const address = sig$.Address.create(account)
    
        // Now, we call the getAccountBalance method
        const {balanceNQT} = await api.account.getAccountBalance(address.getNumericId());

        // all amounts coming from the blockchain are expressed in Planck 
        // 1 SIGNA = 100000000 Planck
        // so we need to convert them using the Amount Value Object class
        const balance = sig$util.Amount.fromPlanck(balanceNQT)
        
        // Print it to the console
        console.info(`Balance of ${address.getReedSolomonAddress()} is:`, balance.toString())
    } catch (e) {
        console.error(e.message)
    }
}
🧾
Modules
here
composeApi
api.account.getAccountBalance
Address
Amount