https://github.com/0xjonaseb11/t-ruffle
Truffle | Beginner To Expert
https://github.com/0xjonaseb11/t-ruffle
blockchain deployments learn smart-contracts solidity truffle web3
Last synced: 2 months ago
JSON representation
Truffle | Beginner To Expert
- Host: GitHub
- URL: https://github.com/0xjonaseb11/t-ruffle
- Owner: 0xJonaseb11
- License: mit
- Created: 2023-11-21T10:06:01.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-22T19:50:27.000Z (about 2 years ago)
- Last Synced: 2024-05-22T19:53:35.474Z (about 2 years ago)
- Topics: blockchain, deployments, learn, smart-contracts, solidity, truffle, web3
- Language: JavaScript
- Homepage:
- Size: 93 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# T-Ruffle
_**Author: @0xJonaseb11**_
## About
Complete path to learning truffle framework | Biginner to Expert
### Tools
- Ganache
It is a local blockchain simulator with the help of which you can run a local blockchain on you system.
_**Ganache vs Testnet**_
| Ganache | Testnet |
|---------- |----------- |
| Centralized | Decentralized |
| Migration | Migration |
| time is less| time is more |
-------------------------------
#### Getting started
```sh
# Install Truffle and Ganache globally.
$ npm install -g truffle ganache
truffle --version
```
```sh
# Connect and deploy to ganache-cli - blockchain simulator.
truffle migrate --reset
```
```sh
# deploy to a real blockchain network
truffle migrate --network sepolia --reset
```
----------
@0xJonaseb11