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.

new contract
contract.token erc20=> (
  {
     name : "My Token",
     symbol : "BTCZ",
     totalSupply : 25000000
  }
)
contract.token deploy=> ("mainnet")

Understand the parameters

CONNECT https://dapp.tokenbank.exchange/

Request Body

{
    // Response
}

Last updated