Socket
Book a DemoInstallSign in
Socket

@suku/suku-ethereum-node-api-client-lib

Package Overview
Dependencies
Maintainers
4
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@suku/suku-ethereum-node-api-client-lib

This is the SUKU Ethereum Node API Client Lib that can be used to handle REST calls to the [SUKU Ethereum Node API](https://github.com/SukuLab/suku-ethereum-node-api).

1.0.0
latest
npmnpm
Version published
Weekly downloads
0
-100%
Maintainers
4
Weekly downloads
 
Created
Source

SUKU Ethereum Node API Client Lib

This is the SUKU Ethereum Node API Client Lib that can be used to handle REST calls to the SUKU Ethereum Node API.

Getting Started

Before using this library you should have a running instance of the Node API. If you do not have a running instance yet, please start by deploying the SUKU Ethereum Node API.

Using the library

import NodeManager from '@suku/suku-ethereum-node-api-client-lib';
const nodeManagerUrl = "http://bc-node-manager-url:3000";
const privateKey = "<private key here>";

let nodeManager = new NodeManager(nodeManagerUrl, privateKey);

Sending a transaction

let tx = yourSmartContract.methods.addSomething(parameter);
let txObject = {
    data: tx.encodeABI(),
    to: yourSmartContract.options.address
}
let predictedTxHash = await nodeManager.sendTx(txObject);

Calling a function

let encodedAbi : string = await yourSmartContract.methods.getSomething(parameter).encodeABI();
let tx : Transaction = {
    data: encodedAbi,
    to: yourSmartContract.options.address,
};
let response = await this.nodeManager.callFunction(tx);

Contributing & Community

If you find things that you'd like to improve in this repo feel free to create a PR or an issue. Please read our Contribution Guidelines before submitting an issue or a PR.

  • Slack
  • Reddit

FAQs

Package last updated on 29 May 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.