-
Notifications
You must be signed in to change notification settings - Fork 3
/
schema.graphql
170 lines (153 loc) · 3.23 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
type ChainProperties @entity {
id: ID!
name: String!
token: Token!
ss58Format: Int!
}
type Token @entity {
id: ID!
tokenDecimals: Int!
tokenSymbol: String!
}
type Account @entity {
"Account address"
id: ID!
balance: Balance
createdAt: DateTime!
contract: Contract @derivedFrom(field: "account")
contractsDeployed: [Contract!] @derivedFrom(field: "deployer")
codesOwned: [ContractCode!] @derivedFrom(field: "owner")
tags: [String!]
}
type Balance {
free: BigInt
reserved: BigInt
miscFrozen: BigInt
feeFrozen: BigInt
}
type StorageInfo {
storageBytes: Int
storageItems: Int
storageByteDeposit: BigInt
storageItemDeposit: BigInt
storageBaseDeposit: BigInt
}
type Contract @entity {
"Contract address"
id: ID!
trieId: Bytes!
account: Account! @unique
deployer: Account!
contractCode: ContractCode!
createdAt: DateTime! @index
terminatedAt: DateTime
terminatedFrom: Extrinsic
terminationBeneficiary: Account
salt: String
createdFrom: Extrinsic!
storageInfo: StorageInfo!
codeHashChanges: [CodeHashChange!] @derivedFrom(field: "contract")
}
type CodeHashChange @entity {
id: ID!
contract: Contract!
newCodeHash: String!
oldCodeHash: String!
changedAt: DateTime!
extrinsic: Extrinsic!
}
type ContractCode @entity {
"Code Hash"
id: ID!
code: Bytes!
owner: Account!
createdAt: DateTime!
createdFrom: Extrinsic!
removedAt: DateTime
removedFrom: Extrinsic
contractsDeployed: [Contract!] @derivedFrom(field: "contractCode")
}
type ContractEvent @entity {
"Event ID"
id: ID!
blockNumber: String!
indexInBlock: String!
contractAddress: String!
data: Bytes!
createdAt: DateTime!
extrinsic: Extrinsic!
decodedEvent: DecodedContractEvent @derivedFrom(field: "contractEvent")
}
type DecodedContractActivity @entity {
id: ID!
name: String! @index
activity: Activity! @unique
args: [DecodedActivityArg!] @derivedFrom(field: "decodedActivity")
}
type DecodedActivityArg @entity {
id: ID!
decodedActivity: DecodedContractActivity!
name: String!
value: String!
type: String!
displayName: String
}
type DecodedContractEvent @entity {
id: ID!
name: String! @index
contractEvent: ContractEvent! @unique
args: [DecodedEventArg!] @derivedFrom(field: "decodedEvent")
}
type DecodedEventArg @entity {
id: ID!
decodedEvent: DecodedContractEvent!
name: String!
value: String!
type: String!
displayName: String
}
type Extrinsic @entity {
id: ID!
blockNumber: Int!
indexInBlock: Int!
versionInfo: Int!
name: String!
signer: String
signature: String
success: Boolean!
error: JSON
fee: BigInt
tip: BigInt
hash: String!
createdAt: DateTime!
args: JSON
events: [Events!] @derivedFrom(field: "extrinsic")
}
type Activity @entity{
id: ID!
type: ActivityType! @index
action: String!
to: Account
from: Account
createdAt: DateTime! @index
args: JSON
extrinsic: Extrinsic!
decodedActivity: DecodedContractActivity @derivedFrom(field: "activity")
}
enum ActivityType {
CONTRACT
CONTRACTCALL
CODESTORED
CODEUPDATED
CONTRACTTERMINATE
}
type Events @entity {
id: ID!
extrinsic: Extrinsic!
name: String!
method: String!
blockNumber: String!
indexInBlock: String!
createdAt: DateTime!
params: JSON
}