Tokenbank v1
  • Tokenbank v1
  • Smart Contract Token
    • Basic Token
    • Smart Token
    • Smart Tokens Samples
      • BSC Scan
      • Polygon
      • Avalanche
      • Cronos
  • Smart Contract NFT
    • Marketplace
    • NFT Token ERC721
  • Token Launchpad
  • Reference
  • Operating blockchain
Powered by GitBook
On this page
  • Basic Token code
  • Understand the parameters
  1. Smart Contract Token

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

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..

{
    // Response
}
PreviousSmart Contract TokenNextSmart Token

Last updated 2 years ago