Skip to content

v0.2.0

Compare
Choose a tag to compare
@DenisCarriere DenisCarriere released this 06 Oct 13:04
· 24 commits to main since this release
  • due to indexing performance issues, removed deriveFrom from fields
    • updated GraphQL to not use deriveFrom

GraphQL

type Balance @entity {
  id:                 ID!
  owner:              String!
  balance:            BigDecimal!

  # token
  code:               String!
  symcode:            String!
  sym:                String!
  precision:          BigInt!

  # delete mutations
  is_deleted:         Boolean!

  # order by
  timestamp:          Timestamp! # microseconds
  block_number:       BigInt!
  block_date:         String!
}

type Supply @entity {
  id:                 ID!
  supply:             BigDecimal!
  max_supply:         BigDecimal!

  # token
  code:               String!
  symcode:            String!
  sym:                String!
  precision:          BigInt!

  # delete mutations
  is_deleted:         Boolean!

  # order by
  timestamp:          Timestamp! # microseconds
  block_number:       BigInt!
  block_date:         String!
}

type Token @entity {
  id:                 ID!
  code:               String!
  symcode:            String!
  sym:                String!
  precision:          BigInt!

  # order by
  timestamp:          Timestamp! # microseconds
  block_number:       BigInt!
  block_date:         String!
}