Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
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.
We found that balence 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
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.