OBJECT

Asset

link GraphQL Schema definition

  • type Asset {
  • # The ticker symbol used to uniquely identify this asset within Trustology
  • # systems. This will often match the publicly used ticker symbol, but may diverge
  • # where there are multiple matching assets.
  • symbol: String!
  • # The name of the asset
  • name: String!
  • # The location of a standardised icon for this asset
  • iconUrl: String!
  • # The asset type
  • type: AssetType!
  • # The chain the asset belongs to (ETHEREUM / BITCOIN)
  • chain: String!
  • # The ISO date that this asset was added to the catalog
  • dateAdded: String!
  • # The maximum number of decimal place for the asset
  • decimalPlace: Int!
  • # Public ticker symbol
  • displaySymbol: String!
  • # The contract address of the asset (i.e. ERC20 tokens)
  • contractAddress: String
  • }

link Require by