Build your first dApp for Ethereum using Amberdata.io API! Utilize ABI, logs, internal message & transactions to display an interactive activity stream
Check out the demo page!
git clone [email protected]:amberdata/amberdata-example-dapp.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}/information`, config)
let getContractFunctions = (address) => axios.get(`https://web3api.io/api/v1/contracts/${address}/functions`, config)
let getAddressTransactions = (address) => axios.get(`https://web3api.io/api/v1/addresses/${address}/transactions?page=0&size=50`, config)
let getAddressFunctions = (address) => axios.get(`https://web3api.io/api/v1/addresses/${address}/functions?page=0&size=50`, config)
let getAddressLogs = (address) => axios.get(`https://web3api.io/api/v1/addresses/${address}/logs?page=0&size=50`, config)
See source here
This project is licensed under the Apache Licence 2.0.