-
Notifications
You must be signed in to change notification settings - Fork 358
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
get-token-info documentation is different from the API data #245
Comments
totalIn, totalOut is not available for the moment. |
I would like to have a chat with the responsible of the overview when it comes to the ethplorer. It is important- Pm. Carlosbellange@hotmail.com |
TxCount is not mentioned in the documentation at all. Can you please add it? Thanks. |
Your question is off topic. Why do you use this topic? |
@alexesnsk I'm working with a typescript implementation and noticed another inconsistency — the documented type of |
Hello,
I am implementing Ethplorer in my project. I noticed that the get-token-info is different from the actual API call:
Documentation:
{
address: # token address,
totalSupply: # total token supply,
name: # token name,
symbol: # token symbol,
decimals: # number of significant digits,
price: { # token price (false, if not available),
rate: # current price in currency,
currency: # token price currency (USD),
diff: # 24 hours rate difference (in percent),
diff7d: # 7 days rate difference (in percent),
diff30d: # 30 days rate difference (in percent),
marketCapUsd: # market cap (USD),
availableSupply: # available supply,
volume24h: # 24 hours volume,
ts: # last rate update timestamp,
},
publicTags: [] # [optional] one or more tags from https://ethplorer.io/tag/,
owner: # token owner address,
countOps: # total count of token operations,
totalIn: # total amount of incoming tokens,
totalOut: # total amount of outgoing tokens,
transfersCount: # total number of token operations,
ethTransfersCount: # [optional] total number of ethereum operations,
holdersCount: # total number of token holders,
issuancesCount: # total count of token issuances,
image: # [optional] token image url,
description: # [optional] token description,
website: # [optional] token website url,
lastUpdated: # last updated timestamp,
}
API Call:
{
"address": "0x2b591e99afe9f32eaa6214f7b7629768c40eeb39",
"name": "HEX",
"decimals": "8",
"symbol": "HEX",
"totalSupply": "58155180128736744713",
"owner": "",
"txsCount": 1830264,
"transfersCount": 3109936,
"lastUpdated": 1667511641,
"issuancesCount": 1055704,
"holdersCount": 310882,
"image": "/images/HEX2b591e99.png",
"website": "https://hex.com",
"ethTransfersCount": 0,
"price": {
"rate": 0.03924476800557123,
"diff": -3,
"diff7d": -8.9,
"ts": 1667512020,
"marketCapUsd": 6805477384.937584,
"availableSupply": 173411074413.06497,
"volume24h": 7594780.32979642,
"volDiff1": -36.69057597277082,
"volDiff7": -0.8260291777996116,
"volDiff30": -12.097591119921304,
"diff30d": 17.069084350204577,
"bid": 0.163126,
"currency": "USD"
},
"countOps": 3109936
}
I haven't crosschecked all data, but e.g. the following data is missing and not labeled as optional in the documentation:
totalIn: # total amount of incoming tokens,
totalOut: # total amount of outgoing tokens,
Is the documentation outdated, or is something else wrong?
Thanks.
The text was updated successfully, but these errors were encountered: