forked from graphprotocol/erc20-subgraph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschema.graphql
250 lines (178 loc) · 4.19 KB
/
schema.graphql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
#
# Provides information about an Ethereum account
#
type Account @entity {
" Equals to: <accountAddress>"
id: ID!
" Account address "
address: Bytes!
" Token balances that this account holds "
balances: [AccountBalance!]! @derivedFrom(field: "account")
}
#
# Current token balance of a particular Ethereum account
#
type AccountBalance @entity {
" Equals to: <accountAddress>-<tokenAddress>"
id: ID!
" Account address "
account: Account!
" Token address "
token: Token!
" Current account balance "
amount: BigDecimal!
" Block number in which the balance was last modified "
block: BigInt
" Last modified timestamp in seconds "
modified: BigInt
" Hash of the last transaction that modified the balance "
transaction: Bytes
}
#
# Token balance of a particular Ethereum account in a certain timestamp. This entity is used to
# provide information about evolution of account balances
#
type AccountBalanceSnapshot @entity {
" Equals to: <accountAddress>-<tokenAddress>-<timestamp>"
id: ID!
" Account address "
account: Account!
" Token addess "
token: Token!
" Account balance "
amount: BigDecimal!
# TODO: Add description and check if could be non-optional
event: TokenEvent
" Block number "
block: BigInt!
" Timestamp in seconds "
timestamp: BigInt!
" Transaction hash "
transaction: Bytes!
}
#
# Provides information about an ERC20 token
#
type Token @entity {
id: ID!
" Token address "
address: Bytes!
" Number of decimals the token uses "
decimals: Int!
" Human-readable name of the token "
name: String!
" Symbol of the token "
symbol: String!
" Token description "
description: String
" Image URL "
imageUrl: String
" Token flags"
flags: [String!]!
" If token transfers are paused "
paused: Boolean
# TODO: Number of token holders
# holderCount: BigInt!
" Total number of events (all types)"
eventCount: BigInt!
" Total number of burn events "
burnEventCount: BigInt!
" Total number of mint events "
mintEventCount: BigInt!
" Total number of transfer events "
transferEventCount: BigInt!
" Total token supply "
totalSupply: BigDecimal!
" Total token burned "
totalBurned: BigDecimal!
" Total token minted "
totalMinted: BigDecimal!
" Total token transferred "
totalTransferred: BigDecimal!
" List of token events "
events: [TokenEvent!]! @derivedFrom(field: "token")
}
#
# Token events
#
interface TokenEvent {
id: ID!
token: Token!
amount: BigDecimal!
sender: Bytes!
block: BigInt!
timestamp: BigInt!
transaction: Bytes!
}
type BurnEvent implements TokenEvent @entity {
id: ID!
" Token address "
token: Token!
" Quantity of tokens burned "
amount: BigDecimal!
" Transaction sender address "
sender: Bytes!
" Address of burner account "
burner: Bytes!
" Block number "
block: BigInt!
" Event timestamp "
timestamp: BigInt!
" Transaction hash "
transaction: Bytes!
}
type MintEvent implements TokenEvent @entity {
id: ID!
" Token address "
token: Token!
" Quantity of tokens minted "
amount: BigDecimal!
" Transaction sender address "
sender: Bytes!
" Address of minter account "
minter: Bytes!
" Address of destination account "
destination: Bytes!
" Block number "
block: BigInt!
" Event timestamp "
timestamp: BigInt!
" Transaction hash "
transaction: Bytes!
}
type TransferEvent implements TokenEvent @entity {
id: ID!
" Token address "
token: Token!
" Quantity of tokens transferred "
amount: BigDecimal!
" Transaction sender address "
sender: Bytes!
" Address of source account "
source: Bytes!
" Address of destination account "
destination: Bytes!
" Block number "
block: BigInt!
" Event timestamp "
timestamp: BigInt!
" Transaction hash "
transaction: Bytes!
}
type PauseEvent implements TokenEvent @entity {
id: ID!
" Token address "
token: Token!
" Greater than zero if token is paused "
amount: BigDecimal!
" Transaction sender address "
sender: Bytes!
" Address of pauser account "
pauser: Bytes!
" Block number "
block: BigInt!
" Event timestamp "
timestamp: BigInt!
" Transaction hash "
transaction: Bytes!
}