-
Notifications
You must be signed in to change notification settings - Fork 4
/
schema.graphql
81 lines (71 loc) · 1.45 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
enum BlockStatusFilter {
ALL
PENDING
CANONICAL
}
input EventFilterOptionsInput {
address: String!
tokenId: String
status: BlockStatusFilter
to: Int
from: Int
}
input ActionFilterOptionsInput {
address: String!
tokenId: String
status: BlockStatusFilter
to: Int
from: Int
fromActionState: String
endActionState: String
}
type EventData {
accountUpdateId: String!
transactionInfo: TransactionInfo
data: [String]!
}
type ActionData {
accountUpdateId: String!
transactionInfo: TransactionInfo
data: [String]!
}
type BlockInfo {
height: Int!
stateHash: String!
parentHash: String!
ledgerHash: String!
chainStatus: String!
timestamp: String!
globalSlotSinceHardfork: Int!
globalSlotSinceGenesis: Int!
distanceFromMaxBlockHeight: Int!
}
type TransactionInfo {
status: String!
hash: String!
memo: String!
authorizationKind: String!
sequenceNumber: Int! # TODO: Is it ok to make this required?
zkappAccountUpdateIds: [Int]!
}
type ActionStates {
actionStateOne: String
actionStateTwo: String
actionStateThree: String
actionStateFour: String
actionStateFive: String
}
type EventOutput {
blockInfo: BlockInfo
eventData: [EventData]
}
type ActionOutput {
blockInfo: BlockInfo
transactionInfo: TransactionInfo
actionData: [ActionData]
actionState: ActionStates!
}
type Query {
events(input: EventFilterOptionsInput!): [EventOutput]!
actions(input: ActionFilterOptionsInput!): [ActionOutput]!
}