TokenInfoGet()
Before calling the function make sure you have the Connector object initialized.
Understanding Connector ObjectFunction Call
Field
Type
Description
Token
string
Ed25519 Base58 Publickey
TokenInfoGet("Input here Base58 Token Address");Example
Connector connect_ = new Connector("95.111.224.219", 9091);
NodeApi.TokenInfoResult TokenInfo = connect_.TokenInfoGet("4SFfA1S2xfA3BdgkTn2tK14yDhLuD11RVz78kqx35jct");
Console.WriteLine(TokenInfo);Connect_ = Connector("165.22.212.253:9090")
print(Connect_.TokenInfoGet("13T1JhxF614ZKT6L2Kh8wtpE5xoZLGdFxnXbFiWKFih1"))var connect_ = new Connector("194.163.152.177", 9091);
connect_.TokenInfoGet("12DHXQ8rzYUawD6VSD6WuVaTQ4uen7fStWsTmZASnDv1").then((res) => {connect_.Close();console.log(res); });Output of Example
Output is printed via ObjectDumper
{TokenInfoResult}
Status: {APIResponse}
Code: 1
Message: "Success: "
Token: {TokenInfo}
Address: ...
Code: ""
Name: ""
TotalSupply: ""
Owner: ...
TransfersCount: 0
TransactionsCount: 0
HoldersCount: 0
TokenStandard: 0Last updated
Was this helpful?