A quick, lovely faucet website for LOVE - an ERC20 token on Goerli testnet. This dApp is deployed on IPFS using Fleet, meaning it's completely Decentralized! Unlike those 'dApps' who whose websites are published on a centralized platform.
- Max supply of LOVE will never exceed 100 million
- The creator, i.e. the person to deploy the
LoveToken
contract, will get 70% of the total supply at the time of deployment, which is equal to 70 million - The rest of the 30% of the supply is left for the miner reward, the person who includes a transaction of LOVE into his block
- No one, not even the creator of LoveToken can manually mint new tokens
- Earning block rewards is the only way to bring new tokens in the network
- The block reward is by default set at 50 LOVE, this number can be changed by the creator by calling the
setBlockReward(uint)
function
- LOVE has upto 18 decimal precision
- One LoveToken can be divided in 18 smaller parts
- The creator also has the power to destroy the LoveToken contract
- This would remove all LOVE in circulation
- Anyone could get 20 LOVE (the
withdrawalAmount
) every 24 hours (thewithdrawalPeriod
) by calling thegetTokens()
function of theLoveFaucet
contract - Only the creator of LoveToken, is allowed to change the
withdrawalAmount
andwithdrawalPeriod
of the faucet
- LoveToken contract: LOVE
- LoveFaucet contract: LoveFaucet
- LoveFaucet website IPFS link: Faucet
JavaScritpt along with the React framework and the Bulma CSS library was used to create the frontend. Hardhat and ethers.js, for compiling, testing and deploying the contracts. The smart contracts were written in Solidity, with the help of OpenZepplin libraries and Remix IDE.
While some basic functionalities of LoveToken contract is tested in hardhat, following are few known issues which still persists:
- While transfering tokens directly from MetaMask wallet, the tx fails. While doing the same by loading the contract in the Remix IDE, it goes through successfully. This could be due to the fact that MetaMask wallet by default, multiplies the amount of token by 10^decimals(), in this case it's 18. This causes the tx to fail because it exceeds the balance of the sender.
- After finishing off the project, I realized that there's actually no way to send less than 1 LOVE because I manually overrode the
transfer
andtransferFrom
functions to consider theamount
input as the no. of tokens. And a fractional value of less than 1 cannot be passed to any function in Solidity - This function:
getLastWithdrawalTime()
, inside theLoveFaucet
contract actually has a misleading name. The correct intended name for it would begetNextWithdrawalTime()
- The optimizer wasn't switched on during the compilation, which could have minimised both, the deployment cost and the interaction cost.
- What all those famous coins like Tether USD, Shiba Inu, USD Coin, Binance USD actually are
- How faucets work
- Functions and events of ERC-20 standard