How to create custom token in substrate in compliance with ERC20, for example custom tokens can be named as
- Quanta American Dollars
- Quanta British Pound.
- Quanta Rupees
- Quanta Euros
- Quanta Yen
How to create custom token in substrate in compliance with ERC20, for example custom tokens can be named as
A good way to start for creating a custom token is hacking with the balances pallet https://github.com/paritytech/substrate/tree/71e66bf606c0eb9d461e347ada46897f3d60c47b/frame/balances
If what you find inside is a little bit strange for you, you can always go to the great substrate documentation and start getting your hands on this! https://substrate.dev/docs/en/
EDIT: some more color on this! I completely missed this when answering you, but maybe the asset pallet could be what makes that click with the idea you have https://github.com/paritytech/substrate/tree/71e66bf606c0eb9d461e347ada46897f3d60c47b/frame/assets
Also, if balances nor asset pallets adapts to what you are exactly looking for, you can always build you own! What basically is one of the huge advantages of building with substrate and FRAME.