landing-subgraph/schema.graphql

12 lines
169 B
GraphQL

type Token @entity {
id: ID!
depositedAmount: BigInt!
totalDeposits: Int!
totalUsers: Int!
}
type User @entity {
id: ID! # Ethereum address
txCount: Int!
}