Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
exc-balance-checker
Advanced tools
One-function solution for checking an address' balance on Eximchain's ERC 20
Code for checking an address' balance with Eximchain's ERC20 token.
Install via:
npm install --save exc-balance-checker
Import the main checker class:
import BalanceChecker from 'exc-balance-checker';
Configure internal provider and you're ready to check balances:
const checker = new BalanceChecker("https://mainnet.infura.io/...");
There is one implementation which uses async/await
syntax and another one which returns a Promise whose result is the balance:
let myBalance = await checker.balanceOfAsync(<myAddress>);
checker.balanceOf(<myAddress>).then((myBalance) => {
// Use myBalance within here
})
FAQs
One-function solution for checking an address' balance on Eximchain's main or gamma networks.
The npm package exc-balance-checker receives a total of 1 weekly downloads. As such, exc-balance-checker popularity was classified as not popular.
We found that exc-balance-checker 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.