Skip to main content

/wallet/createassetissue REST API Endpoint

Issue a TRC10 token.

Updated on
Oct 4, 2023

/wallet/createassetissue REST API Endpoint

Body Parameters

owner_address
string
REQUIRED
The address of the account that is initiating the transaction, encoded in hex
name
string
REQUIRED
The token name, encoded in hex
abbr
string
REQUIRED
The abbreviation used for token
total_supply
integer
REQUIRED
The total supply of token
trx_num
integer
REQUIRED
The transaction number
num
integer
REQUIRED
It define the price by the ratio of trx_num/num
start_time
integer
REQUIRED
The ICO start time
end_time
integer
REQUIRED
The ICO end time
description
string
REQUIRED
The token description, encoded in hexString
url
integer
REQUIRED
The token official website url
free_asset_net_limit
integer
REQUIRED
The token free asset net limit
public_free_asset_net_limit
string
REQUIRED
The token public free asset net limit
frozen_supply
json
REQUIRED
The token frozen supply
visible
boolean
A boolean value indicating whether the address is in base58 format
precision
integer
REQUIRED
The precision value

Returns

visible
A boolean value indicating whether the transaction was successful
txid
The transaction id
raw_data
An object that contains the transaction details with the following fields:
contract
An array of objects containing information about the transfer transaction contract
parameter
An object containing the transfer transaction contract parameters
value
An object containing the values of the transfer transaction contract parameters
owner_address
The owner address
name
The token name, encoded in hex
abbr
The abbreviation used for token
total_supply
The total supply of token
frozen_supply
The token frozen supply
precision
The precision value
trx_num
The transaction number
num
It define the price by the ratio of trx_num/num
start_time
The ICO start time
end_time
The ICO end time
description
The token description, encoded in hexString
url
The token official website url
free_asset_net_limit
The token free asset net limit
public_free_asset_net_limit
The token public free asset net limit
public_free_asset_net_usage
The total number of token free bandwidth used by all token owner
public_latest_free_net_time
The timestamp of the last consumption of this token free bandwidth
type_url
The URL of the exchange transaction contract type
type
The type of the exchange transaction contract
ref_block_bytes
The ref block bytes of the transaction
ref_block_hash
The ref block hash of the transaction
expiration
This is a timestamp indicating the expiration time of the transaction in milliseconds
timestamp
This is a timestamp indicating the time at which the transaction was created in milliseconds
raw_data_hex
The hexadecimal representation of the raw data in the transactio
Request
1
curl https://docs-demo.tron-mainnet.quiknode.pro/wallet/createassetissue \
2
--header 'accept: application/json' \
3
--header 'content-type: application/json' \
4
--data '
5
{
6
"owner_address": "OWNER_ADDRESS",
7
"name": "TOKEN_NAME",
8
"abbr": "ABBR",
9
"description": "DESCRIPTION",
10
"url": "URL",
11
"frozen_supply": {
12
"frozen_amount": FROZEN_AMOUNT,
13
"frozen_days": FROZEN_DAYS
14
},
15
"visible": VISIBLE
16
}
17
'
Don't have an account yet?
Create your QuickNode endpoint in seconds and start building
Get started for free