Build your own Multi-chain whale watching app using Amberdata.io! Example code uses token rankings endpoint
Check out the demo page!
git clone [email protected]:amberdata/amberdata-example.git cd amberdata-example-whale-activity
Go to amberdata.io and click "Get started"
Building with Amberdata.io is as simple as including web3data-js
either via cdn
or Node.Js. Check out the web3data-js
docs to learn more.
const web3data = new Web3Data(YOUR_API_KEY)
web3data.connect()
// Transactions
web3data.on({eventName: 'transactions'}, txn => {
// Insert logic here
console.log(txn);
})
// Pending Transactions
web3data.on({eventName: 'pending_transactions'}, txn => {
// Insert logic here
console.log(txn);
})
See source here.
This project is licensed under the Apache Licence 2.0.