Ethereum Dapp Crash Course: Make an ERC20 token faucet + Frontend

This page summarizes the projects mentioned and recommended in the original post on dev.to

Our great sponsors
  • SurveyJS - Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • erc20-faucet-react

    erc20 faucet with react client side

  • Find all the source code for this project here Link

  • openzeppelin-contracts

    OpenZeppelin Contracts is a library for secure smart contract development.

  • pragma solidity ^0.8.0; import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol"; contract FCTToken is ERC20 { constructor(string memory name, string memory symbol) ERC20(name, symbol) { _mint(msg.sender, 10000 * (10 ** 18)); } function faucet (address recipient , uint amount) external { _mint(recipient, amount); } }

  • SurveyJS

    Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App. With SurveyJS form UI libraries, you can build and style forms in a fully-integrated drag & drop form builder, render them in your JS app, and store form submission data in any backend, inc. PHP, ASP.NET Core, and Node.js.

    SurveyJS logo
  • React

    The library for web and native user interfaces.

  • react

  • hardhat

    Hardhat is a development environment to compile, deploy, test, and debug your Ethereum software.

  • require("@nomiclabs/hardhat-waffle"); require('dotenv').config() // This is a sample Hardhat task. To learn how to create your own go to // https://hardhat.org/guides/create-task.html task("accounts", "Prints the list of accounts", async () => { const accounts = await ethers.getSigners(); for (const account of accounts) { console.log(account.address); } }); // You need to export an object to set up your config // Go to https://hardhat.org/config/ to learn more /** * @type import('hardhat/config').HardhatUserConfig */ module.exports = { paths: { artifacts: './src/artifacts', }, networks: { hardhat: { chainId: 1337 }, goreli: { url: "{YOUR END POINT URL}", accounts: [`0x${process.env.PRIVATE_KEY}`] } }, solidity: "0.8.3" };

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts