Skip to main content
Version: 6.0.3

getTokenFromID

Query oRC10 token information by the token id.

Usage

tronWeb.trx.getTokenFromID(tokenID);

Parameters

String or Number

Return

Object

Example

//example 1
await tronWeb.trx.getTokenFromID(1002000);
> {
owner_address: '4137fa1a56eb8c503624701d776d95f6dae1d9f0d6',
name: 'BitTorrent',
abbr: 'BTT',
total_supply: 990000000000000000,
trx_num: 1,
precision: 6,
num: 1,
start_time: 1548000000000,
end_time: 1548000001000,
description: 'Official Token of BitTorrent Protocol',
url: 'www.bittorrent.com',
id: '1002000'
}

//example 2
await tronWeb.trx.getTokenFromID("1002000");
> {
owner_address: '4137fa1a56eb8c503624701d776d95f6dae1d9f0d6',
name: 'BitTorrent',
abbr: 'BTT',
total_supply: 990000000000000000,
trx_num: 1,
precision: 6,
num: 1,
start_time: 1548000000000,
end_time: 1548000001000,
description: 'Official Token of BitTorrent Protocol',
url: 'www.bittorrent.com',
id: '1002000'
}