Obtain super context of ERC20 tokens. Everything from name/symbol to prices, performance stats, and mini OHLCV.

In Web3Shards, projects are a collection of high level data about a particular ERC20 token/pool.

{
  "address": "The Ethereum address of the token contract.",
  "chain": "The blockchain network the token belongs to.",
  "name": "The name of the token.",
  "symbol": "The symbol used to represent the token.",
  "decimals": "The number of decimal places the token supports.",
  "base": {
    "name": "The name of the base token (e.g., ETH) used for trading this token.",
    "symbol": "The symbol of the base token.",
    "decimals": "The number of decimal places the base token supports.",
    "address": "The Ethereum address of the base token contract."
  },
  "pairSymbol": "The symbol representing the pair of tokens being traded.",
  "lastScannedBlock": "The block number that was last scanned for data related to this token.",
  "token0": "The Ethereum address of the first token in the trading pair.",
  "stats": {
    "pooledBase": "The amount of base token pooled in this token's liquidity pool.",
    "pooledToken": "The amount of the token pooled in its liquidity pool.",
    "fullyDilutedMarketCap": "The fully-diluted market capitalization of the token.",
    "trueValue": "The USD value of the base token in the pair.",
    "supply": "The total supply of the token.",
    "tradeCount": "The total number of trades involving this token.",
    "holderCount": "The total number of token holders.",
    "prices": {
      "hour_1": {
        "change": "A representation of price change percentage.",
        "prettyPrint": "The percentage change in price over the last hour in a human-readable format.",
        "volume": "The trading volume in the last hour.",
        "chart": "A list of price data points for the last hour.",
        "interval": "The time interval for the price data."
      },
      "day_1": {},
      "day_3": {},
      "week_1": {},
      "week_2": {},
      "month_1": {},
      "month_3": {},
      "live": "The live price of the token."
    }
  },
  "lastTradeTime": "The timestamp of the last trade involving this token.",
  "pool_address": "The Ethereum address of the liquidity pool associated with this token."
}