landing-subgraph/schema.graphql
Danil Kovtonyuk ad26b2f372 init
2021-04-16 03:30:11 +10:00

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!
}