A client library to connect to Ravencoin Core RPC in JavaScript.
A Ravenite module for ravencoin.
# Using npm
npm install @ravenite/ravencoin-rpc
# Using yarn
yarn add @ravenite/ravencoin-rpc
You can either write manually requests to your RPC connection via the request
method, or you can use the built-in methods provided by the client class.
import { Client } from '@ravenite/ravencoin-rpc';
const client = new Client({
url: 'http://127.0.0.1:9050',
username: 'username',
password: 'password',
});
client.request('getchaintips').then(response => {
console.log('response', response);
});
import { Client } from '@ravenite/ravencoin-rpc';
const client = new Client({
url: 'http://127.0.0.1:9050',
username: 'username',
password: 'password',
});
client.methods.listAssets().then(assets => {
console.log('assets', assets);
});
See documentation for developer guides.
Code released under the MIT license.
Some RPC commands within Ravencore have known bugs. You may experience them as a result. If you find that the issue comes from this library, please create an Issue so that it can be resolved quickly.