mirror of
https://github.com/tornadocash/landing-subgraph.git
synced 2024-11-21 17:26:52 +01:00
12 lines
169 B
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!
|
|
}
|