Development
...
Usage
Using minified bundles
2 min
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 index html main js (async () => { // the 'namespace' of @signum/core is sig$ const ledger = sig$ ledgerclientfactory create({ nodehost 'https //europe signum network', }); const account = await ledger account getaccount({accountid '16107620026796983538'}); console log('account', account); })(); the modules are bundled using https //developer mozilla org/en us/docs/glossary/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 if ever possible try to use a package manager to be more productive and even reduce the applications payload, as modern toolchains extract the used code from a package (tree shaking, dead code elimination) each module of signumjs comes with its own namespace core sig$ util sig$util contracts sig$contracts wallets sig$wallets crypto sig$crypto http sig$http