This repository has been archived by the owner on Oct 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
schema.graphql
250 lines (225 loc) · 5.28 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
type ChainInfo @entity {
"Name"
id: ID!
count: Int!
}
type Block @entity @index(fields: ["height", "id"], unique: true) {
"000000..00<blockNum>-<shorthash>"
id: ID!
height: Int! @index @unique
hash: String! @index @unique
author: String!
stateRoot: String!
parentHash: String!
extrinsicRoot: String!
finalized: Boolean! @index
timestamp: DateTime!
processorTimestamp: DateTime
extrinsics: [Extrinsic!] @derivedFrom(field: "block")
events: [Event!] @derivedFrom(field: "block")
accounts: [Account!] @derivedFrom(field: "block")
}
type Extrinsic @entity @index(fields: ["timestamp", "id"], unique: true) @index(fields: ["index", "block"], unique: true) {
"000000..00<blockNum>-000<index>-<shorthash>"
id: ID!
block: Block!
index: Int! @index
hash: String! @index @unique
args: JSON!
docs: String!
method: String! @index
section: String! @index
signer: String! @index
status: ExtrinsicStatus!
errorMessage: String
type: ExtrinsicType!
signedData: JSON
timestamp: DateTime! @index
events: [Event!] @derivedFrom(field: "extrinsic")
contracts: [Contract!] @derivedFrom(field: "extrinsic")
# An extrinsic can have only one contract, it is required to use an array for the precompiled contracts, that reference the same virtual extrinsic with id -1.
}
type Event @entity @index(fields: ["id", "block"], unique: true) @index(fields: ["extrinsic", "index"], unique: true) @index(fields: ["block", "index", "extrinsic"], unique: true) {
"000000..00<blockNum>-000<index>-<shorthash>"
id: ID!
extrinsic: Extrinsic!
block: Block!
index: Int! @index
phase: String!
section: String! @index
method: String! @index
data: JSON!
timestamp: DateTime!
}
type Account @entity @index(fields: ["freeBalance", "id"], unique: true) {
"Native address"
id: ID!
evmAddress: String @index
block: Block!
identity: JSON
active: Boolean! @index
freeBalance: BigInt! @index
lockedBalance: BigInt!
availableBalance: BigInt!
reservedBalance: BigInt!
vestedBalance: BigInt!
votingBalance: BigInt!
nonce: Int!
evmNonce: Int!
timestamp: DateTime!
contracts: [Contract!] @derivedFrom(field: "signer")
}
type Contract @entity @index(fields: ["extrinsic", "id"], unique: true) {
"Address"
id: ID!
extrinsic: Extrinsic!
signer: Account!
bytecode: String!
bytecodeContext: String!
bytecodeArguments: String!
gasLimit: BigInt!
storageLimit: BigInt!
timestamp: DateTime!
}
type EvmEvent @entity {
"000000..00<blockNum>-000<index>-<shorthash>"
id: ID!
event: Event!
block: Block!
eventIndex: Int!
extrinsicIndex: Int!
contractAddress: String! @index
dataRaw: JSON!
dataParsed: JSON!
method: String! @index
type: EvmEventType! @index
status: EvmEventStatus! @index
topic0: String @index
topic1: String @index
topic2: String @index
topic3: String @index
}
# ================ Token transfers ========================
type Transfer @entity @index(fields: ["id", "extrinsic"], unique: true) @index (fields: ["id", "event"], unique: true) {
id: ID!
block: Block!
extrinsic: Extrinsic!
event: Event!
to: Account!
from: Account!
token: VerifiedContract!
toEvmAddress: String @index
fromEvmAddress: String @index
type: TransferType!
amount: BigInt! @index
feeAmount: BigInt! @index
denom: String @index
nftId: BigInt @index
errorMessage: String
success: Boolean! @index
timestamp: DateTime! @index
}
type TokenHolder @entity @index(fields: ["token", "signer", "nftId"], unique: true) {
"<tokenAddress>-<signerAddress>-<nftId>"
id: ID!
token: VerifiedContract!
signer: Account
evmAddress: String @index
nftId: BigInt
type: TokenHolderType!
balance: BigInt! @index
timestamp: DateTime!
}
# =============== Contract verification ===================
type NewlyVerifiedContractQueue @entity {
id: ID!
}
type VerificationRequest @entity {
"Address"
id: ID!
name: String! @index
filename: String @index
source: JSON!
optimization: Boolean!
compilerVersion: String!
args: JSON!
runs: Int!
target: String!
success: Boolean! @index
message: String
license: String
timestamp: DateTime
}
type VerifiedContract @entity @index(fields: ["contract", "type"], unique: true) @index(fields: ["contract", "id"], unique: true) {
"Address"
id: ID!
contract: Contract!
name: String! @index
filename: String @index
source: JSON!
optimization: Boolean!
compilerVersion: String!
compiledData: JSON!
args: JSON!
runs: Int!
target: String!
type: ContractType @index
contractData: JSON
license: String
timestamp: DateTime @index
}
# ===================== Staking ===========================
type Staking @entity {
id: ID!
signer: Account
event: Event
type: StakingType! @index
amount: BigInt!
timestamp: DateTime!
}
# ===================== Enums =============================
enum EvmEventType {
Verified,
Unverified
}
enum EvmEventStatus {
Success,
Error
}
enum ContractType {
ERC20,
ERC721,
ERC1155,
other
}
enum TransferType {
Native,
ERC20,
ERC721,
ERC1155
}
enum TokenHolderType {
Account,
Contract
}
enum StakingType {
Reward,
Slash
}
enum PoolType {
Mint,
Burn,
Swap,
Sync,
Transfer
}
enum ExtrinsicStatus {
success,
error,
unknown
}
enum ExtrinsicType {
signed,
unsigned,
inherent
}