-
Notifications
You must be signed in to change notification settings - Fork 7
/
blocks.json
92 lines (92 loc) · 2.17 KB
/
blocks.json
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
[
{
"mode": "REQUIRED",
"name": "hash",
"type": "STRING",
"description": "Block hash"
},
{
"mode": "REQUIRED",
"name": "parent_hash",
"type": "STRING",
"description": "Block hash of parent"
},
{
"mode": "REQUIRED",
"name": "number",
"type": "INTEGER",
"description": "Block number"
},
{
"mode": "REQUIRED",
"name": "state_root",
"type": "STRING",
"description": "State root of block"
},
{
"mode": "REQUIRED",
"name": "extrinsics_root",
"type": "STRING",
"description": "Extrinsics root of block"
},
{
"mode": "REQUIRED",
"name": "block_time",
"type": "TIMESTAMP",
"description": "Unix timestamp (UTC) of block (from set timestamp extrinsic)"
},
{
"mode": "NULLABLE",
"name": "author_ss58",
"type": "STRING",
"description": "Author/Collator of block (ss58) using blocks SS58 Prefix"
},
{
"mode": "NULLABLE",
"name": "author_pub_key",
"type": "STRING",
"description": "Author/Collator of block (public key) using blocks SS58 Prefix"
},
{
"mode": "REQUIRED",
"name": "spec_version",
"type": "INTEGER",
"description": "Spec version of block"
},
{
"mode": "NULLABLE",
"name": "relay_block_number",
"type": "INTEGER",
"description": "Relay chain block number"
},
{
"mode": "NULLABLE",
"name": "relay_state_root",
"type": "STRING",
"description": "Relay chain state root"
},
{
"mode": "NULLABLE",
"name": "extrinsic_count",
"type": "INTEGER",
"description": "Total number of events loaded into the events{paraid} table for this block"
},
{
"mode": "NULLABLE",
"name": "event_count",
"type": "INTEGER",
"description": "Total number of events loaded into the events{paraid} table for this block"
},
{
"mode": "NULLABLE",
"name": "transfer_count",
"type": "INTEGER",
"description": "Total number of transfers loaded into the transfer{paraid} table for this block"
},
{
"mode": "NULLABLE",
"name": "trace_count",
"type": "INTEGER",
"description": "Total number of traces loaded into the traces{paraid} table for this block"
}
]