Juncachain Document
  • Getting Started
  • Developer Guide
    • Network
      • Mainnet
      • Testnet
    • RPC
    • How to run full node
    • Token standards & specification
      • JRC21
    • Junca X protocol
    • Smart Contract Development
      • Solidity
      • Remix
      • Truffle
      • HadHat
      • Web3.js
    • dApp Development
      • Develop Full Stack dApp
  • Wallet App
    • Download App
    • Sign up & in Junca
    • Create New Wallet
    • Restore Wallet
    • Migrate JCC From V1
    • Home
    • Account Setting
    • Payments
    • Walltes Manager
    • History
Powered by GitBook
On this page
  • Learning Takeaways:
  • Technology Stack Details
  • Brief Introduction Tech Stack
  • Setting up the development environment
  • Smart Contract in Action: Compile and Deploy
  • Using the dApp
  • Conclusion
  1. Developer Guide
  2. dApp Development

Develop Full Stack dApp

Designed for anyone wanting to learn blockchain development, this tutorial provides a step-by-step guide on how to develop a full-stack Hello World Smart dApp that is used for storing and retrieving data from the BSC blockchain. The technology stack used in this tutorial includes Solidity, Truffle, Ganache, Web3.js, and Node js. We also cover how to deploy smart contracts on the JuncaChain Testnet.

Learning Takeaways:

This tutorial will help you gain knowledge on the following learning points:

  • MetaMask Wallet connectivity to JuncaChain Testnet;

  • Smart-contract development;

  • Using truffle and ganache for local development and testing;

  • Unit testing of smart contracts;

  • Deploying smart contracts on JuncaChain Testnet;

  • Front-end integration with the smart contract using web3.js library;

Technology Stack Details

  • node v16.13.0

  • npm v8.1.0

  • Truffle v5.5.19 (core: 5.5.19)

  • Ganache CLI v6.12.2 (ganache-core: 2.13.2)

  • Solidity ^0.8.0 (solc-js)

  • Web3.js v1.5.3

  • MetaMask Wallet v10.16.1

Brief Introduction Tech Stack

  1. Truffle Framework: set of tools for smart contract development, testing, and asset pipelining for any blockchain that uses the Ethereum Virtual Machine (EVM).

  2. Ganache: available as both desktop application and CLI, it is a personal blockchain that can be used for local blockchain development.

  3. MetaMask Wallet Browser Extension: we recommend using the Metamask Chrome extension. It is a web wallet that allows connecting the chrome browser to any valid blockchain network.

  4. Node JS: this is used for UI or Front end development.

  5. Web3.js: JavaScript library that allows communication with the EVM-based blockchains. This is the magic tool that turns our web application into a blockchain-enabled application.

Setting up the development environment

  1. Install Truffle: npm install -g truffle

  2. Install Ganache-CLI: npm install -g ganache-cli

  3. Clone the BNBChain-Tutorial repository: git clone https://github.com/bnb-chain/bnb-chain-tutorial.git

  4. Change the current directory: cd 01- Hello World Full Stack dApp on BSC;

  5. Install all the dependencies (node modules): npm install

Smart Contract in Action: Compile and Deploy

  1. Compile Smart Contracts. Use the commandtrufflecompile to compile your smart contracts.

  1. Migrate Smart Contracts. Use the following command to deploy/migrate your smart contracts onto the JuncaChain Testnet truffle migrate --reset --network bscTestnet

  1. Unit Test Your Smart Contracts.

    1. Open a terminal and move into the root directory of the project. Run the ganache-cli using the command ganache-cli.

  2. Make sure that the terminal is not closed, i.e., ganache-cli is running in the background. This is important because testing is done on the local network.

  3. From the root directory of the project, in a new terminal, run the command ```truffle test``` to run the tests.
  1. Create the build. Run the command npm run build to create the build files for your web application using the webpack library.

  1. Run the application. Run the command npm run dev to start the application on the localhost. Note: before running the application make sure nothing is running on localhost:3000

  1. Navigate to localhost:3000 on Chrome Browser to see the dApp in action

Using the dApp

  1. Click on Greet Button to display a message, by default it's Hello, World.

  1. Enter a name in the input field, Click Save Name button to save the name.

  1. Confirm the transaction when MetaMask notification pops up.

  1. Upon successful transaction confirmation you will see the Save successful message.

  1. Click on the Greet Button to display a message along with the last name saved with the current account.

Conclusion

In this post, we developed both the backend and front-end for a decentralized application developed in Node.js that can be used for interacting with smart contracts deployed on the JuncaChain Testnet. The tech stack includes Web3.js, Truffle, Ganache-cli, Node js, MetaMask, and jQuery.

PreviousdApp DevelopmentNextWallet App

Last updated 2 years ago

Solidity: one of the most popular object-oriented high-level smart contract programming languages. For more details on Solidity, refer .

Install and configure MetaMask Chrome Extension to use with JuncaChain Testnet. Referfor a detailed guide.

Create a .secret file with the secret phrase of MetaMask. Refer for details on how to get MetaMask secret phrase.

image
image
image
image
image
image
image

Make sure that your MetaMask wallet is correctly installed and configured to connect to JuncaChain Testnet. Refer to this for details. To use the dApp successfully make sure that your MetaMask wallet is connected to the site.

image
image
image
image
image
image
here
here
here
guide