Ecosyste.ms: Awesome
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: 15 days ago
JSON representation
Start solidity learning journey by the basics
- Host: GitHub
- URL: https://github.com/juliencrn/solidity-hello-world
- Owner: juliencrn
- Created: 2021-07-23T01:25:30.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-07-23T01:26:22.000Z (over 3 years ago)
- Last Synced: 2024-10-06T01:41:39.041Z (5 months ago)
- Topics: react, solidity, truffle, web3js
- Language: JavaScript
- Homepage:
- Size: 29.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```