Create Tron TRC20 token
POST {{baseUrl}}/v3/tron/trc20/deploy
10 credits per API call.
Create Tron TRC20 token. 1 account can create only 1 token. All supply of the tokens are transfered to the issuer account 100 seconds after the creation.
This operation needs the private key of the blockchain address. Every time the funds are transferred, the transaction must be signed with the corresponding private key.
No one should ever send it's own private keys to the internet because there is a strong possibility of stealing keys and loss of funds. In this method, it is possible to enter privateKey.
PrivateKey should be used only for quick development on testnet versions of blockchain when there is no risk of losing funds. In production,
it is possible to use the Tatum client library for supported languages or Tatum Middleware with a custom key management system.
Request Body
{"fromPrivateKey"=>"842E09EB40D8175979EFB0071B28163E11AED0F14BDD84090A4CEFB936EF5701", "name"=>"My token", "recipient"=>"TYMwiDu22V6XG3yk6W9cTVBz48okKLRczh", "symbol"=>"SYM", "totalSupply"=>100000, "decimals"=>10}
HEADERS
Key | Datatype | Required | Description |
---|---|---|---|
Content-Type | string |
RESPONSES
status: OK
{"txId":"c83f8818db43d9ba4accfe454aa44fc33123d47a4f89d47b314d6748eb0e9bc9"}