Hardhat Guide
Understanding the Confidential ERC-20
Deep dive into the confidential token implementation
We will be creating a confidential ERC20 contract that enables:
- Minting new tokens
- Transferring tokens between accounts
- Managing token allowances
- Keeping all amounts encrypted
- Owner-only access to view all balances
- Optional global decryption of individual balances
1
Setting up Contract
2
Defining Functions
3
Complete Implementation
Was this page helpful?