erc20-contract-js
Advanced tools
Simple JS library used to manipulate with ERC-20 token contracts
Weekly downloads
Changelog
Readme
Simple JS library used to manipulate with ERC-20 token contracts
yarn add erc20-contract-js
or
npm install erc20-contract-js
<!-- Unpkg CDN -->
<script src="https://unpkg.com/erc20-contract-js"></script>
or
<!-- Install the library via NPM/Yarn, then request it locally -->
<script src="/node_modules/dist/erc20-contract-js.min.js"></script>
const Web3 = require('web3');
const ERC20Contract = require('erc20-contract-js');
// Web3 instance
const web3 = new Web3(
new Web3.providers.HttpProvider('https://mainnet.infura.io')
);
const walletAddr = '0x8d12a197cb00d4747a1fe03395095ce2a5cc6819', // EtherDelta contract address
contractAddr = '0x86fa049857e0209aa7d9e616f7eb3b3b78ecfdb0'; // EOS contract address
// Create new instance of ERC20Contract
const erc20Contract = new ERC20Contract(web3, contractAddr);
// Get balance of
erc20Contract.balanceOf(walletAddr).call()
.then(balance => console.log(`Balance: ${balance}`));
// Get total supply
erc20Contract.totalSupply().call()
.then(totalBalance => console.log(`Total supply: ${totalBalance}`));
// Get allowance
erc20Contract.allowance(walletAddr, walletAddr).call()
.then(allowance => console.log(`Allowance: ${allowance}`));
yarn test
or
npm test
Contributions to the package are always welcome!
Give me a Star if you like it. 😊
All contents of this package are licensed under the MIT license.
Simple JS library used to manipulate with ERC-20 token contracts
The npm package erc20-contract-js receives a total of 95 weekly downloads. As such, erc20-contract-js popularity was classified as not popular.
We found that erc20-contract-js demonstrated a healthy version release cadence and project activity. It has 1 open source maintainer collaborating on the project.