patrickxrivera / prototype-social-reputation-token

Prototype for a social reputation token on the Ethereum blockchain

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Buidler Hackathon Boilerplate

This repository contains a sample project that you can use as the starting point for your Ethereum project. It's also a great fit for learning the basics of smart contract development.

This project is intended to be used with the Buidler Beginners Tutorial, but you should be able to follow it by yourself by reading the README and exploring its contracts, tests, scripts and frontend directories.

Quick start

The first things you need to do are cloning this repository and installing its dependencies:

git clone https://github.com/nomiclabs/buidler-hackathon-boilerplate.git
cd buidler-hackathon-boilerplate
npm install

Once installed, let's run Buidler's testing network:

npx buidler node

Then, on a new terminal, go to the repository's root folder and run this to deploy your contract:

npx buidler run scripts/deploy.js --network localhost

Finally, we can run the frontend with:

cd frontend
npm install
npm start

Open http://localhost:3000/ to see your Dapp. You will need to have Metamask installed and listening to localhost 8545.

User Guide

You can find detailed instructions on using this repository and many tips in its documentation.

For a complete introduction to Buidler, refer to this guide.

What’s Included?

Your environment will have everything you need to build a Dapp powered by Buidler and React.

Troubleshooting

  • Invalid nonce errors: if you are seeing this error on the buidler node console, try resetting your Metamask account. This will reset the account's transaction history and also the nonce. Open Metamask, click on your account followed by Settings > Advanced > Reset Account.

Feedback, help and news

We'd love to have your feedback on this tutorial. Feel free to reach us through this repository or our Telegram Support Group.

Also you can follow Nomic Labs on Twitter.

Happy buidling!

About

Prototype for a social reputation token on the Ethereum blockchain

License:MIT License


Languages

Language:JavaScript 50.7%Language:Solidity 47.0%Language:HTML 2.3%