https://github.com/rajgoesout/eth-address-verifier-cl-ea
Chainlink External Adapter to verify Ethereum Address
https://github.com/rajgoesout/eth-address-verifier-cl-ea
chainlink chainlink-adapter ethereum web3
Last synced: 20 days ago
JSON representation
Chainlink External Adapter to verify Ethereum Address
- Host: GitHub
- URL: https://github.com/rajgoesout/eth-address-verifier-cl-ea
- Owner: rajgoesout
- License: mit
- Created: 2021-08-01T22:53:07.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-08-08T11:43:57.000Z (almost 4 years ago)
- Last Synced: 2024-03-02T14:17:30.760Z (about 1 year ago)
- Topics: chainlink, chainlink-adapter, ethereum, web3
- Language: JavaScript
- Homepage:
- Size: 44.9 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# eth-address-verifier-cl-ea
Chainlink External Adapter to verify Ethereum Address
## Getting Started
This EA checks tweets containing an eth address.
- Set environment variable `BEARER_TOKEN` (use Twitter developer API v2)
### Input Params
- `tweetID`: The public tweet id.
- `ethAddress`: The eth address that needs to be verified.### Sample Request
```bash
curl -X POST -H "content-type:application/json" "http://localhost:8080/" --data '{ "id": 0, "data": {"tweetID":"1419564161789485077","ethAddress":"0x20573BaB17Db36d53990b81031fCc202E199EF36"}}'
```### Sample Response
```json
{
"jobRunID": 0,
"data": {
"username": "EthFrenchy",
"ethAddress": "0x20573BaB17Db36d53990b81031fCc202E199EF36",
"result": true
},
"result": true,
"statusCode": 200
}
```