
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.
@orbs-network/orbs-ethereum-contracts-v2
Advanced tools
[](https://www.npmjs.com/package/@orbs-network/orbs-ethereum-contracts-v2)  # orbs-ethereum-c
Orbs PoS V2 contracts and testkit
npm install @orbs-network/orbs-ethereum-contracts-v2
shutdown
methodGanache must run in order for the testkit to function. By default the test-kit will assume Ganache is running locally with these default settings:
ganache-cli -p 7545 -i 5777 -a 100 -m "vanish junk genuine web seminar cook absurd royal ability series taste method identify elevator liquid"
import { ganache } from "@orbs-network/orbs-ethereum-contracts-v2";
...
await ganache.startGanache()
...
await ganache.stopGanache()
ETHEREUM_MNEMONIC
(default: vanish junk genuine web seminar cook absurd royal ability series taste method identify elevator liquid
)ETHEREUM_URL
(default: http://localhost:7545
)const BN = require('bn.js').BN;
const Driver = require('@orbs-network/orbs-ethereum-contracts-v2').Driver;
async function createVC() {
const d = await Driver.new(); // deploys all contracts and returns a driver object
const monthlyRate = new BN(1000);
const firstPayment = monthlyRate.mul(new BN(2));
const subscriber = await d.newSubscriber('defaultTier', monthlyRate);
// buy subscription for a new VC
const appOwner = d.newParticipant();
await d.erc20.assign(appOwner.address, firstPayment); // mint fake ORBS
await d.erc20.approve(subscriber.address, firstPayment, {
from: appOwner.address
});
return subscriber.createVC(firstPayment, "main", {
from: appOwner.address
});
}
// just print the tx Hash and exit
createVC().then((r)=>{
console.log('Success, txHash', r.transactionHash);
process.exit(0);
}).catch((e)=>{
console.error(e);
process.exit(1);
});
FAQs
[](https://www.npmjs.com/package/@orbs-network/orbs-ethereum-contracts-v2)  # orbs-ethereum-c
The npm package @orbs-network/orbs-ethereum-contracts-v2 receives a total of 1 weekly downloads. As such, @orbs-network/orbs-ethereum-contracts-v2 popularity was classified as not popular.
We found that @orbs-network/orbs-ethereum-contracts-v2 demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 9 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.