-
Notifications
You must be signed in to change notification settings - Fork 7
/
events.json
62 lines (62 loc) · 1.44 KB
/
events.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
[
{
"mode": "REQUIRED",
"name": "event_id",
"type": "STRING",
"description": "Event ID of the event ('blocknumber-extrinsicIndex-eventIdx')"
},
{
"mode": "REQUIRED",
"name": "section",
"type": "STRING",
"description": "Event section of the event"
},
{
"mode": "REQUIRED",
"name": "method",
"type": "STRING",
"description": "Event method of the event"
},
{
"mode": "REQUIRED",
"name": "data",
"type": "JSON",
"description": "JSON data of the event"
},
{
"mode": "REQUIRED",
"name": "extrinsic_id",
"type": "STRING",
"description": "Extrinsic ID of the extrinsic that includes this event"
},
{
"mode": "REQUIRED",
"name": "extrinsic_hash",
"type": "STRING",
"description": "Extrinsic hash of the extrinsic that includes this event"
},
{
"mode": "REQUIRED",
"name": "block_time",
"type": "TIMESTAMP",
"description": "Block time (unix time) of the block that includes this event"
},
{
"mode": "REQUIRED",
"name": "block_number",
"type": "INTEGER",
"description": "Block number of the block that includes this event"
},
{
"mode": "REQUIRED",
"name": "block_hash",
"type": "STRING",
"description": "Block hash of the block that includes this event"
},
{
"mode": "NULLABLE",
"name": "data_decoded",
"type": "JSON",
"description": "Decoded JSON data of the event, if available"
}
]