/moncoin-rpc-js

MONCoin RPC API Interface in NodeJS

Primary LanguageJavaScriptGNU Affero General Public License v3.0AGPL-3.0

MONCoin RPC

NPM

This project is designed to make it very easy to interact with various RPC APIs available within the MONCoin Project. This entire project uses Javascript Promises to make things fast, easy, and safe.

Package Upgrade Warning

v2.0.0+ contains multiple breaking changes to the package including the removal of support for MONCoin-Service, removal of deprecated MONCoind RPC calls that will be removed, renaming of methods, and method argument changes throughout. Please be sure to read the documentation in full before upgrading to v2.0.0+.

Table of Contents

  1. Dependencies
  2. Installation
  3. Intialization
  4. Documentation

Dependencies

Installation

npm install --save moncoin-rpc

Legacy Version

If you require support for mon-service interaction, please install v1.0.3 instead of the current release. For the documentation for the legacy version, please see the v1.0.3 docs

npm install --save moncoin-rpc@1.0.3

Intialization

MONCoind

const MONCoind = require('moncoin-rpc').MONCoind

const daemon = new MONCoind({
  host: '127.0.0.1', // ip address or hostname of the MONCoind host
  port: 12898, // what port is the RPC server running on
  timeout: 2000, // request timeout
  ssl: false, // whether we need to connect using SSL/TLS
  userAgent: 'moncoin-rpc/2.0.0' // specify a customer user-agent or use the default
})

Wallet-API

const WalletAPI = require('moncoin-rpc').WalletAPI

const wallet = new WalletAPI({
  host: '127.0.0.1', // ip address or hostname of wallet-api host
  port: 8070, // port wallet-api is running on, default is 8070
  timeout: 5000, // how long to wait before timing out the connection
  ssl: false, // whether or not to connect through SSL
  password: 'password', // your rpc password
  defaultMixin: 3, // should be configured to the default mixin, or false if no default mixin is set
  defaultFee: 0.1, // the default fee of your network, in decimal not atomic units
  decimalDivisor: 1000000000, // how many decimals will be used
  defaultUnlockTime: 0, // default unlock time
  userAgent: 'moncoin-rpc/2.0.0' // specify a customer user-agent or use the default
})

Documentation

You can find the full documentation for this library here

License

Copyright (C) 2020-2021 Brandon Lehmann, The MONCoin and TurtleCoin Developers

Please see the included LICENSE file for more information.