Initial commit from Create Eth App

This commit is contained in:
StockiP
2022-10-26 07:52:17 +02:00
commit 7f3291b602
33 changed files with 17728 additions and 0 deletions

View 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!
}