mirror of
https://github.com/tornadocash/landing-subgraph.git
synced 2025-01-15 15:38:55 +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!
|
|
}
|