Initial commit from Create Eth App
This commit is contained in:
13
packages/subgraph/schema.graphql
Normal file
13
packages/subgraph/schema.graphql
Normal file
@@ -0,0 +1,13 @@
|
||||
type Token @entity {
|
||||
id: ID!
|
||||
decimals: Int
|
||||
name: String
|
||||
symbol: String
|
||||
}
|
||||
|
||||
type Transfer @entity {
|
||||
id: ID!
|
||||
from: String!
|
||||
to: String!
|
||||
value: BigInt!
|
||||
}
|
||||
Reference in New Issue
Block a user