
Security News
OWASP 2025 Top 10 Adds Software Supply Chain Failures, Ranked Top Community Concern
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.
@suku/suku-ethereum-node-api-client-lib
Advanced tools
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).
This is the SUKU Ethereum Node API Client Lib that can be used to handle REST calls to the SUKU Ethereum Node API.
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.
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);
let tx = yourSmartContract.methods.addSomething(parameter);
let txObject = {
data: tx.encodeABI(),
to: yourSmartContract.options.address
}
let predictedTxHash = await nodeManager.sendTx(txObject);
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);
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.
FAQs
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).
We found that @suku/suku-ethereum-node-api-client-lib demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?

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.

Security News
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.