An open API service indexing awesome lists of open source software.

https://github.com/juliencrn/solidity-hello-world

Start solidity learning journey by the basics
https://github.com/juliencrn/solidity-hello-world

react solidity truffle web3js

Last synced: 4 months ago
JSON representation

Start solidity learning journey by the basics

Awesome Lists containing this project

README

        

# Solidity Hello World

## Installation

Note: You need have `Node` and `truffle` installed.

After have downloaded the repo, go inside with a terminal and start truffle.

```
truffle develop
> compile
> test
> migrate --reset
```

And with a second terminal, open the client (dapp front-end).

```
cd client
npm install
npm start
```