1.0.13 • Published 2 months ago

dhive-reloaded v1.0.13

Weekly downloads
-
License
BSD-3
Repository
-
Last release
2 months ago

dhive-reloaded

Fork of dhive-sl. dhive-sl is a merge between dhive, hive-interface and sscjs. dhive which was originally created by Johan Nordberg in 2017 and maintained since 2021 by the Hive community.


Installation

Via npm

For node.js or the browser with browserify or webpack.

npm install dhive-reloaded

Usage

// Based on src/examples/beacon.example.ts
// npm run example:beacon

import { Client, utils } from 'dhive-reloaded';

const main = async () => {
    /**
     * Client 0 with no config
     * Beacon service is used to load the best RPC nodes
     * Nodes are refreshed every 300 seconds (5 Minutes) after loadNodes()
     */
    const client0 = new Client();
    await client0.loadNodes();
    console.log(`0 - No config client: ${(await client0.database.getAccount('blocktrades'))?.name}`);
    await timeout(3 * 1000);

    /**
     * Client A with pre-defined nodes
     * Beacon service is NOT used
     */
    const clientA = new Client({ nodes: ['wrong.hive-api.com', 'api.hive.blog', 'api.deathwing.me'] });
    console.log(`A - Client: ${(await clientA.database.getAccount('blocktrades'))?.name}`);
    await timeout(3 * 1000);

    /**
     * Client B with pre-defined nodes
     * Beacon service is used to load the best RPC nodes
     * Nodes are refreshed every 2 seconds after loadNodes()
     */
    const clientB = new Client({ nodes: ['api.hive.blog', 'api.deathwing.me'], beacon: { intervalTime: 2 } });
    await clientB.loadNodes();
    console.log(`B - Client: ${(await clientB.database.getAccount('blocktrades'))?.name}`);
    await timeout(5 * 1000);
    clientB.destroy(); // Clears intervals

    /**
     * Client C with pre-defined nodes
     * Beacon service is used to load the best RPC nodes
     * Nodes are NOT refreshed due to 'manual' mode
     */
    const clientC = new Client({ nodes: ['api.hive.blog', 'api.deathwing.me'], beacon: { mode: 'manual' } });
    await clientC.loadNodes();
    console.log(`C - Client: ${(await clientC.database.getAccount('blocktrades'))?.name}`);
    await timeout(5 * 1000);

    /**
     * Client D with pre-defined nodes
     * Beacon service is used ON NEW CLIENT (due to loadOnInitialize) to load the best RPC nodes
     * Nodes are refreshed every 2 seconds after new Client()
     */
    const clientD = new Client({ nodes: ['api.hive.blog', 'api.deathwing.me'], beacon: { intervalTime: 2, loadOnInitialize: true } });
    console.log(`D - Client: ${(await clientD.database.getAccount('blocktrades'))?.name}`);
    await timeout(5 * 1000);
    clientD.destroy(); // Clears intervals

    /**
     * Client E with NO pre-defined nodes
     * Beacon service is used ON NEW CLIENT (due to loadOnInitialize) to load the best RPC nodes
     * Nodes are refreshed every 2 seconds after new Client()
     */
    const clientE = new Client({ beacon: { intervalTime: 2, loadOnInitialize: true } });
    console.log(`E - Client: ${(await clientE.database.getAccount('blocktrades'))?.name}`);
    await timeout(5 * 1000);
    clientE.destroy(); // Clears intervals

    console.log('FINISHED');
};

main();
1.0.13

2 months ago

1.0.11

2 months ago

1.0.10

2 months ago

1.0.12

2 months ago

1.0.9

3 months ago

1.0.8

3 months ago

1.0.7

3 months ago

1.0.6

3 months ago

1.0.5

6 months ago

1.0.4

6 months ago

1.0.3

6 months ago

1.0.2

6 months ago

1.0.1

6 months ago

1.0.0

6 months ago