Usage
Once you have added SignumJS to your application you usually want to connect to one of the Signum Network nodes to interact with the blockchain.
All you need is to create an API instance to get access to the methods of the blockchain API.
The following example shows how to get an account from the chain.
It is essential to understand the concept of async/await and Promises in Javascript. Many functions of SignumJS require to communicate with remote servers and therefore you need to be familiar with asynchronous Javascript.
Usage with bundles
When using the bundles imported via <script/>, you need to use the respective namespace to get access to the any of the functions within a module.
The modules are bundled using IIFE, to avoid global naming collisions with your application. Keep also in mind, that the bundles do not contain any type information, so your IDE cannot help you with auto-completion.
Each module of SignumJS comes with its own namespace
Last updated