Development
...
API Reference
Core Module
3 min
api reference https //signum network github io/signumjs/modules/core html npm package https //www npmjs com/package/@signumjs/core cdn url https //cdn jsdelivr net/npm/@signumjs/core/dist/signumjs min js iife namespace sig$ installation npm npm i @signumjs/core yarn yarn add @signumjs/core \<script/> basic usage the core module provides a convenient wrapper around the docid\ yynxycqblmbwflxzom4c6 , for almost all possible api endpoints const {ledgerclientfactory} = require('@signumjs/core'); (async () => { const ledger = ledgerclientfactory create({ nodehost 'https //europe signum network', }); const account = await ledger account getaccount({accountid '16107620026796983538'}); console log('account', account); })();import {ledgerclientfactory} from '@signumjs/core'; (async () promise\<void> => { const ledger = ledgerclientfactory create({ nodehost 'https //europe signum network', }); const account = await ledger account getaccount({accountid '16107620026796983538'}); console log('account', account); })(); \<script/> (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); })();