Files
technikoin/packages/subgraph/schema.graphql
2022-10-26 07:52:17 +02:00

14 lines
165 B
GraphQL

type Token @entity {
id: ID!
decimals: Int
name: String
symbol: String
}
type Transfer @entity {
id: ID!
from: String!
to: String!
value: BigInt!
}