forked from pinax-network/substreams-raw-blocks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
schema.graphql
35 lines (31 loc) · 1.27 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
type Block @entity {
# clock
id: ID!
timestamp: BigInt!
number: BigInt!
date: String!
month: String!
year: String!
# header
previous: String!
producer: String!
confirmed: BigInt!
scheduleVersion: BigInt!
# block
version: BigInt!
producerSignature: String!
dposProposedIrreversibleBlocknum: BigInt!
dposIrreversibleBlocknum: BigInt!
# block roots
transactionMroot: String!
actionMroot: String!
blockrootMerkleActiveNodes: [String!]!
blockrootMerkleNodeCount: BigInt!
# counters
size: BigInt!
totalTransactions: BigInt!
successfulTransactions: BigInt!
failedTransactions: BigInt!
totalActions: BigInt!
totalDbOps: BigInt!
}