Simple api to get balance Ethereum ERC20 tokens and Info about Ethereum ERC20 tokens
To set Config provider and running port,
{
"httpProvider":"https://kovan.infura.io",
"port":3000
}
This API response will show you the ERC20 token info.
http://localhost:3000/token/CONTRACT_ADDRESS
{
"name": "Test Swipe Token",
"symbol": "TSWIPE",
"totalSupply": 10000000,
"decimals": "18"
}
This API response will show Address Balance of ERC20 token.
http://localhost:3000/balance/CONTRACT_ADDRESS/USER_ADDRESS
{
"symbol": "TSWIPE",
"balance": 100
}