https://github.com/adeshshukla/ethereum-explorer-api
Node js API for scanning ethereum blockchain transactions
https://github.com/adeshshukla/ethereum-explorer-api
blockchain-api ethereum-api ethereum-explorer ethereum-node-api etherscan-api infura node-infura web3js
Last synced: about 1 year ago
JSON representation
Node js API for scanning ethereum blockchain transactions
- Host: GitHub
- URL: https://github.com/adeshshukla/ethereum-explorer-api
- Owner: adeshshukla
- Created: 2018-09-23T19:37:05.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2022-01-15T23:21:59.000Z (over 4 years ago)
- Last Synced: 2025-04-03T07:42:54.788Z (about 1 year ago)
- Topics: blockchain-api, ethereum-api, ethereum-explorer, ethereum-node-api, etherscan-api, infura, node-infura, web3js
- Language: JavaScript
- Size: 3.91 KB
- Stars: 5
- Watchers: 1
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ethereum-explorer-api
Node js API for scanning ethereum blockchain transactions
# Dependencies
web3 0.20.1
# Configuration required
You can configure the below in ./nodeserver/serverConfig.js
i) In line 2, set your infura token. You can get infura token by signing on https://infura.io
var INFURA_TOKEN = ""
ii) In line 5, you can set the port on which API should by run (default port : 8081)
iii) In line 7, set the ethereum chain to connect to (by default Ethereum main net is set)
# Steps to run
1. Open command prompt
2. Run below command to install the required dependencies.
> npm install
3. Run below command to start the API. On success, a message will appear in cmd window displaying the connected Ethereum network and port.
> npm start