0.4.3 • Published 3 years ago

keva-api-js v0.4.3

Weekly downloads
-
License
MIT
Repository
-
Last release
3 years ago

Keva Javascript API

This library provides a set of Javascript API to access Kevacoin ElectrumX through websocket.

Quick Start

Install the package:

npm i --save keva-api-js

Example:

import KevaWS from 'keva-api-js';

async getValue() {
    const kevaWS = new KevaWS("wss://ec1.kevacoin.org:8443");
    await kevaWS.connect();

    const result = await kevaWS.getValue(
        'Nfw2WYkGoSKve74cCfEum67x8bFgpHygxg',
        'NFTs on Keva!'
    );

    // More calls ...

    kevaWS.close();
}

Documentation

TBD

0.4.3

3 years ago

0.4.2

3 years ago

0.4.1

3 years ago

0.4.0

3 years ago

0.3.0

3 years ago

0.2.0

3 years ago

0.1.0

3 years ago