-
Notifications
You must be signed in to change notification settings - Fork 7
/
calls.json
148 lines (148 loc) · 3.66 KB
/
calls.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
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
[{
"mode": "REQUIRED",
"name": "relay_chain",
"type": "STRING"
},
{
"mode": "REQUIRED",
"name": "para_id",
"type": "INTEGER"
},
{
"mode": "NULLABLE",
"name": "id",
"type": "STRING"
},
{
"mode": "NULLABLE",
"name": "block_hash",
"type": "STRING",
"description": "Block hash of extrinsic"
},
{
"mode": "REQUIRED",
"name": "block_number",
"type": "INTEGER",
"description": "Block number that includes the extrinsic"
},
{
"mode": "REQUIRED",
"name": "block_time",
"type": "TIMESTAMP",
"description": "Block timestamp of block that includes the extrinsic"
},
{
"mode": "REQUIRED",
"name": "extrinsic_hash",
"type": "STRING",
"description": "Hash of extrinsic data -- because of account reaping, may not be unique"
},
{
"mode": "REQUIRED",
"name": "extrinsic_id",
"type": "STRING",
"description": "Extrinsic ID of extrinsic"
},
{
"mode": "NULLABLE",
"name": "extrinsic_section",
"type": "STRING",
"description": "Pallet/section of extrinsic (top-level call)"
},
{
"mode": "NULLABLE",
"name": "extrinsic_method",
"type": "STRING",
"description": "Method of extrinsic (top-level call)"
},
{
"mode": "REQUIRED",
"name": "call_id",
"type": "STRING",
"description": "Call ID of extrinsic"
},
{
"mode": "NULLABLE",
"name": "call_index",
"type": "STRING",
"description": "The 2 bytes index of the call_section:call_method"
},
{
"mode": "NULLABLE",
"name": "call_section",
"type": "STRING",
"description": "Pallet/section of call (top-level call)"
},
{
"mode": "NULLABLE",
"name": "call_method",
"type": "STRING",
"description": "Method of call"
},
{
"mode": "NULLABLE",
"name": "call_args",
"type": "JSON",
"description": "Args of call"
},
{
"mode": "NULLABLE",
"name": "call_args_def",
"type": "JSON",
"description": "Args Definition of call"
},
{
"mode": "NULLABLE",
"name": "root",
"type": "BOOLEAN",
"description": "Whether the call is root (top-level call)"
},
{
"mode": "NULLABLE",
"name": "leaf",
"type": "BOOLEAN",
"description": "Whether the call is leaf (bottom-level call)"
},
{
"mode": "NULLABLE",
"name": "fee",
"type": "FLOAT",
"description": "Fee of extrinsic"
},
{
"mode": "NULLABLE",
"name": "fee_usd",
"type": "FLOAT",
"description": "Fee USD of extrinsic (if available)"
},
{
"mode": "NULLABLE",
"name": "weight",
"type": "INTEGER",
"description": "Extrinsic weight (if available)"
},
{
"mode": "NULLABLE",
"name": "signed",
"type": "BOOLEAN",
"description": "Whether extrinsic has been signed (true) or not (false)"
},
{
"mode": "NULLABLE",
"name": "signer_ss58",
"type": "STRING",
"description": "SS58 Address of Signer of extrinsic, if signed"
},
{
"mode": "NULLABLE",
"name": "signer_pub_key",
"type": "STRING",
"description": "Pub key of Signer of extrinsic"
},
{
"mode": "NULLABLE",
"name": "lifetime",
"type": "JSON",
"description": "Lifetime of extrinsic"
}
]