@trrxitte/traaittcash-rpc

2.0.4 • Public • Published

image

traaittCASH RPC

NPM

Prerequisite Documentation Maintenance License: GPL-3.0 Twitter: TRRXITTE

Master Build Status

Build Status Build Status

This project is designed to make it very easy to interact with various RPC APIs available within the traaittCASH 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 Turtle-Service, removal of deprecated XTCASHnetwork 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. traaittCASH RPC API Interface
  5. WalletAPI Interface

Dependencies

Installation

npm install traaittcash-rpc

Intialization

XTCASHnetwork

const XTCASHnetwork = require('traaittcash-rpc').XTCASHnetwork

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

Wallet-API

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

const wallet = new WalletAPI({
  host: '127.0.0.1', // ip address or hostname of wallet-api host
  port: 8447, // port wallet-api is running on, default is 8447
  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.0000001, // the default fee of your network, in decimal not atomic units
  decimalDivisor: 100000000, // how many decimals will be used
  defaultUnlockTime: 0, // default unlock time
  userAgent: 'traaittcash-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) 2022 - TODAY, TRRXITTE Int., incorporate
Copyright (C) 2018-2019 Brandon Lehmann, The TurtleCoin Developers

Please see the included LICENSE file for more information.

Readme

Keywords

Package Sidebar

Install

npm i @trrxitte/traaittcash-rpc

Weekly Downloads

0

Version

2.0.4

License

AGPL-3.0

Unpacked Size

1.61 MB

Total Files

7

Last publish

Collaborators

  • traaitt