-
Notifications
You must be signed in to change notification settings - Fork 7
/
extrinsics.json
94 lines (92 loc) · 2 KB
/
extrinsics.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": "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": "REQUIRED",
"name": "block_time",
"type": "TIMESTAMP",
"description": "Block timestamp of block that includes the extrinsic"
},
{
"mode": "REQUIRED",
"name": "block_number",
"type": "INTEGER",
"description": "Block number that includes the extrinsic"
},
{
"mode": "NULLABLE",
"name": "block_hash",
"type": "STRING",
"description": "Block hash of extrinsic"
},
{
"mode": "NULLABLE",
"name": "lifetime",
"type": "JSON",
"description": "Lifetime of extrinsic"
},
{
"mode": "NULLABLE",
"name": "section",
"type": "STRING",
"description": "Pallet/section of extrinsic"
},
{
"mode": "REQUIRED",
"name": "method",
"type": "STRING",
"description": "Method of extrinsic pallet/section"
},
{
"mode": "NULLABLE",
"name": "params",
"type": "JSON",
"description": "Parameters of extrinsic"
},
{
"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"
}
]