You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This app will pull data of the most recent Ethereum Block Header via Infura, Display the data, and parse the Data via JSON to the MongDB.
# npm i --save
# You must have Mongdb up and running on your machine before you run node index.js
# in the Dir run the command node index.js
# open your web browser and go to "http://localhost:8545/"
# the current web page should load with 2-buttons. A "Get Data" button and a "Post Data" button. You must click the Get Data button first. Verify in your terminal that the Ethereum Block Header Data was displayed. Then you click the Post Data button. If successful, the web page should display "Block Data saved to database!!" along with in your terminal window should also show a console.log "resultData: 'Post Data'"
# Now if the post was succesful in your MongoDB you should have the block Scheama appear and in the collections folder should be a "block" where the ethereum block header data was posted.
I used Robo 3T for its nice UI to view my Database to confirm the data was in fact stored.
About
This app will pull data of the most recent Ethereum Block Header via Infura, Display the data, and parse the Data via JSON to the MongDB.