landing-subgraph/schema.graphql

12 lines
169 B
GraphQL
Raw Normal View History

2021-04-15 19:30:11 +02:00
type Token @entity {
2021-04-09 08:29:03 +02:00
id: ID!
2021-04-15 19:30:11 +02:00
depositedAmount: BigInt!
totalDeposits: Int!
totalUsers: Int!
}
type User @entity {
id: ID! # Ethereum address
txCount: Int!
2021-04-09 08:29:03 +02:00
}