Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/andrewjbateman/blockchain-ethereum-next
:clipboard: Truffle Framework used to create an Ethereum app using Javascript and Solidity with a Next.js frontend.
https://github.com/andrewjbateman/blockchain-ethereum-next
blockchain boilerplate dapp javascript nextjs solidity truffle
Last synced: 29 days ago
JSON representation
:clipboard: Truffle Framework used to create an Ethereum app using Javascript and Solidity with a Next.js frontend.
- Host: GitHub
- URL: https://github.com/andrewjbateman/blockchain-ethereum-next
- Owner: AndrewJBateman
- Created: 2021-09-01T10:27:20.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-09-02T10:59:47.000Z (over 3 years ago)
- Last Synced: 2024-11-07T03:36:58.505Z (3 months ago)
- Topics: blockchain, boilerplate, dapp, javascript, nextjs, solidity, truffle
- Language: JavaScript
- Homepage:
- Size: 301 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Blockchain Ethereum Next
* Truffle Framework for Ethereum used to interact with smart contracts in a browser using Javascript and Solidity with a Next.js frontend.
* Code from [Tony Pun](https://www.youtube.com/channel/UCBqJ3qgbyTxanJyZzflHvLQ) who uses a 'Truffle Box' boilerplate but this required some changes to work and to remove some errors - see [:clap: Inspiration](#clap-inspiration) below.
* **Note:** to open web links in a new window use: _ctrl+click on link_![GitHub repo size](https://img.shields.io/github/repo-size/AndrewJBateman/blockchain-ethereum-next?style=plastic)
![GitHub pull requests](https://img.shields.io/github/issues-pr/AndrewJBateman/blockchain-ethereum-next?style=plastic)
![GitHub Repo stars](https://img.shields.io/github/stars/AndrewJBateman/blockchain-ethereum-next?style=plastic)
![GitHub last commit](https://img.shields.io/github/last-commit/AndrewJBateman/blockchain-ethereum-next?style=plastic)## :page_facing_up: Table of contents
* [:zap: Blockchain Ethereum Next](#zap-blockchain-ethereum-next)
* [:page_facing_up: Table of contents](#page_facing_up-table-of-contents)
* [:books: General info](#books-general-info)
* [:camera: Screenshots](#camera-screenshots)
* [:signal_strength: Technologies](#signal_strength-technologies)
* [:floppy_disk: Setup](#floppy_disk-setup)
* [:flashlight: Testing](#flashlight-testing)
* [:computer: Code Examples](#computer-code-examples)
* [:cool: Features](#cool-features)
* [:clipboard: Status & To-Do List](#clipboard-status--to-do-list)
* [:clap: Inspiration](#clap-inspiration)
* [:file_folder: License](#file_folder-license)
* [:envelope: Contact](#envelope-contact)## :books: General info
* Ethereum blockchain app is written in Solidity, similar to Javascript
* Truffle web3 used to interact with smart contracts in client-side javascript
* Truffle suite includes [Truffle Boxes](https://www.trufflesuite.com/boxes) with boiler-plate code. All are 3-4 years old so there can be issues with dependencies as well as old javascript code that works but causes errors.
* [@truffle/contract](https://github.com/trufflesuite/truffle/tree/master/packages/contract) used for contract abstraction - uses synchronized transactions and promises/async-await
* The app displays a very basic user interface that shows a list of 10 created accounts and allows some user interactions
* Google Chrome Extension Metamask used to interact with dapps in a browser - custom network added to connect on `localhost:9545`
* client folder includes it's own readme## :camera: Screenshots
![Example screenshot](./imgs/blockchain.png)
## :signal_strength: Technologies
* [Truffle Suite](https://www.trufflesuite.com/) tools for smart contracts
* [Ethereum](https://ethereum.org/en/dapps/) decentralised app (DApps)
* [Solidity v0.8.6](https://docs.soliditylang.org/en/v0.8.6/) a curly-bracket language, object-oriented, high-level language for implementing smart contracts
* [Node.js v14](https://nodejs.org/en/) JavaScript runtime built on Chrome's V8 JavaScript engine.
* [MetaMask website](https://metamask.io/) & [MetaMask Chrome Extension](https://chrome.google.com/webstore/detail/metamask/nkbihfbeogaeaoehlefnkodbefgpgknn/related?hl=en) browser Ethereum wallet to use blockchain app
* [Next.js v11](https://nextjs.org/) frontend using React## :floppy_disk: Setup
**Solidity code:**
* `truffle develop` to run Truffle dev console
* `compile` to compile app
* `migrate` to migrate app**Frontend:**
* `cd client` to change directory then `npm run dev` for a Next.js dev server, restarts on changes**Metamask (if using)**
* add custom network to connect on `localhost:9545` (I called mine 'test' and used the same id)## :flashlight: Testing
* from Truffle dev console: `test` to run 2 simple tests that pass
## :computer: Code Examples
* `accounts.js` function to use JSON.stringify(value, replacer, space) to display accounts list. Code from Truffle Box boilerplate + modification
```javascript
const Accounts = ({ accounts }) => (
)
```## :cool: Features
* connects with MetaMask Ethereum wallet Chrome Extension
## :clipboard: Status & To-Do List
* Status: Working
* To-Do: Nothing## :clap: Inspiration
* [Tony Pun: Creating a Ethereum Solidity Dapp with Next.js 2021](https://www.youtube.com/watch?v=WPXvs9-krGs)
* [Truffle Suite: A MINIMAL SMART CONTRACT DEVELOPMENT BOILERPLATE](https://www.trufflesuite.com/boxes/truffle-next)
* [IBM: What are smart contracts on blockchain?](https://www.ibm.com/topics/smart-contracts)## :file_folder: License
* N/A
## :envelope: Contact
* Repo created by [ABateman](https://github.com/AndrewJBateman), email: [email protected]