
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
@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).
The npm package @suku/suku-ethereum-node-api-client-lib receives a total of 0 weekly downloads. As such, @suku/suku-ethereum-node-api-client-lib popularity was classified as not popular.
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.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.