Build your own ERC20 Token wallet for Ethereum using Amberdata.io! Example code uses account transactions and account balance
Check out the demo page!
git clone [email protected]:amberdata/amberdata-example-erc20-wallet.git
Go to amberdata.io and click "Get started"
Building with Amberdata.io is as simple as a few axios request:
let config = {
headers: {"x-api-key": "YOUR_API_KEY_HERE"}
}
let getAddressInformation = (address) => axios.get(`https://web3api.io/api/v1/addresses/${address}/tokens`, config)
let getCurrentTokenTransfers = (address) => axios.get(`https://web3api.io/api/v1/tokens/${address}/transfers?page=0&size=50`, config)
See source here.
This project is licensed under the Apache Licence 2.0.