Skip to content

0xJonaseb11/T-ruffle

Repository files navigation

T-Ruffle

Author: @Jaz-3-0

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

# Install Truffle and Ganache globally.
$ npm install -g truffle ganache
truffle --version
# Connect and deploy to ganache-cli - blockchain simulator.

truffle migrate --reset
# deploy to a real blockchain network

truffle migrate --network sepolia --reset

@Jaz-3-0