Class LedgerClientFactory

Factory for the ledger clients to access a nodes API

Use the tree-shakeable factory functions instead:

// Old way (deprecated - bundles everything)
import {LedgerClientFactory} from '@signumjs/core';
const ledger = LedgerClientFactory.createClient({nodeHost: "https://europe.signum.network"});

// New way (tree-shakeable)
import {createClient} from '@signumjs/core/createClient';
const ledger = createClient({nodeHost: "https://europe.signum.network"});

Constructors

Methods