14 lines
165 B
GraphQL
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!
|
|
}
|