Basic Token
Tools for tokenization and construction of smart contracts in the ERC20 standard.
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
Type
Description
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