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

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

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