Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zeeshanhanif/learn-solidity
Learn Solidity Step by Step
https://github.com/zeeshanhanif/learn-solidity
solidity solidity-abi solidity-codes solidity-compiler solidity-contracts solidity-coverage solidity-dapps solidity-language solidity-security solidity-web
Last synced: about 1 month ago
JSON representation
Learn Solidity Step by Step
- Host: GitHub
- URL: https://github.com/zeeshanhanif/learn-solidity
- Owner: zeeshanhanif
- Created: 2018-06-13T10:31:38.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-08-11T02:37:49.000Z (5 months ago)
- Last Synced: 2024-12-08T01:05:02.425Z (about 2 months ago)
- Topics: solidity, solidity-abi, solidity-codes, solidity-compiler, solidity-contracts, solidity-coverage, solidity-dapps, solidity-language, solidity-security, solidity-web
- Language: JavaScript
- Size: 33.2 KB
- Stars: 41
- Watchers: 7
- Forks: 16
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Learn Solidity
Learn Solidity Step by Step# Prerequisite
To Run these examples please follow following steps## Installation
1. Install **Geth** (https://ethereum.github.io/go-ethereum/downloads/)
2. Install **Truffle** ```npm install -g truffle```
3. Start Test Network - There are three options
- Use Test network using following comming
- ```Geth --testnet``` **OR**
- ```Geth --rinkeby```
- Create Private network
- Use ganache-cli
- npm install -g ganache-cli
- Run ganache-cli using following command
- ```ganache-cli```
- This will create Test network# Compile, Deploy and Test Project
1. Go to project folder e.g
- ```cd 01_HelloWorld```2. Inside that folder Compile with following command
- ```truffle.cmd compile``` on Windows
- ```truffle compile```3. Deploy Contract with following command
- ```truffle.cmd migrate``` on Windows
- ```truffle migrate```4. Test Contract with following command
- ```truffle.cmd test``` on Windows
- ```truffle test```