getassetissuebyaccount - Tron
getassetissuebyaccount. Returns the TRC10 token issued by a specific account.
getassetissuebyaccount - tron [Value: 20CU]
Returns the TRC10 token issued by a specific account.
Use cases
- Also available as GET
- Check whether an account has already issued a TRC10 token
Constraints
- Returns an empty object if the account has not issued any TRC10 token
- Also available under /walletsolidity/ for confirmed (solidified) data instead of the latest state
Unlock Access to 100+ chains
Boost your app's speed and reliability with dRPC - get your access API key
Language
Request
Examples
curl --request POST \
--url https://lb.drpc.live/tron/{API-KEY}/wallet/getassetissuebyaccount \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--data '{"address": "TZ4UXDV5ZhNW7fb2AMSbgfAEZ7hWsnYS2g", "visible": true}'Response
200
{
"owner_address": "41088a2bfcb1c7271029fd69a66859d55560895884",
"name": "54524e",
"abbr": "544e",
"total_supply": 100000000000000000,
"frozen_supply": [
{ "frozen_amount": 1, "frozen_days": 1 }
],
"trx_num": 1,
"precision": 6,
"num": 1,
"start_time": 1737690890434,
"end_time": 2053134849000,
"vote_score": 1,
"description": "7465737420747263313020636f696e20666f72206e696c65",
"url": "68747470733a2f2f6e696c6565782e696f2f",
"free_asset_net_limit": 10000,
"public_free_asset_net_limit": 20000,
"id": "1005416"
}Request params
idinteger
jsonrpcstring
methodstring
object
addressstring
[Required for GET] The issuing account's address
visibleboolean
When true, addresses are base58check strings; when false (default), hex strings
Response
200
Returns the TRC10 token issued by a specific account.Response params
object
assetIssuearray_of_objects
The list of TRC10 token issuance records matching the query.
object
owner_addressstring
The address of the account that issued this token, in hex format.
namestring
The token's display name, UTF-8 encoded as a hex string.
abbrstring
The token's ticker/abbreviation, UTF-8 encoded as a hex string.
total_supplyinteger
The total number of units of this token issued.
frozen_supplyarray_of_objects
The portion(s) of the total supply locked up by the issuer for a fixed duration before becoming transferable.
object
frozen_amountinteger
The number of token units locked in this frozen portion.
frozen_daysinteger
The number of days this portion remains locked before it can be released.
trx_numinteger
The denominator of the TRX-to-token exchange ratio: this many TRX buys `num` tokens during fundraising.
precisioninteger
The number of decimal places used to display this token's amounts.
numinteger
The numerator of the TRX-to-token exchange ratio: `trx_num` TRX buys this many tokens during fundraising.
start_timeinteger
Unix timestamp, in ms, at which the token's fundraising period began.
end_timeinteger
Unix timestamp, in ms, at which the token's fundraising period ends.
vote_scoreinteger
A weighting factor used internally when ranking or sorting this token, relative to others.
descriptionstring
A free-text description of the token or project, UTF-8 encoded as a hex string.
urlstring
The project's website URL, UTF-8 encoded as a hex string.
free_asset_net_limitinteger
The free bandwidth quota granted per account for transactions involving this token.
public_free_asset_net_limitinteger
The shared free bandwidth quota available to all accounts collectively for transactions involving this token.
idstring
The unique numeric identifier assigned to this TRC10 token on the network.