Basic Token
Tools for tokenization and construction of smart contracts in the ERC20 standard.
Copy and modify: Copy the sample code and make the necessary changes as per the instructions contained in this documentation. Always do your tests using the testnet network before publishing on mainnet.
Basic Token code
The following code can be used in testnet or mainnet.
ERC20 Basic Tokens can be used for various situations such as tokenization of assets, or division of shares between StakeHolders.
This code generates an industry standard ERC20 token with no burn rules, fees or any integrations with the liquidity pool within the contract code.
Understand the parameters
CONNECT
https://dapp.tokenbank.exchange/
Request Body
name*
string
Token Name
symbol*
string
Token Symbol
totalSupply*
int
Integer value with the total Supply generated when creating the token, do not use decimal places..
Last updated