Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Simple way to check ether balance of an account address.
npm install eth-balance
Check ether balance on mainnet:
const getBalance = require('eth-balance')
const balance = await getBalance('0x90f8bf6a479f320ead074411a4b0e7944ea8c9c1')
console.log(balance) // 0.1
Check ether balance on different network:
const getBalance = require('eth-balance')
const balance = await getBalance('0x90f8bf6a479f320ead074411a4b0e7944ea8c9c1', 'rinkeby')
console.log(balance) // 0.297098768
Check balance in wei output:
const getBalance = require('eth-balance')
const balance = await getBalance({
address: '0x90f8bf6a479f320ead074411a4b0e7944ea8c9c1',
network: 'rinkeby',
convert: 'wei'
})
console.log(balance) // 297098768000000000
Install:
npm install -g eth-balance
Check ether balance on mainnet:
$ eth_balance 0x90f8bf6a479f320ead074411a4b0e7944ea8c9c1
0.1
Check ether balance on different network:
$ eth_balance 0x90f8bf6a479f320ead074411a4b0e7944ea8c9c1 --network rinkeby
0.297098768
Check balance in wei output:
$ eth_balance 0x90f8bf6a479f320ead074411a4b0e7944ea8c9c1 --network rinkeby --convert wei
297098768000000000
Piping address example:
$ echo 0x90f8bf6a479f320ead074411a4b0e7944ea8c9c1 | eth_balance -n rinkeby -c wei
297098768000000000
Show help:
$ eth_balance --help
Simple way to check ether balance.
Usage
$ eth_balance [address] --network <network>
Options
--address, -a Address to check balance
--network, -n Network name or network provider URI (default "mainnet")
--convert, -c Unit to convert to (default "ether")
Examples
$ eth_balance 0x90f8bf6a479f320ead074411a4b0e7944ea8c9c1 --network rinkeby
0.297098768
$ eth_balance 0x90f8bf6a479f320ead074411a4b0e7944ea8c9c1 --network rinkeby --convert wei
297098768000000000
npm test
FAQs
Simple way to check ether balance of an account address.
The npm package bal-eth receives a total of 1 weekly downloads. As such, bal-eth popularity was classified as not popular.
We found that bal-eth demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.