centre-nodejs-credits

1.0.3 • Public • Published

Centre.NodeJs.CS

Icon Centre.NodeJs.CS

Third Party Library for implementing Credits Blockchain in Node Javascript

Getting started

npm i centre-nodejs-credits

After installing it's time to actually use it. To get started we have to add the Javascript Require: `const Connector = 'Centre-NodeJS-CS';

Centre is providing an easy way of connecting to the Credits Blockchain where the goal is to limit the time needed for new Developers intergrating the Credits Blockchain into there projects

Detailed Documentation

For All Centre build Libraries there is detailed documentation which can be found here: https://centr.gitbook.io/netcs

Connector Object

In order to get the library working we first need to initialize the Connector object

var connect_ = new Connector("165.22.212.253", 9090);

The Connector object needs to have 2 variables the first: IP address of a node running Credits Blockchain and Second: the API port of that particular node.

Examples

Retrieving Balance

For a very easy example we are going to retrieve a Balance of a give wallet address

var connect_ = new Connector("165.22.212.253", 9090);
connect_.WalletGetBalance("Ba2Uhtcy4cZ6nJNaQKXWcdLgPH7Kat2R67CUkRU2bkTk").then((res) => {connect_.Close();console.log(res); });

With only 2 Lines of code we can now retrieve a balance from the blockchain that easy !

Sending Transaction

In the next example we are going to send an transaction with the native currency CS

connect_ = new Connector("95.111.224.219:9091");
Print(connect_.SendTransaction(1, 0, "Enter Sender Publickey", "Enter Sender Privatekey", "Enter Receiver Publickey"));

Well look at that ! You now sended an transaction on the Credits Blockchain great job ;)

Contribution

Everyone is free to help me out as this will be a community driven Library !

Readme

Keywords

none

Package Sidebar

Install

npm i centre-nodejs-credits

Weekly Downloads

0

Version

1.0.3

License

MIT

Unpacked Size

524 kB

Total Files

7

Last publish

Collaborators

  • bk_dev