ripple-binary-codec 2.1.0 → 2.3.0-batch.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/binary.d.ts +16 -1
- package/dist/binary.js +28 -1
- package/dist/binary.js.map +1 -1
- package/dist/enums/definitions.json +1255 -1001
- package/dist/enums/src/enums/definitions.json +1259 -1005
- package/dist/hash-prefixes.js +2 -0
- package/dist/hash-prefixes.js.map +1 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +9 -2
- package/dist/index.js.map +1 -1
- package/dist/src/binary.d.ts +16 -1
- package/dist/src/binary.js +28 -1
- package/dist/src/binary.js.map +1 -1
- package/dist/src/enums/definitions.json +1255 -1001
- package/dist/src/hash-prefixes.js +2 -0
- package/dist/src/hash-prefixes.js.map +1 -1
- package/dist/src/index.d.ts +2 -1
- package/dist/src/index.js +9 -2
- package/dist/src/index.js.map +1 -1
- package/dist/src/types/amount.d.ts +29 -5
- package/dist/src/types/amount.js +85 -8
- package/dist/src/types/amount.js.map +1 -1
- package/dist/src/types/hash-192.d.ts +10 -0
- package/dist/src/types/hash-192.js +19 -0
- package/dist/src/types/hash-192.js.map +1 -0
- package/dist/src/types/index.d.ts +2 -1
- package/dist/src/types/index.js +4 -1
- package/dist/src/types/index.js.map +1 -1
- package/dist/src/types/serialized-type.d.ts +1 -1
- package/dist/src/types/serialized-type.js +1 -1
- package/dist/src/types/serialized-type.js.map +1 -1
- package/dist/src/types/st-object.js +5 -2
- package/dist/src/types/st-object.js.map +1 -1
- package/dist/src/types/uint-64.d.ts +3 -2
- package/dist/src/types/uint-64.js +21 -4
- package/dist/src/types/uint-64.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/types/amount.d.ts +29 -5
- package/dist/types/amount.js +85 -8
- package/dist/types/amount.js.map +1 -1
- package/dist/types/hash-192.d.ts +10 -0
- package/dist/types/hash-192.js +19 -0
- package/dist/types/hash-192.js.map +1 -0
- package/dist/types/index.d.ts +2 -1
- package/dist/types/index.js +4 -1
- package/dist/types/index.js.map +1 -1
- package/dist/types/serialized-type.d.ts +1 -1
- package/dist/types/serialized-type.js +1 -1
- package/dist/types/serialized-type.js.map +1 -1
- package/dist/types/st-object.js +5 -2
- package/dist/types/st-object.js.map +1 -1
- package/dist/types/uint-64.d.ts +3 -2
- package/dist/types/uint-64.js +21 -4
- package/dist/types/uint-64.js.map +1 -1
- package/package.json +3 -3
- package/src/.DS_Store +0 -0
- package/src/binary.ts +40 -0
- package/src/enums/definitions.json +1259 -1005
- package/src/hash-prefixes.ts +2 -0
- package/src/index.ts +10 -1
- package/src/types/amount.ts +119 -12
- package/src/types/hash-192.ts +19 -0
- package/src/types/index.ts +3 -0
- package/src/types/serialized-type.ts +1 -1
- package/src/types/st-object.ts +4 -1
- package/src/types/uint-64.ts +33 -5
|
@@ -1,2775 +1,3091 @@
|
|
|
1
1
|
{
|
|
2
|
-
"TYPES": {
|
|
3
|
-
"Done": -1,
|
|
4
|
-
"Unknown": -2,
|
|
5
|
-
"NotPresent": 0,
|
|
6
|
-
"UInt16": 1,
|
|
7
|
-
"UInt32": 2,
|
|
8
|
-
"UInt64": 3,
|
|
9
|
-
"Hash128": 4,
|
|
10
|
-
"Hash256": 5,
|
|
11
|
-
"Amount": 6,
|
|
12
|
-
"Blob": 7,
|
|
13
|
-
"AccountID": 8,
|
|
14
|
-
"STObject": 14,
|
|
15
|
-
"STArray": 15,
|
|
16
|
-
"UInt8": 16,
|
|
17
|
-
"Hash160": 17,
|
|
18
|
-
"PathSet": 18,
|
|
19
|
-
"Vector256": 19,
|
|
20
|
-
"UInt96": 20,
|
|
21
|
-
"UInt192": 21,
|
|
22
|
-
"UInt384": 22,
|
|
23
|
-
"UInt512": 23,
|
|
24
|
-
"Issue": 24,
|
|
25
|
-
"XChainBridge": 25,
|
|
26
|
-
"Currency": 26,
|
|
27
|
-
"Transaction": 10001,
|
|
28
|
-
"LedgerEntry": 10002,
|
|
29
|
-
"Validation": 10003,
|
|
30
|
-
"Metadata": 10004
|
|
31
|
-
},
|
|
32
|
-
"LEDGER_ENTRY_TYPES": {
|
|
33
|
-
"Invalid": -1,
|
|
34
|
-
"AccountRoot": 97,
|
|
35
|
-
"DirectoryNode": 100,
|
|
36
|
-
"RippleState": 114,
|
|
37
|
-
"Ticket": 84,
|
|
38
|
-
"SignerList": 83,
|
|
39
|
-
"Offer": 111,
|
|
40
|
-
"Bridge": 105,
|
|
41
|
-
"LedgerHashes": 104,
|
|
42
|
-
"Amendments": 102,
|
|
43
|
-
"XChainOwnedClaimID": 113,
|
|
44
|
-
"XChainOwnedCreateAccountClaimID": 116,
|
|
45
|
-
"FeeSettings": 115,
|
|
46
|
-
"Escrow": 117,
|
|
47
|
-
"PayChannel": 120,
|
|
48
|
-
"Check": 67,
|
|
49
|
-
"DepositPreauth": 112,
|
|
50
|
-
"NegativeUNL": 78,
|
|
51
|
-
"NFTokenPage": 80,
|
|
52
|
-
"NFTokenOffer": 55,
|
|
53
|
-
"AMM": 121,
|
|
54
|
-
"DID": 73,
|
|
55
|
-
"Oracle": 128,
|
|
56
|
-
"Any": -3,
|
|
57
|
-
"Child": -2,
|
|
58
|
-
"Nickname": 110,
|
|
59
|
-
"Contract": 99,
|
|
60
|
-
"GeneratorMap": 103
|
|
61
|
-
},
|
|
62
2
|
"FIELDS": [
|
|
63
3
|
[
|
|
64
4
|
"Generic",
|
|
65
5
|
{
|
|
66
|
-
"nth": 0,
|
|
67
|
-
"isVLEncoded": false,
|
|
68
6
|
"isSerialized": false,
|
|
69
7
|
"isSigningField": false,
|
|
8
|
+
"isVLEncoded": false,
|
|
9
|
+
"nth": 0,
|
|
70
10
|
"type": "Unknown"
|
|
71
11
|
}
|
|
72
12
|
],
|
|
73
13
|
[
|
|
74
14
|
"Invalid",
|
|
75
15
|
{
|
|
76
|
-
"nth": -1,
|
|
77
|
-
"isVLEncoded": false,
|
|
78
16
|
"isSerialized": false,
|
|
79
17
|
"isSigningField": false,
|
|
18
|
+
"isVLEncoded": false,
|
|
19
|
+
"nth": -1,
|
|
80
20
|
"type": "Unknown"
|
|
81
21
|
}
|
|
82
22
|
],
|
|
83
23
|
[
|
|
84
24
|
"ObjectEndMarker",
|
|
85
25
|
{
|
|
86
|
-
"nth": 1,
|
|
87
|
-
"isVLEncoded": false,
|
|
88
26
|
"isSerialized": true,
|
|
89
27
|
"isSigningField": true,
|
|
28
|
+
"isVLEncoded": false,
|
|
29
|
+
"nth": 1,
|
|
90
30
|
"type": "STObject"
|
|
91
31
|
}
|
|
92
32
|
],
|
|
93
33
|
[
|
|
94
34
|
"ArrayEndMarker",
|
|
95
35
|
{
|
|
96
|
-
"nth": 1,
|
|
97
|
-
"isVLEncoded": false,
|
|
98
36
|
"isSerialized": true,
|
|
99
37
|
"isSigningField": true,
|
|
38
|
+
"isVLEncoded": false,
|
|
39
|
+
"nth": 1,
|
|
100
40
|
"type": "STArray"
|
|
101
41
|
}
|
|
102
42
|
],
|
|
103
43
|
[
|
|
104
|
-
"
|
|
44
|
+
"taker_gets_funded",
|
|
105
45
|
{
|
|
106
|
-
"nth": 257,
|
|
107
|
-
"isVLEncoded": false,
|
|
108
46
|
"isSerialized": false,
|
|
109
47
|
"isSigningField": false,
|
|
110
|
-
"type": "Hash256"
|
|
111
|
-
}
|
|
112
|
-
],
|
|
113
|
-
[
|
|
114
|
-
"index",
|
|
115
|
-
{
|
|
116
|
-
"nth": 258,
|
|
117
48
|
"isVLEncoded": false,
|
|
118
|
-
"isSerialized": false,
|
|
119
|
-
"isSigningField": false,
|
|
120
|
-
"type": "Hash256"
|
|
121
|
-
}
|
|
122
|
-
],
|
|
123
|
-
[
|
|
124
|
-
"taker_gets_funded",
|
|
125
|
-
{
|
|
126
49
|
"nth": 258,
|
|
127
|
-
"isVLEncoded": false,
|
|
128
|
-
"isSerialized": false,
|
|
129
|
-
"isSigningField": false,
|
|
130
50
|
"type": "Amount"
|
|
131
51
|
}
|
|
132
52
|
],
|
|
133
53
|
[
|
|
134
54
|
"taker_pays_funded",
|
|
135
55
|
{
|
|
136
|
-
"nth": 259,
|
|
137
|
-
"isVLEncoded": false,
|
|
138
56
|
"isSerialized": false,
|
|
139
57
|
"isSigningField": false,
|
|
58
|
+
"isVLEncoded": false,
|
|
59
|
+
"nth": 259,
|
|
140
60
|
"type": "Amount"
|
|
141
61
|
}
|
|
142
62
|
],
|
|
143
63
|
[
|
|
144
|
-
"
|
|
64
|
+
"LedgerEntryType",
|
|
145
65
|
{
|
|
146
|
-
"
|
|
66
|
+
"isSerialized": true,
|
|
67
|
+
"isSigningField": true,
|
|
147
68
|
"isVLEncoded": false,
|
|
148
|
-
"
|
|
149
|
-
"
|
|
150
|
-
"type": "LedgerEntry"
|
|
69
|
+
"nth": 1,
|
|
70
|
+
"type": "UInt16"
|
|
151
71
|
}
|
|
152
72
|
],
|
|
153
73
|
[
|
|
154
|
-
"
|
|
74
|
+
"TransactionType",
|
|
155
75
|
{
|
|
156
|
-
"
|
|
76
|
+
"isSerialized": true,
|
|
77
|
+
"isSigningField": true,
|
|
157
78
|
"isVLEncoded": false,
|
|
158
|
-
"
|
|
159
|
-
"
|
|
160
|
-
"type": "Transaction"
|
|
79
|
+
"nth": 2,
|
|
80
|
+
"type": "UInt16"
|
|
161
81
|
}
|
|
162
82
|
],
|
|
163
83
|
[
|
|
164
|
-
"
|
|
84
|
+
"SignerWeight",
|
|
165
85
|
{
|
|
166
|
-
"
|
|
86
|
+
"isSerialized": true,
|
|
87
|
+
"isSigningField": true,
|
|
167
88
|
"isVLEncoded": false,
|
|
168
|
-
"
|
|
169
|
-
"
|
|
170
|
-
"type": "Validation"
|
|
89
|
+
"nth": 3,
|
|
90
|
+
"type": "UInt16"
|
|
171
91
|
}
|
|
172
92
|
],
|
|
173
93
|
[
|
|
174
|
-
"
|
|
94
|
+
"TransferFee",
|
|
175
95
|
{
|
|
176
|
-
"
|
|
96
|
+
"isSerialized": true,
|
|
97
|
+
"isSigningField": true,
|
|
177
98
|
"isVLEncoded": false,
|
|
178
|
-
"
|
|
179
|
-
"
|
|
180
|
-
"type": "Metadata"
|
|
99
|
+
"nth": 4,
|
|
100
|
+
"type": "UInt16"
|
|
181
101
|
}
|
|
182
102
|
],
|
|
183
103
|
[
|
|
184
|
-
"
|
|
104
|
+
"TradingFee",
|
|
185
105
|
{
|
|
186
|
-
"nth": 1,
|
|
187
|
-
"isVLEncoded": false,
|
|
188
106
|
"isSerialized": true,
|
|
189
107
|
"isSigningField": true,
|
|
190
|
-
"
|
|
108
|
+
"isVLEncoded": false,
|
|
109
|
+
"nth": 5,
|
|
110
|
+
"type": "UInt16"
|
|
191
111
|
}
|
|
192
112
|
],
|
|
193
113
|
[
|
|
194
|
-
"
|
|
114
|
+
"DiscountedFee",
|
|
195
115
|
{
|
|
196
|
-
"nth": 2,
|
|
197
|
-
"isVLEncoded": false,
|
|
198
116
|
"isSerialized": true,
|
|
199
117
|
"isSigningField": true,
|
|
200
|
-
"
|
|
118
|
+
"isVLEncoded": false,
|
|
119
|
+
"nth": 6,
|
|
120
|
+
"type": "UInt16"
|
|
201
121
|
}
|
|
202
122
|
],
|
|
203
123
|
[
|
|
204
|
-
"
|
|
124
|
+
"Version",
|
|
205
125
|
{
|
|
206
|
-
"nth": 3,
|
|
207
|
-
"isVLEncoded": false,
|
|
208
126
|
"isSerialized": true,
|
|
209
127
|
"isSigningField": true,
|
|
210
|
-
"
|
|
128
|
+
"isVLEncoded": false,
|
|
129
|
+
"nth": 16,
|
|
130
|
+
"type": "UInt16"
|
|
211
131
|
}
|
|
212
132
|
],
|
|
213
133
|
[
|
|
214
|
-
"
|
|
134
|
+
"HookStateChangeCount",
|
|
215
135
|
{
|
|
216
|
-
"nth": 4,
|
|
217
|
-
"isVLEncoded": false,
|
|
218
136
|
"isSerialized": true,
|
|
219
137
|
"isSigningField": true,
|
|
220
|
-
"
|
|
138
|
+
"isVLEncoded": false,
|
|
139
|
+
"nth": 17,
|
|
140
|
+
"type": "UInt16"
|
|
221
141
|
}
|
|
222
142
|
],
|
|
223
143
|
[
|
|
224
|
-
"
|
|
144
|
+
"HookEmitCount",
|
|
225
145
|
{
|
|
226
|
-
"nth": 16,
|
|
227
|
-
"isVLEncoded": false,
|
|
228
146
|
"isSerialized": true,
|
|
229
147
|
"isSigningField": true,
|
|
230
|
-
"
|
|
148
|
+
"isVLEncoded": false,
|
|
149
|
+
"nth": 18,
|
|
150
|
+
"type": "UInt16"
|
|
231
151
|
}
|
|
232
152
|
],
|
|
233
153
|
[
|
|
234
|
-
"
|
|
154
|
+
"HookExecutionIndex",
|
|
235
155
|
{
|
|
236
|
-
"nth": 17,
|
|
237
|
-
"isVLEncoded": false,
|
|
238
156
|
"isSerialized": true,
|
|
239
157
|
"isSigningField": true,
|
|
240
|
-
"
|
|
158
|
+
"isVLEncoded": false,
|
|
159
|
+
"nth": 19,
|
|
160
|
+
"type": "UInt16"
|
|
241
161
|
}
|
|
242
162
|
],
|
|
243
163
|
[
|
|
244
|
-
"
|
|
164
|
+
"HookApiVersion",
|
|
245
165
|
{
|
|
246
|
-
"nth": 18,
|
|
247
|
-
"isVLEncoded": false,
|
|
248
166
|
"isSerialized": true,
|
|
249
167
|
"isSigningField": true,
|
|
250
|
-
"
|
|
168
|
+
"isVLEncoded": false,
|
|
169
|
+
"nth": 20,
|
|
170
|
+
"type": "UInt16"
|
|
251
171
|
}
|
|
252
172
|
],
|
|
253
173
|
[
|
|
254
|
-
"
|
|
174
|
+
"LedgerFixType",
|
|
255
175
|
{
|
|
256
|
-
"nth": 19,
|
|
257
|
-
"isVLEncoded": false,
|
|
258
176
|
"isSerialized": true,
|
|
259
177
|
"isSigningField": true,
|
|
260
|
-
"
|
|
178
|
+
"isVLEncoded": false,
|
|
179
|
+
"nth": 21,
|
|
180
|
+
"type": "UInt16"
|
|
261
181
|
}
|
|
262
182
|
],
|
|
263
183
|
[
|
|
264
|
-
"
|
|
184
|
+
"NetworkID",
|
|
265
185
|
{
|
|
266
|
-
"nth": 1,
|
|
267
|
-
"isVLEncoded": false,
|
|
268
186
|
"isSerialized": true,
|
|
269
187
|
"isSigningField": true,
|
|
270
|
-
"
|
|
188
|
+
"isVLEncoded": false,
|
|
189
|
+
"nth": 1,
|
|
190
|
+
"type": "UInt32"
|
|
271
191
|
}
|
|
272
192
|
],
|
|
273
193
|
[
|
|
274
|
-
"
|
|
194
|
+
"Flags",
|
|
275
195
|
{
|
|
276
|
-
"nth": 2,
|
|
277
|
-
"isVLEncoded": false,
|
|
278
196
|
"isSerialized": true,
|
|
279
197
|
"isSigningField": true,
|
|
280
|
-
"
|
|
198
|
+
"isVLEncoded": false,
|
|
199
|
+
"nth": 2,
|
|
200
|
+
"type": "UInt32"
|
|
281
201
|
}
|
|
282
202
|
],
|
|
283
203
|
[
|
|
284
|
-
"
|
|
204
|
+
"SourceTag",
|
|
285
205
|
{
|
|
286
|
-
"nth": 3,
|
|
287
|
-
"isVLEncoded": false,
|
|
288
206
|
"isSerialized": true,
|
|
289
207
|
"isSigningField": true,
|
|
290
|
-
"
|
|
208
|
+
"isVLEncoded": false,
|
|
209
|
+
"nth": 3,
|
|
210
|
+
"type": "UInt32"
|
|
291
211
|
}
|
|
292
212
|
],
|
|
293
213
|
[
|
|
294
|
-
"
|
|
214
|
+
"Sequence",
|
|
295
215
|
{
|
|
296
|
-
"nth": 4,
|
|
297
|
-
"isVLEncoded": false,
|
|
298
216
|
"isSerialized": true,
|
|
299
217
|
"isSigningField": true,
|
|
300
|
-
"
|
|
218
|
+
"isVLEncoded": false,
|
|
219
|
+
"nth": 4,
|
|
220
|
+
"type": "UInt32"
|
|
301
221
|
}
|
|
302
222
|
],
|
|
303
223
|
[
|
|
304
|
-
"
|
|
224
|
+
"PreviousTxnLgrSeq",
|
|
305
225
|
{
|
|
306
|
-
"nth": 5,
|
|
307
|
-
"isVLEncoded": false,
|
|
308
226
|
"isSerialized": true,
|
|
309
227
|
"isSigningField": true,
|
|
310
|
-
"
|
|
228
|
+
"isVLEncoded": false,
|
|
229
|
+
"nth": 5,
|
|
230
|
+
"type": "UInt32"
|
|
311
231
|
}
|
|
312
232
|
],
|
|
313
233
|
[
|
|
314
|
-
"
|
|
234
|
+
"LedgerSequence",
|
|
315
235
|
{
|
|
316
|
-
"nth": 6,
|
|
317
|
-
"isVLEncoded": false,
|
|
318
236
|
"isSerialized": true,
|
|
319
237
|
"isSigningField": true,
|
|
320
|
-
"
|
|
238
|
+
"isVLEncoded": false,
|
|
239
|
+
"nth": 6,
|
|
240
|
+
"type": "UInt32"
|
|
321
241
|
}
|
|
322
242
|
],
|
|
323
243
|
[
|
|
324
|
-
"
|
|
244
|
+
"CloseTime",
|
|
325
245
|
{
|
|
326
|
-
"nth": 16,
|
|
327
|
-
"isVLEncoded": false,
|
|
328
246
|
"isSerialized": true,
|
|
329
247
|
"isSigningField": true,
|
|
330
|
-
"
|
|
248
|
+
"isVLEncoded": false,
|
|
249
|
+
"nth": 7,
|
|
250
|
+
"type": "UInt32"
|
|
331
251
|
}
|
|
332
252
|
],
|
|
333
253
|
[
|
|
334
|
-
"
|
|
254
|
+
"ParentCloseTime",
|
|
335
255
|
{
|
|
336
|
-
"nth": 17,
|
|
337
|
-
"isVLEncoded": false,
|
|
338
256
|
"isSerialized": true,
|
|
339
257
|
"isSigningField": true,
|
|
340
|
-
"type": "UInt16"
|
|
341
|
-
}
|
|
342
|
-
],
|
|
343
|
-
[
|
|
344
|
-
"HookEmitCount",
|
|
345
|
-
{
|
|
346
|
-
"nth": 18,
|
|
347
|
-
"isVLEncoded": false,
|
|
348
|
-
"isSerialized": true,
|
|
349
|
-
"isSigningField": true,
|
|
350
|
-
"type": "UInt16"
|
|
351
|
-
}
|
|
352
|
-
],
|
|
353
|
-
[
|
|
354
|
-
"HookExecutionIndex",
|
|
355
|
-
{
|
|
356
|
-
"nth": 19,
|
|
357
|
-
"isVLEncoded": false,
|
|
358
|
-
"isSerialized": true,
|
|
359
|
-
"isSigningField": true,
|
|
360
|
-
"type": "UInt16"
|
|
361
|
-
}
|
|
362
|
-
],
|
|
363
|
-
[
|
|
364
|
-
"HookApiVersion",
|
|
365
|
-
{
|
|
366
|
-
"nth": 20,
|
|
367
|
-
"isVLEncoded": false,
|
|
368
|
-
"isSerialized": true,
|
|
369
|
-
"isSigningField": true,
|
|
370
|
-
"type": "UInt16"
|
|
371
|
-
}
|
|
372
|
-
],
|
|
373
|
-
[
|
|
374
|
-
"NetworkID",
|
|
375
|
-
{
|
|
376
|
-
"nth": 1,
|
|
377
|
-
"isVLEncoded": false,
|
|
378
|
-
"isSerialized": true,
|
|
379
|
-
"isSigningField": true,
|
|
380
|
-
"type": "UInt32"
|
|
381
|
-
}
|
|
382
|
-
],
|
|
383
|
-
[
|
|
384
|
-
"Flags",
|
|
385
|
-
{
|
|
386
|
-
"nth": 2,
|
|
387
|
-
"isVLEncoded": false,
|
|
388
|
-
"isSerialized": true,
|
|
389
|
-
"isSigningField": true,
|
|
390
|
-
"type": "UInt32"
|
|
391
|
-
}
|
|
392
|
-
],
|
|
393
|
-
[
|
|
394
|
-
"SourceTag",
|
|
395
|
-
{
|
|
396
|
-
"nth": 3,
|
|
397
|
-
"isVLEncoded": false,
|
|
398
|
-
"isSerialized": true,
|
|
399
|
-
"isSigningField": true,
|
|
400
|
-
"type": "UInt32"
|
|
401
|
-
}
|
|
402
|
-
],
|
|
403
|
-
[
|
|
404
|
-
"Sequence",
|
|
405
|
-
{
|
|
406
|
-
"nth": 4,
|
|
407
|
-
"isVLEncoded": false,
|
|
408
|
-
"isSerialized": true,
|
|
409
|
-
"isSigningField": true,
|
|
410
|
-
"type": "UInt32"
|
|
411
|
-
}
|
|
412
|
-
],
|
|
413
|
-
[
|
|
414
|
-
"PreviousTxnLgrSeq",
|
|
415
|
-
{
|
|
416
|
-
"nth": 5,
|
|
417
|
-
"isVLEncoded": false,
|
|
418
|
-
"isSerialized": true,
|
|
419
|
-
"isSigningField": true,
|
|
420
|
-
"type": "UInt32"
|
|
421
|
-
}
|
|
422
|
-
],
|
|
423
|
-
[
|
|
424
|
-
"LedgerSequence",
|
|
425
|
-
{
|
|
426
|
-
"nth": 6,
|
|
427
|
-
"isVLEncoded": false,
|
|
428
|
-
"isSerialized": true,
|
|
429
|
-
"isSigningField": true,
|
|
430
|
-
"type": "UInt32"
|
|
431
|
-
}
|
|
432
|
-
],
|
|
433
|
-
[
|
|
434
|
-
"CloseTime",
|
|
435
|
-
{
|
|
436
|
-
"nth": 7,
|
|
437
258
|
"isVLEncoded": false,
|
|
438
|
-
"isSerialized": true,
|
|
439
|
-
"isSigningField": true,
|
|
440
|
-
"type": "UInt32"
|
|
441
|
-
}
|
|
442
|
-
],
|
|
443
|
-
[
|
|
444
|
-
"ParentCloseTime",
|
|
445
|
-
{
|
|
446
259
|
"nth": 8,
|
|
447
|
-
"isVLEncoded": false,
|
|
448
|
-
"isSerialized": true,
|
|
449
|
-
"isSigningField": true,
|
|
450
260
|
"type": "UInt32"
|
|
451
261
|
}
|
|
452
262
|
],
|
|
453
263
|
[
|
|
454
264
|
"SigningTime",
|
|
455
265
|
{
|
|
456
|
-
"nth": 9,
|
|
457
|
-
"isVLEncoded": false,
|
|
458
266
|
"isSerialized": true,
|
|
459
267
|
"isSigningField": true,
|
|
268
|
+
"isVLEncoded": false,
|
|
269
|
+
"nth": 9,
|
|
460
270
|
"type": "UInt32"
|
|
461
271
|
}
|
|
462
272
|
],
|
|
463
273
|
[
|
|
464
274
|
"Expiration",
|
|
465
275
|
{
|
|
466
|
-
"nth": 10,
|
|
467
|
-
"isVLEncoded": false,
|
|
468
276
|
"isSerialized": true,
|
|
469
277
|
"isSigningField": true,
|
|
278
|
+
"isVLEncoded": false,
|
|
279
|
+
"nth": 10,
|
|
470
280
|
"type": "UInt32"
|
|
471
281
|
}
|
|
472
282
|
],
|
|
473
283
|
[
|
|
474
284
|
"TransferRate",
|
|
475
285
|
{
|
|
476
|
-
"nth": 11,
|
|
477
|
-
"isVLEncoded": false,
|
|
478
286
|
"isSerialized": true,
|
|
479
287
|
"isSigningField": true,
|
|
288
|
+
"isVLEncoded": false,
|
|
289
|
+
"nth": 11,
|
|
480
290
|
"type": "UInt32"
|
|
481
291
|
}
|
|
482
292
|
],
|
|
483
293
|
[
|
|
484
294
|
"WalletSize",
|
|
485
295
|
{
|
|
486
|
-
"nth": 12,
|
|
487
|
-
"isVLEncoded": false,
|
|
488
296
|
"isSerialized": true,
|
|
489
297
|
"isSigningField": true,
|
|
298
|
+
"isVLEncoded": false,
|
|
299
|
+
"nth": 12,
|
|
490
300
|
"type": "UInt32"
|
|
491
301
|
}
|
|
492
302
|
],
|
|
493
303
|
[
|
|
494
304
|
"OwnerCount",
|
|
495
305
|
{
|
|
496
|
-
"nth": 13,
|
|
497
|
-
"isVLEncoded": false,
|
|
498
306
|
"isSerialized": true,
|
|
499
307
|
"isSigningField": true,
|
|
308
|
+
"isVLEncoded": false,
|
|
309
|
+
"nth": 13,
|
|
500
310
|
"type": "UInt32"
|
|
501
311
|
}
|
|
502
312
|
],
|
|
503
313
|
[
|
|
504
314
|
"DestinationTag",
|
|
505
315
|
{
|
|
506
|
-
"nth": 14,
|
|
507
|
-
"isVLEncoded": false,
|
|
508
316
|
"isSerialized": true,
|
|
509
317
|
"isSigningField": true,
|
|
318
|
+
"isVLEncoded": false,
|
|
319
|
+
"nth": 14,
|
|
510
320
|
"type": "UInt32"
|
|
511
321
|
}
|
|
512
322
|
],
|
|
513
323
|
[
|
|
514
324
|
"LastUpdateTime",
|
|
515
325
|
{
|
|
516
|
-
"nth": 15,
|
|
517
|
-
"isVLEncoded": false,
|
|
518
326
|
"isSerialized": true,
|
|
519
327
|
"isSigningField": true,
|
|
328
|
+
"isVLEncoded": false,
|
|
329
|
+
"nth": 15,
|
|
520
330
|
"type": "UInt32"
|
|
521
331
|
}
|
|
522
332
|
],
|
|
523
333
|
[
|
|
524
334
|
"HighQualityIn",
|
|
525
335
|
{
|
|
526
|
-
"nth": 16,
|
|
527
|
-
"isVLEncoded": false,
|
|
528
336
|
"isSerialized": true,
|
|
529
337
|
"isSigningField": true,
|
|
338
|
+
"isVLEncoded": false,
|
|
339
|
+
"nth": 16,
|
|
530
340
|
"type": "UInt32"
|
|
531
341
|
}
|
|
532
342
|
],
|
|
533
343
|
[
|
|
534
344
|
"HighQualityOut",
|
|
535
345
|
{
|
|
536
|
-
"nth": 17,
|
|
537
|
-
"isVLEncoded": false,
|
|
538
346
|
"isSerialized": true,
|
|
539
347
|
"isSigningField": true,
|
|
348
|
+
"isVLEncoded": false,
|
|
349
|
+
"nth": 17,
|
|
540
350
|
"type": "UInt32"
|
|
541
351
|
}
|
|
542
352
|
],
|
|
543
353
|
[
|
|
544
354
|
"LowQualityIn",
|
|
545
355
|
{
|
|
546
|
-
"nth": 18,
|
|
547
|
-
"isVLEncoded": false,
|
|
548
356
|
"isSerialized": true,
|
|
549
357
|
"isSigningField": true,
|
|
358
|
+
"isVLEncoded": false,
|
|
359
|
+
"nth": 18,
|
|
550
360
|
"type": "UInt32"
|
|
551
361
|
}
|
|
552
362
|
],
|
|
553
363
|
[
|
|
554
364
|
"LowQualityOut",
|
|
555
365
|
{
|
|
556
|
-
"nth": 19,
|
|
557
|
-
"isVLEncoded": false,
|
|
558
366
|
"isSerialized": true,
|
|
559
367
|
"isSigningField": true,
|
|
368
|
+
"isVLEncoded": false,
|
|
369
|
+
"nth": 19,
|
|
560
370
|
"type": "UInt32"
|
|
561
371
|
}
|
|
562
372
|
],
|
|
563
373
|
[
|
|
564
374
|
"QualityIn",
|
|
565
375
|
{
|
|
566
|
-
"nth": 20,
|
|
567
|
-
"isVLEncoded": false,
|
|
568
376
|
"isSerialized": true,
|
|
569
377
|
"isSigningField": true,
|
|
378
|
+
"isVLEncoded": false,
|
|
379
|
+
"nth": 20,
|
|
570
380
|
"type": "UInt32"
|
|
571
381
|
}
|
|
572
382
|
],
|
|
573
383
|
[
|
|
574
384
|
"QualityOut",
|
|
575
385
|
{
|
|
576
|
-
"nth": 21,
|
|
577
|
-
"isVLEncoded": false,
|
|
578
386
|
"isSerialized": true,
|
|
579
387
|
"isSigningField": true,
|
|
388
|
+
"isVLEncoded": false,
|
|
389
|
+
"nth": 21,
|
|
580
390
|
"type": "UInt32"
|
|
581
391
|
}
|
|
582
392
|
],
|
|
583
393
|
[
|
|
584
394
|
"StampEscrow",
|
|
585
395
|
{
|
|
586
|
-
"nth": 22,
|
|
587
|
-
"isVLEncoded": false,
|
|
588
396
|
"isSerialized": true,
|
|
589
397
|
"isSigningField": true,
|
|
398
|
+
"isVLEncoded": false,
|
|
399
|
+
"nth": 22,
|
|
590
400
|
"type": "UInt32"
|
|
591
401
|
}
|
|
592
402
|
],
|
|
593
403
|
[
|
|
594
404
|
"BondAmount",
|
|
595
405
|
{
|
|
596
|
-
"nth": 23,
|
|
597
|
-
"isVLEncoded": false,
|
|
598
406
|
"isSerialized": true,
|
|
599
407
|
"isSigningField": true,
|
|
408
|
+
"isVLEncoded": false,
|
|
409
|
+
"nth": 23,
|
|
600
410
|
"type": "UInt32"
|
|
601
411
|
}
|
|
602
412
|
],
|
|
603
413
|
[
|
|
604
414
|
"LoadFee",
|
|
605
415
|
{
|
|
606
|
-
"nth": 24,
|
|
607
|
-
"isVLEncoded": false,
|
|
608
416
|
"isSerialized": true,
|
|
609
417
|
"isSigningField": true,
|
|
418
|
+
"isVLEncoded": false,
|
|
419
|
+
"nth": 24,
|
|
610
420
|
"type": "UInt32"
|
|
611
421
|
}
|
|
612
422
|
],
|
|
613
423
|
[
|
|
614
424
|
"OfferSequence",
|
|
615
425
|
{
|
|
616
|
-
"nth": 25,
|
|
617
|
-
"isVLEncoded": false,
|
|
618
426
|
"isSerialized": true,
|
|
619
427
|
"isSigningField": true,
|
|
428
|
+
"isVLEncoded": false,
|
|
429
|
+
"nth": 25,
|
|
620
430
|
"type": "UInt32"
|
|
621
431
|
}
|
|
622
432
|
],
|
|
623
433
|
[
|
|
624
434
|
"FirstLedgerSequence",
|
|
625
435
|
{
|
|
626
|
-
"nth": 26,
|
|
627
|
-
"isVLEncoded": false,
|
|
628
436
|
"isSerialized": true,
|
|
629
437
|
"isSigningField": true,
|
|
438
|
+
"isVLEncoded": false,
|
|
439
|
+
"nth": 26,
|
|
630
440
|
"type": "UInt32"
|
|
631
441
|
}
|
|
632
442
|
],
|
|
633
443
|
[
|
|
634
444
|
"LastLedgerSequence",
|
|
635
445
|
{
|
|
636
|
-
"nth": 27,
|
|
637
|
-
"isVLEncoded": false,
|
|
638
446
|
"isSerialized": true,
|
|
639
447
|
"isSigningField": true,
|
|
448
|
+
"isVLEncoded": false,
|
|
449
|
+
"nth": 27,
|
|
640
450
|
"type": "UInt32"
|
|
641
451
|
}
|
|
642
452
|
],
|
|
643
453
|
[
|
|
644
454
|
"TransactionIndex",
|
|
645
455
|
{
|
|
646
|
-
"nth": 28,
|
|
647
|
-
"isVLEncoded": false,
|
|
648
456
|
"isSerialized": true,
|
|
649
457
|
"isSigningField": true,
|
|
458
|
+
"isVLEncoded": false,
|
|
459
|
+
"nth": 28,
|
|
650
460
|
"type": "UInt32"
|
|
651
461
|
}
|
|
652
462
|
],
|
|
653
463
|
[
|
|
654
464
|
"OperationLimit",
|
|
655
465
|
{
|
|
656
|
-
"nth": 29,
|
|
657
|
-
"isVLEncoded": false,
|
|
658
466
|
"isSerialized": true,
|
|
659
467
|
"isSigningField": true,
|
|
468
|
+
"isVLEncoded": false,
|
|
469
|
+
"nth": 29,
|
|
660
470
|
"type": "UInt32"
|
|
661
471
|
}
|
|
662
472
|
],
|
|
663
473
|
[
|
|
664
474
|
"ReferenceFeeUnits",
|
|
665
475
|
{
|
|
666
|
-
"nth": 30,
|
|
667
|
-
"isVLEncoded": false,
|
|
668
476
|
"isSerialized": true,
|
|
669
477
|
"isSigningField": true,
|
|
478
|
+
"isVLEncoded": false,
|
|
479
|
+
"nth": 30,
|
|
670
480
|
"type": "UInt32"
|
|
671
481
|
}
|
|
672
482
|
],
|
|
673
483
|
[
|
|
674
484
|
"ReserveBase",
|
|
675
485
|
{
|
|
676
|
-
"nth": 31,
|
|
677
|
-
"isVLEncoded": false,
|
|
678
486
|
"isSerialized": true,
|
|
679
487
|
"isSigningField": true,
|
|
488
|
+
"isVLEncoded": false,
|
|
489
|
+
"nth": 31,
|
|
680
490
|
"type": "UInt32"
|
|
681
491
|
}
|
|
682
492
|
],
|
|
683
493
|
[
|
|
684
494
|
"ReserveIncrement",
|
|
685
495
|
{
|
|
686
|
-
"nth": 32,
|
|
687
|
-
"isVLEncoded": false,
|
|
688
496
|
"isSerialized": true,
|
|
689
497
|
"isSigningField": true,
|
|
498
|
+
"isVLEncoded": false,
|
|
499
|
+
"nth": 32,
|
|
690
500
|
"type": "UInt32"
|
|
691
501
|
}
|
|
692
502
|
],
|
|
693
503
|
[
|
|
694
504
|
"SetFlag",
|
|
695
505
|
{
|
|
696
|
-
"nth": 33,
|
|
697
|
-
"isVLEncoded": false,
|
|
698
506
|
"isSerialized": true,
|
|
699
507
|
"isSigningField": true,
|
|
508
|
+
"isVLEncoded": false,
|
|
509
|
+
"nth": 33,
|
|
700
510
|
"type": "UInt32"
|
|
701
511
|
}
|
|
702
512
|
],
|
|
703
513
|
[
|
|
704
514
|
"ClearFlag",
|
|
705
515
|
{
|
|
706
|
-
"nth": 34,
|
|
707
|
-
"isVLEncoded": false,
|
|
708
516
|
"isSerialized": true,
|
|
709
517
|
"isSigningField": true,
|
|
518
|
+
"isVLEncoded": false,
|
|
519
|
+
"nth": 34,
|
|
710
520
|
"type": "UInt32"
|
|
711
521
|
}
|
|
712
522
|
],
|
|
713
523
|
[
|
|
714
524
|
"SignerQuorum",
|
|
715
525
|
{
|
|
716
|
-
"nth": 35,
|
|
717
|
-
"isVLEncoded": false,
|
|
718
526
|
"isSerialized": true,
|
|
719
527
|
"isSigningField": true,
|
|
528
|
+
"isVLEncoded": false,
|
|
529
|
+
"nth": 35,
|
|
720
530
|
"type": "UInt32"
|
|
721
531
|
}
|
|
722
532
|
],
|
|
723
533
|
[
|
|
724
534
|
"CancelAfter",
|
|
725
535
|
{
|
|
726
|
-
"nth": 36,
|
|
727
|
-
"isVLEncoded": false,
|
|
728
536
|
"isSerialized": true,
|
|
729
537
|
"isSigningField": true,
|
|
538
|
+
"isVLEncoded": false,
|
|
539
|
+
"nth": 36,
|
|
730
540
|
"type": "UInt32"
|
|
731
541
|
}
|
|
732
542
|
],
|
|
733
543
|
[
|
|
734
544
|
"FinishAfter",
|
|
735
545
|
{
|
|
736
|
-
"nth": 37,
|
|
737
|
-
"isVLEncoded": false,
|
|
738
546
|
"isSerialized": true,
|
|
739
547
|
"isSigningField": true,
|
|
548
|
+
"isVLEncoded": false,
|
|
549
|
+
"nth": 37,
|
|
740
550
|
"type": "UInt32"
|
|
741
551
|
}
|
|
742
552
|
],
|
|
743
553
|
[
|
|
744
554
|
"SignerListID",
|
|
745
555
|
{
|
|
746
|
-
"nth": 38,
|
|
747
|
-
"isVLEncoded": false,
|
|
748
556
|
"isSerialized": true,
|
|
749
557
|
"isSigningField": true,
|
|
558
|
+
"isVLEncoded": false,
|
|
559
|
+
"nth": 38,
|
|
750
560
|
"type": "UInt32"
|
|
751
561
|
}
|
|
752
562
|
],
|
|
753
563
|
[
|
|
754
564
|
"SettleDelay",
|
|
755
565
|
{
|
|
756
|
-
"nth": 39,
|
|
757
|
-
"isVLEncoded": false,
|
|
758
566
|
"isSerialized": true,
|
|
759
567
|
"isSigningField": true,
|
|
568
|
+
"isVLEncoded": false,
|
|
569
|
+
"nth": 39,
|
|
760
570
|
"type": "UInt32"
|
|
761
571
|
}
|
|
762
572
|
],
|
|
763
573
|
[
|
|
764
574
|
"TicketCount",
|
|
765
575
|
{
|
|
766
|
-
"nth": 40,
|
|
767
|
-
"isVLEncoded": false,
|
|
768
576
|
"isSerialized": true,
|
|
769
577
|
"isSigningField": true,
|
|
578
|
+
"isVLEncoded": false,
|
|
579
|
+
"nth": 40,
|
|
770
580
|
"type": "UInt32"
|
|
771
581
|
}
|
|
772
582
|
],
|
|
773
583
|
[
|
|
774
584
|
"TicketSequence",
|
|
775
585
|
{
|
|
776
|
-
"nth": 41,
|
|
777
|
-
"isVLEncoded": false,
|
|
778
586
|
"isSerialized": true,
|
|
779
587
|
"isSigningField": true,
|
|
588
|
+
"isVLEncoded": false,
|
|
589
|
+
"nth": 41,
|
|
780
590
|
"type": "UInt32"
|
|
781
591
|
}
|
|
782
592
|
],
|
|
783
593
|
[
|
|
784
594
|
"NFTokenTaxon",
|
|
785
595
|
{
|
|
786
|
-
"nth": 42,
|
|
787
|
-
"isVLEncoded": false,
|
|
788
596
|
"isSerialized": true,
|
|
789
597
|
"isSigningField": true,
|
|
598
|
+
"isVLEncoded": false,
|
|
599
|
+
"nth": 42,
|
|
790
600
|
"type": "UInt32"
|
|
791
601
|
}
|
|
792
602
|
],
|
|
793
603
|
[
|
|
794
604
|
"MintedNFTokens",
|
|
795
605
|
{
|
|
796
|
-
"nth": 43,
|
|
797
|
-
"isVLEncoded": false,
|
|
798
606
|
"isSerialized": true,
|
|
799
607
|
"isSigningField": true,
|
|
608
|
+
"isVLEncoded": false,
|
|
609
|
+
"nth": 43,
|
|
800
610
|
"type": "UInt32"
|
|
801
611
|
}
|
|
802
612
|
],
|
|
803
613
|
[
|
|
804
614
|
"BurnedNFTokens",
|
|
805
615
|
{
|
|
806
|
-
"nth": 44,
|
|
807
|
-
"isVLEncoded": false,
|
|
808
616
|
"isSerialized": true,
|
|
809
617
|
"isSigningField": true,
|
|
618
|
+
"isVLEncoded": false,
|
|
619
|
+
"nth": 44,
|
|
810
620
|
"type": "UInt32"
|
|
811
621
|
}
|
|
812
622
|
],
|
|
813
623
|
[
|
|
814
624
|
"HookStateCount",
|
|
815
625
|
{
|
|
816
|
-
"nth": 45,
|
|
817
|
-
"isVLEncoded": false,
|
|
818
626
|
"isSerialized": true,
|
|
819
627
|
"isSigningField": true,
|
|
628
|
+
"isVLEncoded": false,
|
|
629
|
+
"nth": 45,
|
|
820
630
|
"type": "UInt32"
|
|
821
631
|
}
|
|
822
632
|
],
|
|
823
633
|
[
|
|
824
634
|
"EmitGeneration",
|
|
825
635
|
{
|
|
826
|
-
"nth": 46,
|
|
827
|
-
"isVLEncoded": false,
|
|
828
636
|
"isSerialized": true,
|
|
829
637
|
"isSigningField": true,
|
|
638
|
+
"isVLEncoded": false,
|
|
639
|
+
"nth": 46,
|
|
830
640
|
"type": "UInt32"
|
|
831
641
|
}
|
|
832
642
|
],
|
|
833
643
|
[
|
|
834
644
|
"VoteWeight",
|
|
835
645
|
{
|
|
836
|
-
"nth": 48,
|
|
837
|
-
"isVLEncoded": false,
|
|
838
646
|
"isSerialized": true,
|
|
839
647
|
"isSigningField": true,
|
|
648
|
+
"isVLEncoded": false,
|
|
649
|
+
"nth": 48,
|
|
840
650
|
"type": "UInt32"
|
|
841
651
|
}
|
|
842
652
|
],
|
|
843
653
|
[
|
|
844
654
|
"FirstNFTokenSequence",
|
|
845
655
|
{
|
|
846
|
-
"nth": 50,
|
|
847
|
-
"isVLEncoded": false,
|
|
848
656
|
"isSerialized": true,
|
|
849
657
|
"isSigningField": true,
|
|
658
|
+
"isVLEncoded": false,
|
|
659
|
+
"nth": 50,
|
|
850
660
|
"type": "UInt32"
|
|
851
661
|
}
|
|
852
662
|
],
|
|
853
663
|
[
|
|
854
664
|
"OracleDocumentID",
|
|
855
665
|
{
|
|
856
|
-
"nth": 51,
|
|
857
|
-
"isVLEncoded": false,
|
|
858
666
|
"isSerialized": true,
|
|
859
667
|
"isSigningField": true,
|
|
668
|
+
"isVLEncoded": false,
|
|
669
|
+
"nth": 51,
|
|
860
670
|
"type": "UInt32"
|
|
861
671
|
}
|
|
862
672
|
],
|
|
863
673
|
[
|
|
864
674
|
"IndexNext",
|
|
865
675
|
{
|
|
866
|
-
"nth": 1,
|
|
867
|
-
"isVLEncoded": false,
|
|
868
676
|
"isSerialized": true,
|
|
869
677
|
"isSigningField": true,
|
|
678
|
+
"isVLEncoded": false,
|
|
679
|
+
"nth": 1,
|
|
870
680
|
"type": "UInt64"
|
|
871
681
|
}
|
|
872
682
|
],
|
|
873
683
|
[
|
|
874
684
|
"IndexPrevious",
|
|
875
685
|
{
|
|
876
|
-
"nth": 2,
|
|
877
|
-
"isVLEncoded": false,
|
|
878
686
|
"isSerialized": true,
|
|
879
687
|
"isSigningField": true,
|
|
688
|
+
"isVLEncoded": false,
|
|
689
|
+
"nth": 2,
|
|
880
690
|
"type": "UInt64"
|
|
881
691
|
}
|
|
882
692
|
],
|
|
883
693
|
[
|
|
884
694
|
"BookNode",
|
|
885
695
|
{
|
|
886
|
-
"nth": 3,
|
|
887
|
-
"isVLEncoded": false,
|
|
888
696
|
"isSerialized": true,
|
|
889
697
|
"isSigningField": true,
|
|
698
|
+
"isVLEncoded": false,
|
|
699
|
+
"nth": 3,
|
|
890
700
|
"type": "UInt64"
|
|
891
701
|
}
|
|
892
702
|
],
|
|
893
703
|
[
|
|
894
704
|
"OwnerNode",
|
|
895
705
|
{
|
|
896
|
-
"nth": 4,
|
|
897
|
-
"isVLEncoded": false,
|
|
898
706
|
"isSerialized": true,
|
|
899
707
|
"isSigningField": true,
|
|
708
|
+
"isVLEncoded": false,
|
|
709
|
+
"nth": 4,
|
|
900
710
|
"type": "UInt64"
|
|
901
711
|
}
|
|
902
712
|
],
|
|
903
713
|
[
|
|
904
714
|
"BaseFee",
|
|
905
715
|
{
|
|
906
|
-
"nth": 5,
|
|
907
|
-
"isVLEncoded": false,
|
|
908
716
|
"isSerialized": true,
|
|
909
717
|
"isSigningField": true,
|
|
718
|
+
"isVLEncoded": false,
|
|
719
|
+
"nth": 5,
|
|
910
720
|
"type": "UInt64"
|
|
911
721
|
}
|
|
912
722
|
],
|
|
913
723
|
[
|
|
914
724
|
"ExchangeRate",
|
|
915
725
|
{
|
|
916
|
-
"nth": 6,
|
|
917
|
-
"isVLEncoded": false,
|
|
918
726
|
"isSerialized": true,
|
|
919
727
|
"isSigningField": true,
|
|
728
|
+
"isVLEncoded": false,
|
|
729
|
+
"nth": 6,
|
|
920
730
|
"type": "UInt64"
|
|
921
731
|
}
|
|
922
732
|
],
|
|
923
733
|
[
|
|
924
734
|
"LowNode",
|
|
925
735
|
{
|
|
926
|
-
"nth": 7,
|
|
927
|
-
"isVLEncoded": false,
|
|
928
736
|
"isSerialized": true,
|
|
929
737
|
"isSigningField": true,
|
|
738
|
+
"isVLEncoded": false,
|
|
739
|
+
"nth": 7,
|
|
930
740
|
"type": "UInt64"
|
|
931
741
|
}
|
|
932
742
|
],
|
|
933
743
|
[
|
|
934
744
|
"HighNode",
|
|
935
745
|
{
|
|
936
|
-
"nth": 8,
|
|
937
|
-
"isVLEncoded": false,
|
|
938
746
|
"isSerialized": true,
|
|
939
747
|
"isSigningField": true,
|
|
748
|
+
"isVLEncoded": false,
|
|
749
|
+
"nth": 8,
|
|
940
750
|
"type": "UInt64"
|
|
941
751
|
}
|
|
942
752
|
],
|
|
943
753
|
[
|
|
944
754
|
"DestinationNode",
|
|
945
755
|
{
|
|
946
|
-
"nth": 9,
|
|
947
|
-
"isVLEncoded": false,
|
|
948
756
|
"isSerialized": true,
|
|
949
757
|
"isSigningField": true,
|
|
758
|
+
"isVLEncoded": false,
|
|
759
|
+
"nth": 9,
|
|
950
760
|
"type": "UInt64"
|
|
951
761
|
}
|
|
952
762
|
],
|
|
953
763
|
[
|
|
954
764
|
"Cookie",
|
|
955
765
|
{
|
|
956
|
-
"nth": 10,
|
|
957
|
-
"isVLEncoded": false,
|
|
958
766
|
"isSerialized": true,
|
|
959
767
|
"isSigningField": true,
|
|
768
|
+
"isVLEncoded": false,
|
|
769
|
+
"nth": 10,
|
|
960
770
|
"type": "UInt64"
|
|
961
771
|
}
|
|
962
772
|
],
|
|
963
773
|
[
|
|
964
774
|
"ServerVersion",
|
|
965
775
|
{
|
|
966
|
-
"nth": 11,
|
|
967
|
-
"isVLEncoded": false,
|
|
968
776
|
"isSerialized": true,
|
|
969
777
|
"isSigningField": true,
|
|
778
|
+
"isVLEncoded": false,
|
|
779
|
+
"nth": 11,
|
|
970
780
|
"type": "UInt64"
|
|
971
781
|
}
|
|
972
782
|
],
|
|
973
783
|
[
|
|
974
784
|
"NFTokenOfferNode",
|
|
975
785
|
{
|
|
976
|
-
"nth": 12,
|
|
977
|
-
"isVLEncoded": false,
|
|
978
786
|
"isSerialized": true,
|
|
979
787
|
"isSigningField": true,
|
|
788
|
+
"isVLEncoded": false,
|
|
789
|
+
"nth": 12,
|
|
980
790
|
"type": "UInt64"
|
|
981
791
|
}
|
|
982
792
|
],
|
|
983
793
|
[
|
|
984
794
|
"EmitBurden",
|
|
985
795
|
{
|
|
986
|
-
"nth": 13,
|
|
987
|
-
"isVLEncoded": false,
|
|
988
796
|
"isSerialized": true,
|
|
989
797
|
"isSigningField": true,
|
|
798
|
+
"isVLEncoded": false,
|
|
799
|
+
"nth": 13,
|
|
990
800
|
"type": "UInt64"
|
|
991
801
|
}
|
|
992
802
|
],
|
|
993
803
|
[
|
|
994
804
|
"HookOn",
|
|
995
805
|
{
|
|
996
|
-
"nth": 16,
|
|
997
|
-
"isVLEncoded": false,
|
|
998
806
|
"isSerialized": true,
|
|
999
807
|
"isSigningField": true,
|
|
808
|
+
"isVLEncoded": false,
|
|
809
|
+
"nth": 16,
|
|
1000
810
|
"type": "UInt64"
|
|
1001
811
|
}
|
|
1002
812
|
],
|
|
1003
813
|
[
|
|
1004
814
|
"HookInstructionCount",
|
|
1005
815
|
{
|
|
1006
|
-
"nth": 17,
|
|
1007
|
-
"isVLEncoded": false,
|
|
1008
816
|
"isSerialized": true,
|
|
1009
817
|
"isSigningField": true,
|
|
818
|
+
"isVLEncoded": false,
|
|
819
|
+
"nth": 17,
|
|
1010
820
|
"type": "UInt64"
|
|
1011
821
|
}
|
|
1012
822
|
],
|
|
1013
823
|
[
|
|
1014
824
|
"HookReturnCode",
|
|
1015
825
|
{
|
|
1016
|
-
"nth": 18,
|
|
1017
|
-
"isVLEncoded": false,
|
|
1018
826
|
"isSerialized": true,
|
|
1019
827
|
"isSigningField": true,
|
|
828
|
+
"isVLEncoded": false,
|
|
829
|
+
"nth": 18,
|
|
1020
830
|
"type": "UInt64"
|
|
1021
831
|
}
|
|
1022
832
|
],
|
|
1023
833
|
[
|
|
1024
834
|
"ReferenceCount",
|
|
1025
835
|
{
|
|
1026
|
-
"nth": 19,
|
|
1027
|
-
"isVLEncoded": false,
|
|
1028
836
|
"isSerialized": true,
|
|
1029
837
|
"isSigningField": true,
|
|
838
|
+
"isVLEncoded": false,
|
|
839
|
+
"nth": 19,
|
|
1030
840
|
"type": "UInt64"
|
|
1031
841
|
}
|
|
1032
842
|
],
|
|
1033
843
|
[
|
|
1034
844
|
"XChainClaimID",
|
|
1035
845
|
{
|
|
1036
|
-
"nth": 20,
|
|
1037
|
-
"isVLEncoded": false,
|
|
1038
846
|
"isSerialized": true,
|
|
1039
847
|
"isSigningField": true,
|
|
848
|
+
"isVLEncoded": false,
|
|
849
|
+
"nth": 20,
|
|
1040
850
|
"type": "UInt64"
|
|
1041
851
|
}
|
|
1042
852
|
],
|
|
1043
853
|
[
|
|
1044
854
|
"XChainAccountCreateCount",
|
|
1045
855
|
{
|
|
1046
|
-
"nth": 21,
|
|
1047
|
-
"isVLEncoded": false,
|
|
1048
856
|
"isSerialized": true,
|
|
1049
857
|
"isSigningField": true,
|
|
858
|
+
"isVLEncoded": false,
|
|
859
|
+
"nth": 21,
|
|
1050
860
|
"type": "UInt64"
|
|
1051
861
|
}
|
|
1052
862
|
],
|
|
1053
863
|
[
|
|
1054
864
|
"XChainAccountClaimCount",
|
|
1055
865
|
{
|
|
1056
|
-
"nth": 22,
|
|
1057
|
-
"isVLEncoded": false,
|
|
1058
866
|
"isSerialized": true,
|
|
1059
867
|
"isSigningField": true,
|
|
868
|
+
"isVLEncoded": false,
|
|
869
|
+
"nth": 22,
|
|
1060
870
|
"type": "UInt64"
|
|
1061
871
|
}
|
|
1062
872
|
],
|
|
1063
873
|
[
|
|
1064
874
|
"AssetPrice",
|
|
1065
875
|
{
|
|
1066
|
-
"nth": 23,
|
|
1067
|
-
"isVLEncoded": false,
|
|
1068
876
|
"isSerialized": true,
|
|
1069
877
|
"isSigningField": true,
|
|
878
|
+
"isVLEncoded": false,
|
|
879
|
+
"nth": 23,
|
|
1070
880
|
"type": "UInt64"
|
|
1071
881
|
}
|
|
1072
882
|
],
|
|
1073
883
|
[
|
|
1074
|
-
"
|
|
884
|
+
"MaximumAmount",
|
|
1075
885
|
{
|
|
1076
|
-
"nth": 1,
|
|
1077
|
-
"isVLEncoded": false,
|
|
1078
886
|
"isSerialized": true,
|
|
1079
887
|
"isSigningField": true,
|
|
1080
|
-
"
|
|
888
|
+
"isVLEncoded": false,
|
|
889
|
+
"nth": 24,
|
|
890
|
+
"type": "UInt64"
|
|
1081
891
|
}
|
|
1082
892
|
],
|
|
1083
893
|
[
|
|
1084
|
-
"
|
|
894
|
+
"OutstandingAmount",
|
|
1085
895
|
{
|
|
1086
|
-
"nth": 1,
|
|
1087
|
-
"isVLEncoded": false,
|
|
1088
896
|
"isSerialized": true,
|
|
1089
897
|
"isSigningField": true,
|
|
1090
|
-
"
|
|
898
|
+
"isVLEncoded": false,
|
|
899
|
+
"nth": 25,
|
|
900
|
+
"type": "UInt64"
|
|
1091
901
|
}
|
|
1092
902
|
],
|
|
1093
903
|
[
|
|
1094
|
-
"
|
|
904
|
+
"MPTAmount",
|
|
1095
905
|
{
|
|
1096
|
-
"nth": 2,
|
|
1097
|
-
"isVLEncoded": false,
|
|
1098
906
|
"isSerialized": true,
|
|
1099
907
|
"isSigningField": true,
|
|
1100
|
-
"
|
|
908
|
+
"isVLEncoded": false,
|
|
909
|
+
"nth": 26,
|
|
910
|
+
"type": "UInt64"
|
|
1101
911
|
}
|
|
1102
912
|
],
|
|
1103
913
|
[
|
|
1104
|
-
"
|
|
914
|
+
"IssuerNode",
|
|
1105
915
|
{
|
|
1106
|
-
"nth": 3,
|
|
1107
|
-
"isVLEncoded": false,
|
|
1108
916
|
"isSerialized": true,
|
|
1109
917
|
"isSigningField": true,
|
|
1110
|
-
"
|
|
918
|
+
"isVLEncoded": false,
|
|
919
|
+
"nth": 27,
|
|
920
|
+
"type": "UInt64"
|
|
1111
921
|
}
|
|
1112
922
|
],
|
|
1113
923
|
[
|
|
1114
|
-
"
|
|
924
|
+
"SubjectNode",
|
|
1115
925
|
{
|
|
1116
|
-
"
|
|
926
|
+
"isSerialized": true,
|
|
927
|
+
"isSigningField": true,
|
|
1117
928
|
"isVLEncoded": false,
|
|
929
|
+
"nth": 28,
|
|
930
|
+
"type": "UInt64"
|
|
931
|
+
}
|
|
932
|
+
],
|
|
933
|
+
[
|
|
934
|
+
"EmailHash",
|
|
935
|
+
{
|
|
1118
936
|
"isSerialized": true,
|
|
1119
937
|
"isSigningField": true,
|
|
1120
|
-
"
|
|
938
|
+
"isVLEncoded": false,
|
|
939
|
+
"nth": 1,
|
|
940
|
+
"type": "Hash128"
|
|
1121
941
|
}
|
|
1122
942
|
],
|
|
1123
943
|
[
|
|
1124
944
|
"LedgerHash",
|
|
1125
945
|
{
|
|
1126
|
-
"nth": 1,
|
|
1127
|
-
"isVLEncoded": false,
|
|
1128
946
|
"isSerialized": true,
|
|
1129
947
|
"isSigningField": true,
|
|
948
|
+
"isVLEncoded": false,
|
|
949
|
+
"nth": 1,
|
|
1130
950
|
"type": "Hash256"
|
|
1131
951
|
}
|
|
1132
952
|
],
|
|
1133
953
|
[
|
|
1134
954
|
"ParentHash",
|
|
1135
955
|
{
|
|
1136
|
-
"nth": 2,
|
|
1137
|
-
"isVLEncoded": false,
|
|
1138
956
|
"isSerialized": true,
|
|
1139
957
|
"isSigningField": true,
|
|
958
|
+
"isVLEncoded": false,
|
|
959
|
+
"nth": 2,
|
|
1140
960
|
"type": "Hash256"
|
|
1141
961
|
}
|
|
1142
962
|
],
|
|
1143
963
|
[
|
|
1144
964
|
"TransactionHash",
|
|
1145
965
|
{
|
|
1146
|
-
"nth": 3,
|
|
1147
|
-
"isVLEncoded": false,
|
|
1148
966
|
"isSerialized": true,
|
|
1149
967
|
"isSigningField": true,
|
|
968
|
+
"isVLEncoded": false,
|
|
969
|
+
"nth": 3,
|
|
1150
970
|
"type": "Hash256"
|
|
1151
971
|
}
|
|
1152
972
|
],
|
|
1153
973
|
[
|
|
1154
974
|
"AccountHash",
|
|
1155
975
|
{
|
|
1156
|
-
"nth": 4,
|
|
1157
|
-
"isVLEncoded": false,
|
|
1158
976
|
"isSerialized": true,
|
|
1159
977
|
"isSigningField": true,
|
|
978
|
+
"isVLEncoded": false,
|
|
979
|
+
"nth": 4,
|
|
1160
980
|
"type": "Hash256"
|
|
1161
981
|
}
|
|
1162
982
|
],
|
|
1163
983
|
[
|
|
1164
984
|
"PreviousTxnID",
|
|
1165
985
|
{
|
|
1166
|
-
"nth": 5,
|
|
1167
|
-
"isVLEncoded": false,
|
|
1168
986
|
"isSerialized": true,
|
|
1169
987
|
"isSigningField": true,
|
|
988
|
+
"isVLEncoded": false,
|
|
989
|
+
"nth": 5,
|
|
1170
990
|
"type": "Hash256"
|
|
1171
991
|
}
|
|
1172
992
|
],
|
|
1173
993
|
[
|
|
1174
994
|
"LedgerIndex",
|
|
1175
995
|
{
|
|
1176
|
-
"nth": 6,
|
|
1177
|
-
"isVLEncoded": false,
|
|
1178
996
|
"isSerialized": true,
|
|
1179
997
|
"isSigningField": true,
|
|
998
|
+
"isVLEncoded": false,
|
|
999
|
+
"nth": 6,
|
|
1180
1000
|
"type": "Hash256"
|
|
1181
1001
|
}
|
|
1182
1002
|
],
|
|
1183
1003
|
[
|
|
1184
1004
|
"WalletLocator",
|
|
1185
1005
|
{
|
|
1186
|
-
"nth": 7,
|
|
1187
|
-
"isVLEncoded": false,
|
|
1188
1006
|
"isSerialized": true,
|
|
1189
1007
|
"isSigningField": true,
|
|
1008
|
+
"isVLEncoded": false,
|
|
1009
|
+
"nth": 7,
|
|
1190
1010
|
"type": "Hash256"
|
|
1191
1011
|
}
|
|
1192
1012
|
],
|
|
1193
1013
|
[
|
|
1194
1014
|
"RootIndex",
|
|
1195
1015
|
{
|
|
1196
|
-
"nth": 8,
|
|
1197
|
-
"isVLEncoded": false,
|
|
1198
1016
|
"isSerialized": true,
|
|
1199
1017
|
"isSigningField": true,
|
|
1018
|
+
"isVLEncoded": false,
|
|
1019
|
+
"nth": 8,
|
|
1200
1020
|
"type": "Hash256"
|
|
1201
1021
|
}
|
|
1202
1022
|
],
|
|
1203
1023
|
[
|
|
1204
1024
|
"AccountTxnID",
|
|
1205
1025
|
{
|
|
1206
|
-
"nth": 9,
|
|
1207
|
-
"isVLEncoded": false,
|
|
1208
1026
|
"isSerialized": true,
|
|
1209
1027
|
"isSigningField": true,
|
|
1028
|
+
"isVLEncoded": false,
|
|
1029
|
+
"nth": 9,
|
|
1210
1030
|
"type": "Hash256"
|
|
1211
1031
|
}
|
|
1212
1032
|
],
|
|
1213
1033
|
[
|
|
1214
1034
|
"NFTokenID",
|
|
1215
1035
|
{
|
|
1216
|
-
"nth": 10,
|
|
1217
|
-
"isVLEncoded": false,
|
|
1218
1036
|
"isSerialized": true,
|
|
1219
1037
|
"isSigningField": true,
|
|
1038
|
+
"isVLEncoded": false,
|
|
1039
|
+
"nth": 10,
|
|
1220
1040
|
"type": "Hash256"
|
|
1221
1041
|
}
|
|
1222
1042
|
],
|
|
1223
1043
|
[
|
|
1224
1044
|
"EmitParentTxnID",
|
|
1225
1045
|
{
|
|
1226
|
-
"nth": 11,
|
|
1227
|
-
"isVLEncoded": false,
|
|
1228
1046
|
"isSerialized": true,
|
|
1229
1047
|
"isSigningField": true,
|
|
1048
|
+
"isVLEncoded": false,
|
|
1049
|
+
"nth": 11,
|
|
1230
1050
|
"type": "Hash256"
|
|
1231
1051
|
}
|
|
1232
1052
|
],
|
|
1233
1053
|
[
|
|
1234
1054
|
"EmitNonce",
|
|
1235
1055
|
{
|
|
1236
|
-
"nth": 12,
|
|
1237
|
-
"isVLEncoded": false,
|
|
1238
1056
|
"isSerialized": true,
|
|
1239
1057
|
"isSigningField": true,
|
|
1058
|
+
"isVLEncoded": false,
|
|
1059
|
+
"nth": 12,
|
|
1240
1060
|
"type": "Hash256"
|
|
1241
1061
|
}
|
|
1242
1062
|
],
|
|
1243
1063
|
[
|
|
1244
1064
|
"EmitHookHash",
|
|
1245
1065
|
{
|
|
1246
|
-
"nth": 13,
|
|
1247
|
-
"isVLEncoded": false,
|
|
1248
1066
|
"isSerialized": true,
|
|
1249
1067
|
"isSigningField": true,
|
|
1068
|
+
"isVLEncoded": false,
|
|
1069
|
+
"nth": 13,
|
|
1250
1070
|
"type": "Hash256"
|
|
1251
1071
|
}
|
|
1252
1072
|
],
|
|
1253
1073
|
[
|
|
1254
1074
|
"AMMID",
|
|
1255
1075
|
{
|
|
1256
|
-
"nth": 14,
|
|
1257
|
-
"isVLEncoded": false,
|
|
1258
1076
|
"isSerialized": true,
|
|
1259
1077
|
"isSigningField": true,
|
|
1078
|
+
"isVLEncoded": false,
|
|
1079
|
+
"nth": 14,
|
|
1260
1080
|
"type": "Hash256"
|
|
1261
1081
|
}
|
|
1262
1082
|
],
|
|
1263
1083
|
[
|
|
1264
1084
|
"BookDirectory",
|
|
1265
1085
|
{
|
|
1266
|
-
"nth": 16,
|
|
1267
|
-
"isVLEncoded": false,
|
|
1268
1086
|
"isSerialized": true,
|
|
1269
1087
|
"isSigningField": true,
|
|
1088
|
+
"isVLEncoded": false,
|
|
1089
|
+
"nth": 16,
|
|
1270
1090
|
"type": "Hash256"
|
|
1271
1091
|
}
|
|
1272
1092
|
],
|
|
1273
1093
|
[
|
|
1274
1094
|
"InvoiceID",
|
|
1275
1095
|
{
|
|
1276
|
-
"nth": 17,
|
|
1277
|
-
"isVLEncoded": false,
|
|
1278
1096
|
"isSerialized": true,
|
|
1279
1097
|
"isSigningField": true,
|
|
1098
|
+
"isVLEncoded": false,
|
|
1099
|
+
"nth": 17,
|
|
1280
1100
|
"type": "Hash256"
|
|
1281
1101
|
}
|
|
1282
1102
|
],
|
|
1283
1103
|
[
|
|
1284
1104
|
"Nickname",
|
|
1285
1105
|
{
|
|
1286
|
-
"nth": 18,
|
|
1287
|
-
"isVLEncoded": false,
|
|
1288
1106
|
"isSerialized": true,
|
|
1289
1107
|
"isSigningField": true,
|
|
1108
|
+
"isVLEncoded": false,
|
|
1109
|
+
"nth": 18,
|
|
1290
1110
|
"type": "Hash256"
|
|
1291
1111
|
}
|
|
1292
1112
|
],
|
|
1293
1113
|
[
|
|
1294
1114
|
"Amendment",
|
|
1295
1115
|
{
|
|
1296
|
-
"nth": 19,
|
|
1297
|
-
"isVLEncoded": false,
|
|
1298
1116
|
"isSerialized": true,
|
|
1299
1117
|
"isSigningField": true,
|
|
1118
|
+
"isVLEncoded": false,
|
|
1119
|
+
"nth": 19,
|
|
1300
1120
|
"type": "Hash256"
|
|
1301
1121
|
}
|
|
1302
1122
|
],
|
|
1303
1123
|
[
|
|
1304
1124
|
"Digest",
|
|
1305
1125
|
{
|
|
1306
|
-
"nth": 21,
|
|
1307
|
-
"isVLEncoded": false,
|
|
1308
1126
|
"isSerialized": true,
|
|
1309
1127
|
"isSigningField": true,
|
|
1128
|
+
"isVLEncoded": false,
|
|
1129
|
+
"nth": 21,
|
|
1310
1130
|
"type": "Hash256"
|
|
1311
1131
|
}
|
|
1312
1132
|
],
|
|
1313
1133
|
[
|
|
1314
1134
|
"Channel",
|
|
1315
1135
|
{
|
|
1316
|
-
"nth": 22,
|
|
1317
|
-
"isVLEncoded": false,
|
|
1318
1136
|
"isSerialized": true,
|
|
1319
1137
|
"isSigningField": true,
|
|
1138
|
+
"isVLEncoded": false,
|
|
1139
|
+
"nth": 22,
|
|
1320
1140
|
"type": "Hash256"
|
|
1321
1141
|
}
|
|
1322
1142
|
],
|
|
1323
1143
|
[
|
|
1324
1144
|
"ConsensusHash",
|
|
1325
1145
|
{
|
|
1326
|
-
"nth": 23,
|
|
1327
|
-
"isVLEncoded": false,
|
|
1328
1146
|
"isSerialized": true,
|
|
1329
1147
|
"isSigningField": true,
|
|
1148
|
+
"isVLEncoded": false,
|
|
1149
|
+
"nth": 23,
|
|
1330
1150
|
"type": "Hash256"
|
|
1331
1151
|
}
|
|
1332
1152
|
],
|
|
1333
1153
|
[
|
|
1334
1154
|
"CheckID",
|
|
1335
1155
|
{
|
|
1336
|
-
"nth": 24,
|
|
1337
|
-
"isVLEncoded": false,
|
|
1338
1156
|
"isSerialized": true,
|
|
1339
1157
|
"isSigningField": true,
|
|
1158
|
+
"isVLEncoded": false,
|
|
1159
|
+
"nth": 24,
|
|
1340
1160
|
"type": "Hash256"
|
|
1341
1161
|
}
|
|
1342
1162
|
],
|
|
1343
1163
|
[
|
|
1344
1164
|
"ValidatedHash",
|
|
1345
1165
|
{
|
|
1346
|
-
"nth": 25,
|
|
1347
|
-
"isVLEncoded": false,
|
|
1348
1166
|
"isSerialized": true,
|
|
1349
1167
|
"isSigningField": true,
|
|
1168
|
+
"isVLEncoded": false,
|
|
1169
|
+
"nth": 25,
|
|
1350
1170
|
"type": "Hash256"
|
|
1351
1171
|
}
|
|
1352
1172
|
],
|
|
1353
1173
|
[
|
|
1354
1174
|
"PreviousPageMin",
|
|
1355
1175
|
{
|
|
1356
|
-
"nth": 26,
|
|
1357
|
-
"isVLEncoded": false,
|
|
1358
1176
|
"isSerialized": true,
|
|
1359
1177
|
"isSigningField": true,
|
|
1178
|
+
"isVLEncoded": false,
|
|
1179
|
+
"nth": 26,
|
|
1360
1180
|
"type": "Hash256"
|
|
1361
1181
|
}
|
|
1362
1182
|
],
|
|
1363
1183
|
[
|
|
1364
1184
|
"NextPageMin",
|
|
1365
1185
|
{
|
|
1366
|
-
"nth": 27,
|
|
1367
|
-
"isVLEncoded": false,
|
|
1368
1186
|
"isSerialized": true,
|
|
1369
1187
|
"isSigningField": true,
|
|
1188
|
+
"isVLEncoded": false,
|
|
1189
|
+
"nth": 27,
|
|
1370
1190
|
"type": "Hash256"
|
|
1371
1191
|
}
|
|
1372
1192
|
],
|
|
1373
1193
|
[
|
|
1374
1194
|
"NFTokenBuyOffer",
|
|
1375
1195
|
{
|
|
1376
|
-
"nth": 28,
|
|
1377
|
-
"isVLEncoded": false,
|
|
1378
1196
|
"isSerialized": true,
|
|
1379
1197
|
"isSigningField": true,
|
|
1198
|
+
"isVLEncoded": false,
|
|
1199
|
+
"nth": 28,
|
|
1380
1200
|
"type": "Hash256"
|
|
1381
1201
|
}
|
|
1382
1202
|
],
|
|
1383
1203
|
[
|
|
1384
1204
|
"NFTokenSellOffer",
|
|
1385
1205
|
{
|
|
1386
|
-
"nth": 29,
|
|
1387
|
-
"isVLEncoded": false,
|
|
1388
1206
|
"isSerialized": true,
|
|
1389
1207
|
"isSigningField": true,
|
|
1208
|
+
"isVLEncoded": false,
|
|
1209
|
+
"nth": 29,
|
|
1390
1210
|
"type": "Hash256"
|
|
1391
1211
|
}
|
|
1392
1212
|
],
|
|
1393
1213
|
[
|
|
1394
1214
|
"HookStateKey",
|
|
1395
1215
|
{
|
|
1396
|
-
"nth": 30,
|
|
1397
|
-
"isVLEncoded": false,
|
|
1398
1216
|
"isSerialized": true,
|
|
1399
1217
|
"isSigningField": true,
|
|
1218
|
+
"isVLEncoded": false,
|
|
1219
|
+
"nth": 30,
|
|
1400
1220
|
"type": "Hash256"
|
|
1401
1221
|
}
|
|
1402
1222
|
],
|
|
1403
1223
|
[
|
|
1404
1224
|
"HookHash",
|
|
1405
1225
|
{
|
|
1406
|
-
"nth": 31,
|
|
1407
|
-
"isVLEncoded": false,
|
|
1408
1226
|
"isSerialized": true,
|
|
1409
1227
|
"isSigningField": true,
|
|
1228
|
+
"isVLEncoded": false,
|
|
1229
|
+
"nth": 31,
|
|
1410
1230
|
"type": "Hash256"
|
|
1411
1231
|
}
|
|
1412
1232
|
],
|
|
1413
1233
|
[
|
|
1414
1234
|
"HookNamespace",
|
|
1415
1235
|
{
|
|
1416
|
-
"nth": 32,
|
|
1417
|
-
"isVLEncoded": false,
|
|
1418
1236
|
"isSerialized": true,
|
|
1419
1237
|
"isSigningField": true,
|
|
1238
|
+
"isVLEncoded": false,
|
|
1239
|
+
"nth": 32,
|
|
1420
1240
|
"type": "Hash256"
|
|
1421
1241
|
}
|
|
1422
1242
|
],
|
|
1423
1243
|
[
|
|
1424
1244
|
"HookSetTxnID",
|
|
1425
1245
|
{
|
|
1246
|
+
"isSerialized": true,
|
|
1247
|
+
"isSigningField": true,
|
|
1248
|
+
"isVLEncoded": false,
|
|
1426
1249
|
"nth": 33,
|
|
1250
|
+
"type": "Hash256"
|
|
1251
|
+
}
|
|
1252
|
+
],
|
|
1253
|
+
[
|
|
1254
|
+
"DomainID",
|
|
1255
|
+
{
|
|
1256
|
+
"isSerialized": true,
|
|
1257
|
+
"isSigningField": true,
|
|
1427
1258
|
"isVLEncoded": false,
|
|
1259
|
+
"nth": 34,
|
|
1260
|
+
"type": "Hash256"
|
|
1261
|
+
}
|
|
1262
|
+
],
|
|
1263
|
+
[
|
|
1264
|
+
"ParentBatchID",
|
|
1265
|
+
{
|
|
1428
1266
|
"isSerialized": true,
|
|
1429
1267
|
"isSigningField": true,
|
|
1268
|
+
"isVLEncoded": false,
|
|
1269
|
+
"nth": 35,
|
|
1430
1270
|
"type": "Hash256"
|
|
1431
1271
|
}
|
|
1432
1272
|
],
|
|
1433
1273
|
[
|
|
1434
|
-
"
|
|
1274
|
+
"hash",
|
|
1435
1275
|
{
|
|
1436
|
-
"
|
|
1276
|
+
"isSerialized": false,
|
|
1277
|
+
"isSigningField": false,
|
|
1278
|
+
"isVLEncoded": false,
|
|
1279
|
+
"nth": 257,
|
|
1280
|
+
"type": "Hash256"
|
|
1281
|
+
}
|
|
1282
|
+
],
|
|
1283
|
+
[
|
|
1284
|
+
"index",
|
|
1285
|
+
{
|
|
1286
|
+
"isSerialized": false,
|
|
1287
|
+
"isSigningField": false,
|
|
1437
1288
|
"isVLEncoded": false,
|
|
1289
|
+
"nth": 258,
|
|
1290
|
+
"type": "Hash256"
|
|
1291
|
+
}
|
|
1292
|
+
],
|
|
1293
|
+
[
|
|
1294
|
+
"Amount",
|
|
1295
|
+
{
|
|
1438
1296
|
"isSerialized": true,
|
|
1439
1297
|
"isSigningField": true,
|
|
1298
|
+
"isVLEncoded": false,
|
|
1299
|
+
"nth": 1,
|
|
1440
1300
|
"type": "Amount"
|
|
1441
1301
|
}
|
|
1442
1302
|
],
|
|
1443
1303
|
[
|
|
1444
1304
|
"Balance",
|
|
1445
1305
|
{
|
|
1446
|
-
"nth": 2,
|
|
1447
|
-
"isVLEncoded": false,
|
|
1448
1306
|
"isSerialized": true,
|
|
1449
1307
|
"isSigningField": true,
|
|
1308
|
+
"isVLEncoded": false,
|
|
1309
|
+
"nth": 2,
|
|
1450
1310
|
"type": "Amount"
|
|
1451
1311
|
}
|
|
1452
1312
|
],
|
|
1453
1313
|
[
|
|
1454
1314
|
"LimitAmount",
|
|
1455
1315
|
{
|
|
1456
|
-
"nth": 3,
|
|
1457
|
-
"isVLEncoded": false,
|
|
1458
1316
|
"isSerialized": true,
|
|
1459
1317
|
"isSigningField": true,
|
|
1318
|
+
"isVLEncoded": false,
|
|
1319
|
+
"nth": 3,
|
|
1460
1320
|
"type": "Amount"
|
|
1461
1321
|
}
|
|
1462
1322
|
],
|
|
1463
1323
|
[
|
|
1464
1324
|
"TakerPays",
|
|
1465
1325
|
{
|
|
1466
|
-
"nth": 4,
|
|
1467
|
-
"isVLEncoded": false,
|
|
1468
1326
|
"isSerialized": true,
|
|
1469
1327
|
"isSigningField": true,
|
|
1328
|
+
"isVLEncoded": false,
|
|
1329
|
+
"nth": 4,
|
|
1470
1330
|
"type": "Amount"
|
|
1471
1331
|
}
|
|
1472
1332
|
],
|
|
1473
1333
|
[
|
|
1474
1334
|
"TakerGets",
|
|
1475
1335
|
{
|
|
1476
|
-
"nth": 5,
|
|
1477
|
-
"isVLEncoded": false,
|
|
1478
1336
|
"isSerialized": true,
|
|
1479
1337
|
"isSigningField": true,
|
|
1338
|
+
"isVLEncoded": false,
|
|
1339
|
+
"nth": 5,
|
|
1480
1340
|
"type": "Amount"
|
|
1481
1341
|
}
|
|
1482
1342
|
],
|
|
1483
1343
|
[
|
|
1484
1344
|
"LowLimit",
|
|
1485
1345
|
{
|
|
1486
|
-
"nth": 6,
|
|
1487
|
-
"isVLEncoded": false,
|
|
1488
1346
|
"isSerialized": true,
|
|
1489
1347
|
"isSigningField": true,
|
|
1348
|
+
"isVLEncoded": false,
|
|
1349
|
+
"nth": 6,
|
|
1490
1350
|
"type": "Amount"
|
|
1491
1351
|
}
|
|
1492
1352
|
],
|
|
1493
1353
|
[
|
|
1494
1354
|
"HighLimit",
|
|
1495
1355
|
{
|
|
1496
|
-
"nth": 7,
|
|
1497
|
-
"isVLEncoded": false,
|
|
1498
1356
|
"isSerialized": true,
|
|
1499
1357
|
"isSigningField": true,
|
|
1358
|
+
"isVLEncoded": false,
|
|
1359
|
+
"nth": 7,
|
|
1500
1360
|
"type": "Amount"
|
|
1501
1361
|
}
|
|
1502
1362
|
],
|
|
1503
1363
|
[
|
|
1504
1364
|
"Fee",
|
|
1505
1365
|
{
|
|
1506
|
-
"nth": 8,
|
|
1507
|
-
"isVLEncoded": false,
|
|
1508
1366
|
"isSerialized": true,
|
|
1509
1367
|
"isSigningField": true,
|
|
1368
|
+
"isVLEncoded": false,
|
|
1369
|
+
"nth": 8,
|
|
1510
1370
|
"type": "Amount"
|
|
1511
1371
|
}
|
|
1512
1372
|
],
|
|
1513
1373
|
[
|
|
1514
1374
|
"SendMax",
|
|
1515
1375
|
{
|
|
1516
|
-
"nth": 9,
|
|
1517
|
-
"isVLEncoded": false,
|
|
1518
1376
|
"isSerialized": true,
|
|
1519
1377
|
"isSigningField": true,
|
|
1378
|
+
"isVLEncoded": false,
|
|
1379
|
+
"nth": 9,
|
|
1520
1380
|
"type": "Amount"
|
|
1521
1381
|
}
|
|
1522
1382
|
],
|
|
1523
1383
|
[
|
|
1524
1384
|
"DeliverMin",
|
|
1525
1385
|
{
|
|
1526
|
-
"nth": 10,
|
|
1527
|
-
"isVLEncoded": false,
|
|
1528
1386
|
"isSerialized": true,
|
|
1529
1387
|
"isSigningField": true,
|
|
1388
|
+
"isVLEncoded": false,
|
|
1389
|
+
"nth": 10,
|
|
1530
1390
|
"type": "Amount"
|
|
1531
1391
|
}
|
|
1532
1392
|
],
|
|
1533
1393
|
[
|
|
1534
1394
|
"Amount2",
|
|
1535
1395
|
{
|
|
1536
|
-
"nth": 11,
|
|
1537
|
-
"isVLEncoded": false,
|
|
1538
1396
|
"isSerialized": true,
|
|
1539
1397
|
"isSigningField": true,
|
|
1398
|
+
"isVLEncoded": false,
|
|
1399
|
+
"nth": 11,
|
|
1540
1400
|
"type": "Amount"
|
|
1541
1401
|
}
|
|
1542
1402
|
],
|
|
1543
1403
|
[
|
|
1544
1404
|
"BidMin",
|
|
1545
1405
|
{
|
|
1546
|
-
"nth": 12,
|
|
1547
|
-
"isVLEncoded": false,
|
|
1548
1406
|
"isSerialized": true,
|
|
1549
1407
|
"isSigningField": true,
|
|
1408
|
+
"isVLEncoded": false,
|
|
1409
|
+
"nth": 12,
|
|
1550
1410
|
"type": "Amount"
|
|
1551
1411
|
}
|
|
1552
1412
|
],
|
|
1553
1413
|
[
|
|
1554
1414
|
"BidMax",
|
|
1555
1415
|
{
|
|
1556
|
-
"nth": 13,
|
|
1557
|
-
"isVLEncoded": false,
|
|
1558
1416
|
"isSerialized": true,
|
|
1559
1417
|
"isSigningField": true,
|
|
1418
|
+
"isVLEncoded": false,
|
|
1419
|
+
"nth": 13,
|
|
1560
1420
|
"type": "Amount"
|
|
1561
1421
|
}
|
|
1562
1422
|
],
|
|
1563
1423
|
[
|
|
1564
1424
|
"MinimumOffer",
|
|
1565
1425
|
{
|
|
1566
|
-
"nth": 16,
|
|
1567
|
-
"isVLEncoded": false,
|
|
1568
1426
|
"isSerialized": true,
|
|
1569
1427
|
"isSigningField": true,
|
|
1428
|
+
"isVLEncoded": false,
|
|
1429
|
+
"nth": 16,
|
|
1570
1430
|
"type": "Amount"
|
|
1571
1431
|
}
|
|
1572
1432
|
],
|
|
1573
1433
|
[
|
|
1574
1434
|
"RippleEscrow",
|
|
1575
1435
|
{
|
|
1576
|
-
"nth": 17,
|
|
1577
|
-
"isVLEncoded": false,
|
|
1578
1436
|
"isSerialized": true,
|
|
1579
1437
|
"isSigningField": true,
|
|
1438
|
+
"isVLEncoded": false,
|
|
1439
|
+
"nth": 17,
|
|
1580
1440
|
"type": "Amount"
|
|
1581
1441
|
}
|
|
1582
1442
|
],
|
|
1583
1443
|
[
|
|
1584
1444
|
"DeliveredAmount",
|
|
1585
1445
|
{
|
|
1586
|
-
"nth": 18,
|
|
1587
|
-
"isVLEncoded": false,
|
|
1588
1446
|
"isSerialized": true,
|
|
1589
1447
|
"isSigningField": true,
|
|
1448
|
+
"isVLEncoded": false,
|
|
1449
|
+
"nth": 18,
|
|
1590
1450
|
"type": "Amount"
|
|
1591
1451
|
}
|
|
1592
1452
|
],
|
|
1593
1453
|
[
|
|
1594
1454
|
"NFTokenBrokerFee",
|
|
1595
1455
|
{
|
|
1596
|
-
"nth": 19,
|
|
1597
|
-
"isVLEncoded": false,
|
|
1598
1456
|
"isSerialized": true,
|
|
1599
1457
|
"isSigningField": true,
|
|
1458
|
+
"isVLEncoded": false,
|
|
1459
|
+
"nth": 19,
|
|
1600
1460
|
"type": "Amount"
|
|
1601
1461
|
}
|
|
1602
1462
|
],
|
|
1603
1463
|
[
|
|
1604
1464
|
"BaseFeeDrops",
|
|
1605
1465
|
{
|
|
1606
|
-
"nth": 22,
|
|
1607
|
-
"isVLEncoded": false,
|
|
1608
1466
|
"isSerialized": true,
|
|
1609
1467
|
"isSigningField": true,
|
|
1468
|
+
"isVLEncoded": false,
|
|
1469
|
+
"nth": 22,
|
|
1610
1470
|
"type": "Amount"
|
|
1611
1471
|
}
|
|
1612
1472
|
],
|
|
1613
1473
|
[
|
|
1614
1474
|
"ReserveBaseDrops",
|
|
1615
1475
|
{
|
|
1616
|
-
"nth": 23,
|
|
1617
|
-
"isVLEncoded": false,
|
|
1618
1476
|
"isSerialized": true,
|
|
1619
1477
|
"isSigningField": true,
|
|
1478
|
+
"isVLEncoded": false,
|
|
1479
|
+
"nth": 23,
|
|
1620
1480
|
"type": "Amount"
|
|
1621
1481
|
}
|
|
1622
1482
|
],
|
|
1623
1483
|
[
|
|
1624
1484
|
"ReserveIncrementDrops",
|
|
1625
1485
|
{
|
|
1626
|
-
"nth": 24,
|
|
1627
|
-
"isVLEncoded": false,
|
|
1628
1486
|
"isSerialized": true,
|
|
1629
1487
|
"isSigningField": true,
|
|
1488
|
+
"isVLEncoded": false,
|
|
1489
|
+
"nth": 24,
|
|
1630
1490
|
"type": "Amount"
|
|
1631
1491
|
}
|
|
1632
1492
|
],
|
|
1633
1493
|
[
|
|
1634
1494
|
"LPTokenOut",
|
|
1635
1495
|
{
|
|
1636
|
-
"nth": 25,
|
|
1637
|
-
"isVLEncoded": false,
|
|
1638
1496
|
"isSerialized": true,
|
|
1639
1497
|
"isSigningField": true,
|
|
1498
|
+
"isVLEncoded": false,
|
|
1499
|
+
"nth": 25,
|
|
1640
1500
|
"type": "Amount"
|
|
1641
1501
|
}
|
|
1642
1502
|
],
|
|
1643
1503
|
[
|
|
1644
1504
|
"LPTokenIn",
|
|
1645
1505
|
{
|
|
1646
|
-
"nth": 26,
|
|
1647
|
-
"isVLEncoded": false,
|
|
1648
1506
|
"isSerialized": true,
|
|
1649
1507
|
"isSigningField": true,
|
|
1508
|
+
"isVLEncoded": false,
|
|
1509
|
+
"nth": 26,
|
|
1650
1510
|
"type": "Amount"
|
|
1651
1511
|
}
|
|
1652
1512
|
],
|
|
1653
1513
|
[
|
|
1654
1514
|
"EPrice",
|
|
1655
1515
|
{
|
|
1656
|
-
"nth": 27,
|
|
1657
|
-
"isVLEncoded": false,
|
|
1658
1516
|
"isSerialized": true,
|
|
1659
1517
|
"isSigningField": true,
|
|
1518
|
+
"isVLEncoded": false,
|
|
1519
|
+
"nth": 27,
|
|
1660
1520
|
"type": "Amount"
|
|
1661
1521
|
}
|
|
1662
1522
|
],
|
|
1663
1523
|
[
|
|
1664
1524
|
"Price",
|
|
1665
1525
|
{
|
|
1666
|
-
"nth": 28,
|
|
1667
|
-
"isVLEncoded": false,
|
|
1668
1526
|
"isSerialized": true,
|
|
1669
1527
|
"isSigningField": true,
|
|
1528
|
+
"isVLEncoded": false,
|
|
1529
|
+
"nth": 28,
|
|
1670
1530
|
"type": "Amount"
|
|
1671
1531
|
}
|
|
1672
1532
|
],
|
|
1673
1533
|
[
|
|
1674
1534
|
"SignatureReward",
|
|
1675
1535
|
{
|
|
1676
|
-
"nth": 29,
|
|
1677
|
-
"isVLEncoded": false,
|
|
1678
1536
|
"isSerialized": true,
|
|
1679
1537
|
"isSigningField": true,
|
|
1538
|
+
"isVLEncoded": false,
|
|
1539
|
+
"nth": 29,
|
|
1680
1540
|
"type": "Amount"
|
|
1681
1541
|
}
|
|
1682
1542
|
],
|
|
1683
1543
|
[
|
|
1684
1544
|
"MinAccountCreateAmount",
|
|
1685
1545
|
{
|
|
1686
|
-
"nth": 30,
|
|
1687
|
-
"isVLEncoded": false,
|
|
1688
1546
|
"isSerialized": true,
|
|
1689
1547
|
"isSigningField": true,
|
|
1548
|
+
"isVLEncoded": false,
|
|
1549
|
+
"nth": 30,
|
|
1690
1550
|
"type": "Amount"
|
|
1691
1551
|
}
|
|
1692
1552
|
],
|
|
1693
1553
|
[
|
|
1694
1554
|
"LPTokenBalance",
|
|
1695
1555
|
{
|
|
1696
|
-
"nth": 31,
|
|
1697
|
-
"isVLEncoded": false,
|
|
1698
1556
|
"isSerialized": true,
|
|
1699
1557
|
"isSigningField": true,
|
|
1558
|
+
"isVLEncoded": false,
|
|
1559
|
+
"nth": 31,
|
|
1700
1560
|
"type": "Amount"
|
|
1701
1561
|
}
|
|
1702
1562
|
],
|
|
1703
1563
|
[
|
|
1704
1564
|
"PublicKey",
|
|
1705
1565
|
{
|
|
1706
|
-
"nth": 1,
|
|
1707
|
-
"isVLEncoded": true,
|
|
1708
1566
|
"isSerialized": true,
|
|
1709
1567
|
"isSigningField": true,
|
|
1568
|
+
"isVLEncoded": true,
|
|
1569
|
+
"nth": 1,
|
|
1710
1570
|
"type": "Blob"
|
|
1711
1571
|
}
|
|
1712
1572
|
],
|
|
1713
1573
|
[
|
|
1714
1574
|
"MessageKey",
|
|
1715
1575
|
{
|
|
1716
|
-
"nth": 2,
|
|
1717
|
-
"isVLEncoded": true,
|
|
1718
1576
|
"isSerialized": true,
|
|
1719
1577
|
"isSigningField": true,
|
|
1578
|
+
"isVLEncoded": true,
|
|
1579
|
+
"nth": 2,
|
|
1720
1580
|
"type": "Blob"
|
|
1721
1581
|
}
|
|
1722
1582
|
],
|
|
1723
1583
|
[
|
|
1724
1584
|
"SigningPubKey",
|
|
1725
1585
|
{
|
|
1726
|
-
"nth": 3,
|
|
1727
|
-
"isVLEncoded": true,
|
|
1728
1586
|
"isSerialized": true,
|
|
1729
1587
|
"isSigningField": true,
|
|
1588
|
+
"isVLEncoded": true,
|
|
1589
|
+
"nth": 3,
|
|
1730
1590
|
"type": "Blob"
|
|
1731
1591
|
}
|
|
1732
1592
|
],
|
|
1733
1593
|
[
|
|
1734
1594
|
"TxnSignature",
|
|
1735
1595
|
{
|
|
1736
|
-
"nth": 4,
|
|
1737
|
-
"isVLEncoded": true,
|
|
1738
1596
|
"isSerialized": true,
|
|
1739
1597
|
"isSigningField": false,
|
|
1598
|
+
"isVLEncoded": true,
|
|
1599
|
+
"nth": 4,
|
|
1740
1600
|
"type": "Blob"
|
|
1741
1601
|
}
|
|
1742
1602
|
],
|
|
1743
1603
|
[
|
|
1744
1604
|
"URI",
|
|
1745
1605
|
{
|
|
1746
|
-
"nth": 5,
|
|
1747
|
-
"isVLEncoded": true,
|
|
1748
1606
|
"isSerialized": true,
|
|
1749
1607
|
"isSigningField": true,
|
|
1608
|
+
"isVLEncoded": true,
|
|
1609
|
+
"nth": 5,
|
|
1750
1610
|
"type": "Blob"
|
|
1751
1611
|
}
|
|
1752
1612
|
],
|
|
1753
1613
|
[
|
|
1754
1614
|
"Signature",
|
|
1755
1615
|
{
|
|
1756
|
-
"nth": 6,
|
|
1757
|
-
"isVLEncoded": true,
|
|
1758
1616
|
"isSerialized": true,
|
|
1759
1617
|
"isSigningField": false,
|
|
1618
|
+
"isVLEncoded": true,
|
|
1619
|
+
"nth": 6,
|
|
1760
1620
|
"type": "Blob"
|
|
1761
1621
|
}
|
|
1762
1622
|
],
|
|
1763
1623
|
[
|
|
1764
1624
|
"Domain",
|
|
1765
1625
|
{
|
|
1766
|
-
"nth": 7,
|
|
1767
|
-
"isVLEncoded": true,
|
|
1768
1626
|
"isSerialized": true,
|
|
1769
1627
|
"isSigningField": true,
|
|
1628
|
+
"isVLEncoded": true,
|
|
1629
|
+
"nth": 7,
|
|
1770
1630
|
"type": "Blob"
|
|
1771
1631
|
}
|
|
1772
1632
|
],
|
|
1773
1633
|
[
|
|
1774
1634
|
"FundCode",
|
|
1775
1635
|
{
|
|
1776
|
-
"nth": 8,
|
|
1777
|
-
"isVLEncoded": true,
|
|
1778
1636
|
"isSerialized": true,
|
|
1779
1637
|
"isSigningField": true,
|
|
1638
|
+
"isVLEncoded": true,
|
|
1639
|
+
"nth": 8,
|
|
1780
1640
|
"type": "Blob"
|
|
1781
1641
|
}
|
|
1782
1642
|
],
|
|
1783
1643
|
[
|
|
1784
1644
|
"RemoveCode",
|
|
1785
1645
|
{
|
|
1786
|
-
"nth": 9,
|
|
1787
|
-
"isVLEncoded": true,
|
|
1788
1646
|
"isSerialized": true,
|
|
1789
1647
|
"isSigningField": true,
|
|
1648
|
+
"isVLEncoded": true,
|
|
1649
|
+
"nth": 9,
|
|
1790
1650
|
"type": "Blob"
|
|
1791
1651
|
}
|
|
1792
1652
|
],
|
|
1793
1653
|
[
|
|
1794
1654
|
"ExpireCode",
|
|
1795
1655
|
{
|
|
1796
|
-
"nth": 10,
|
|
1797
|
-
"isVLEncoded": true,
|
|
1798
1656
|
"isSerialized": true,
|
|
1799
1657
|
"isSigningField": true,
|
|
1658
|
+
"isVLEncoded": true,
|
|
1659
|
+
"nth": 10,
|
|
1800
1660
|
"type": "Blob"
|
|
1801
1661
|
}
|
|
1802
1662
|
],
|
|
1803
1663
|
[
|
|
1804
1664
|
"CreateCode",
|
|
1805
1665
|
{
|
|
1806
|
-
"nth": 11,
|
|
1807
|
-
"isVLEncoded": true,
|
|
1808
1666
|
"isSerialized": true,
|
|
1809
1667
|
"isSigningField": true,
|
|
1668
|
+
"isVLEncoded": true,
|
|
1669
|
+
"nth": 11,
|
|
1810
1670
|
"type": "Blob"
|
|
1811
1671
|
}
|
|
1812
1672
|
],
|
|
1813
1673
|
[
|
|
1814
1674
|
"MemoType",
|
|
1815
1675
|
{
|
|
1816
|
-
"nth": 12,
|
|
1817
|
-
"isVLEncoded": true,
|
|
1818
1676
|
"isSerialized": true,
|
|
1819
1677
|
"isSigningField": true,
|
|
1678
|
+
"isVLEncoded": true,
|
|
1679
|
+
"nth": 12,
|
|
1820
1680
|
"type": "Blob"
|
|
1821
1681
|
}
|
|
1822
1682
|
],
|
|
1823
1683
|
[
|
|
1824
1684
|
"MemoData",
|
|
1825
1685
|
{
|
|
1826
|
-
"nth": 13,
|
|
1827
|
-
"isVLEncoded": true,
|
|
1828
1686
|
"isSerialized": true,
|
|
1829
1687
|
"isSigningField": true,
|
|
1688
|
+
"isVLEncoded": true,
|
|
1689
|
+
"nth": 13,
|
|
1830
1690
|
"type": "Blob"
|
|
1831
1691
|
}
|
|
1832
1692
|
],
|
|
1833
1693
|
[
|
|
1834
1694
|
"MemoFormat",
|
|
1835
1695
|
{
|
|
1836
|
-
"nth": 14,
|
|
1837
|
-
"isVLEncoded": true,
|
|
1838
1696
|
"isSerialized": true,
|
|
1839
1697
|
"isSigningField": true,
|
|
1698
|
+
"isVLEncoded": true,
|
|
1699
|
+
"nth": 14,
|
|
1840
1700
|
"type": "Blob"
|
|
1841
1701
|
}
|
|
1842
1702
|
],
|
|
1843
1703
|
[
|
|
1844
1704
|
"Fulfillment",
|
|
1845
1705
|
{
|
|
1846
|
-
"nth": 16,
|
|
1847
|
-
"isVLEncoded": true,
|
|
1848
1706
|
"isSerialized": true,
|
|
1849
1707
|
"isSigningField": true,
|
|
1708
|
+
"isVLEncoded": true,
|
|
1709
|
+
"nth": 16,
|
|
1850
1710
|
"type": "Blob"
|
|
1851
1711
|
}
|
|
1852
1712
|
],
|
|
1853
1713
|
[
|
|
1854
1714
|
"Condition",
|
|
1855
1715
|
{
|
|
1856
|
-
"nth": 17,
|
|
1857
|
-
"isVLEncoded": true,
|
|
1858
1716
|
"isSerialized": true,
|
|
1859
1717
|
"isSigningField": true,
|
|
1718
|
+
"isVLEncoded": true,
|
|
1719
|
+
"nth": 17,
|
|
1860
1720
|
"type": "Blob"
|
|
1861
1721
|
}
|
|
1862
1722
|
],
|
|
1863
1723
|
[
|
|
1864
1724
|
"MasterSignature",
|
|
1865
1725
|
{
|
|
1866
|
-
"nth": 18,
|
|
1867
|
-
"isVLEncoded": true,
|
|
1868
1726
|
"isSerialized": true,
|
|
1869
1727
|
"isSigningField": false,
|
|
1728
|
+
"isVLEncoded": true,
|
|
1729
|
+
"nth": 18,
|
|
1870
1730
|
"type": "Blob"
|
|
1871
1731
|
}
|
|
1872
1732
|
],
|
|
1873
1733
|
[
|
|
1874
1734
|
"UNLModifyValidator",
|
|
1875
1735
|
{
|
|
1876
|
-
"nth": 19,
|
|
1877
|
-
"isVLEncoded": true,
|
|
1878
1736
|
"isSerialized": true,
|
|
1879
1737
|
"isSigningField": true,
|
|
1738
|
+
"isVLEncoded": true,
|
|
1739
|
+
"nth": 19,
|
|
1880
1740
|
"type": "Blob"
|
|
1881
1741
|
}
|
|
1882
1742
|
],
|
|
1883
1743
|
[
|
|
1884
1744
|
"ValidatorToDisable",
|
|
1885
1745
|
{
|
|
1886
|
-
"nth": 20,
|
|
1887
|
-
"isVLEncoded": true,
|
|
1888
1746
|
"isSerialized": true,
|
|
1889
1747
|
"isSigningField": true,
|
|
1748
|
+
"isVLEncoded": true,
|
|
1749
|
+
"nth": 20,
|
|
1890
1750
|
"type": "Blob"
|
|
1891
1751
|
}
|
|
1892
1752
|
],
|
|
1893
1753
|
[
|
|
1894
1754
|
"ValidatorToReEnable",
|
|
1895
1755
|
{
|
|
1896
|
-
"nth": 21,
|
|
1897
|
-
"isVLEncoded": true,
|
|
1898
1756
|
"isSerialized": true,
|
|
1899
1757
|
"isSigningField": true,
|
|
1758
|
+
"isVLEncoded": true,
|
|
1759
|
+
"nth": 21,
|
|
1900
1760
|
"type": "Blob"
|
|
1901
1761
|
}
|
|
1902
1762
|
],
|
|
1903
1763
|
[
|
|
1904
1764
|
"HookStateData",
|
|
1905
1765
|
{
|
|
1906
|
-
"nth": 22,
|
|
1907
|
-
"isVLEncoded": true,
|
|
1908
1766
|
"isSerialized": true,
|
|
1909
1767
|
"isSigningField": true,
|
|
1768
|
+
"isVLEncoded": true,
|
|
1769
|
+
"nth": 22,
|
|
1910
1770
|
"type": "Blob"
|
|
1911
1771
|
}
|
|
1912
1772
|
],
|
|
1913
1773
|
[
|
|
1914
1774
|
"HookReturnString",
|
|
1915
1775
|
{
|
|
1916
|
-
"nth": 23,
|
|
1917
|
-
"isVLEncoded": true,
|
|
1918
1776
|
"isSerialized": true,
|
|
1919
1777
|
"isSigningField": true,
|
|
1778
|
+
"isVLEncoded": true,
|
|
1779
|
+
"nth": 23,
|
|
1920
1780
|
"type": "Blob"
|
|
1921
1781
|
}
|
|
1922
1782
|
],
|
|
1923
1783
|
[
|
|
1924
1784
|
"HookParameterName",
|
|
1925
1785
|
{
|
|
1926
|
-
"nth": 24,
|
|
1927
|
-
"isVLEncoded": true,
|
|
1928
1786
|
"isSerialized": true,
|
|
1929
1787
|
"isSigningField": true,
|
|
1788
|
+
"isVLEncoded": true,
|
|
1789
|
+
"nth": 24,
|
|
1930
1790
|
"type": "Blob"
|
|
1931
1791
|
}
|
|
1932
1792
|
],
|
|
1933
1793
|
[
|
|
1934
1794
|
"HookParameterValue",
|
|
1935
1795
|
{
|
|
1936
|
-
"nth": 25,
|
|
1937
|
-
"isVLEncoded": true,
|
|
1938
1796
|
"isSerialized": true,
|
|
1939
1797
|
"isSigningField": true,
|
|
1798
|
+
"isVLEncoded": true,
|
|
1799
|
+
"nth": 25,
|
|
1940
1800
|
"type": "Blob"
|
|
1941
1801
|
}
|
|
1942
1802
|
],
|
|
1943
1803
|
[
|
|
1944
1804
|
"DIDDocument",
|
|
1945
1805
|
{
|
|
1946
|
-
"nth": 26,
|
|
1947
|
-
"isVLEncoded": true,
|
|
1948
1806
|
"isSerialized": true,
|
|
1949
1807
|
"isSigningField": true,
|
|
1808
|
+
"isVLEncoded": true,
|
|
1809
|
+
"nth": 26,
|
|
1950
1810
|
"type": "Blob"
|
|
1951
1811
|
}
|
|
1952
1812
|
],
|
|
1953
1813
|
[
|
|
1954
1814
|
"Data",
|
|
1955
1815
|
{
|
|
1956
|
-
"nth": 27,
|
|
1957
|
-
"isVLEncoded": true,
|
|
1958
1816
|
"isSerialized": true,
|
|
1959
1817
|
"isSigningField": true,
|
|
1960
|
-
"
|
|
1818
|
+
"isVLEncoded": true,
|
|
1819
|
+
"nth": 27,
|
|
1820
|
+
"type": "Blob"
|
|
1961
1821
|
}
|
|
1962
1822
|
],
|
|
1963
1823
|
[
|
|
1964
1824
|
"AssetClass",
|
|
1965
1825
|
{
|
|
1966
|
-
"nth": 28,
|
|
1967
|
-
"isVLEncoded": true,
|
|
1968
1826
|
"isSerialized": true,
|
|
1969
1827
|
"isSigningField": true,
|
|
1828
|
+
"isVLEncoded": true,
|
|
1829
|
+
"nth": 28,
|
|
1970
1830
|
"type": "Blob"
|
|
1971
1831
|
}
|
|
1972
1832
|
],
|
|
1973
1833
|
[
|
|
1974
1834
|
"Provider",
|
|
1975
1835
|
{
|
|
1836
|
+
"isSerialized": true,
|
|
1837
|
+
"isSigningField": true,
|
|
1838
|
+
"isVLEncoded": true,
|
|
1976
1839
|
"nth": 29,
|
|
1840
|
+
"type": "Blob"
|
|
1841
|
+
}
|
|
1842
|
+
],
|
|
1843
|
+
[
|
|
1844
|
+
"MPTokenMetadata",
|
|
1845
|
+
{
|
|
1846
|
+
"isSerialized": true,
|
|
1847
|
+
"isSigningField": true,
|
|
1977
1848
|
"isVLEncoded": true,
|
|
1849
|
+
"nth": 30,
|
|
1850
|
+
"type": "Blob"
|
|
1851
|
+
}
|
|
1852
|
+
],
|
|
1853
|
+
[
|
|
1854
|
+
"CredentialType",
|
|
1855
|
+
{
|
|
1978
1856
|
"isSerialized": true,
|
|
1979
1857
|
"isSigningField": true,
|
|
1858
|
+
"isVLEncoded": true,
|
|
1859
|
+
"nth": 31,
|
|
1980
1860
|
"type": "Blob"
|
|
1981
1861
|
}
|
|
1982
1862
|
],
|
|
1983
1863
|
[
|
|
1984
1864
|
"Account",
|
|
1985
1865
|
{
|
|
1986
|
-
"nth": 1,
|
|
1987
|
-
"isVLEncoded": true,
|
|
1988
1866
|
"isSerialized": true,
|
|
1989
1867
|
"isSigningField": true,
|
|
1868
|
+
"isVLEncoded": true,
|
|
1869
|
+
"nth": 1,
|
|
1990
1870
|
"type": "AccountID"
|
|
1991
1871
|
}
|
|
1992
1872
|
],
|
|
1993
1873
|
[
|
|
1994
1874
|
"Owner",
|
|
1995
1875
|
{
|
|
1996
|
-
"nth": 2,
|
|
1997
|
-
"isVLEncoded": true,
|
|
1998
1876
|
"isSerialized": true,
|
|
1999
1877
|
"isSigningField": true,
|
|
1878
|
+
"isVLEncoded": true,
|
|
1879
|
+
"nth": 2,
|
|
2000
1880
|
"type": "AccountID"
|
|
2001
1881
|
}
|
|
2002
1882
|
],
|
|
2003
1883
|
[
|
|
2004
1884
|
"Destination",
|
|
2005
1885
|
{
|
|
2006
|
-
"nth": 3,
|
|
2007
|
-
"isVLEncoded": true,
|
|
2008
1886
|
"isSerialized": true,
|
|
2009
1887
|
"isSigningField": true,
|
|
1888
|
+
"isVLEncoded": true,
|
|
1889
|
+
"nth": 3,
|
|
2010
1890
|
"type": "AccountID"
|
|
2011
1891
|
}
|
|
2012
1892
|
],
|
|
2013
1893
|
[
|
|
2014
1894
|
"Issuer",
|
|
2015
1895
|
{
|
|
2016
|
-
"nth": 4,
|
|
2017
|
-
"isVLEncoded": true,
|
|
2018
1896
|
"isSerialized": true,
|
|
2019
1897
|
"isSigningField": true,
|
|
1898
|
+
"isVLEncoded": true,
|
|
1899
|
+
"nth": 4,
|
|
2020
1900
|
"type": "AccountID"
|
|
2021
1901
|
}
|
|
2022
1902
|
],
|
|
2023
1903
|
[
|
|
2024
1904
|
"Authorize",
|
|
2025
1905
|
{
|
|
2026
|
-
"nth": 5,
|
|
2027
|
-
"isVLEncoded": true,
|
|
2028
1906
|
"isSerialized": true,
|
|
2029
1907
|
"isSigningField": true,
|
|
1908
|
+
"isVLEncoded": true,
|
|
1909
|
+
"nth": 5,
|
|
2030
1910
|
"type": "AccountID"
|
|
2031
1911
|
}
|
|
2032
1912
|
],
|
|
2033
1913
|
[
|
|
2034
1914
|
"Unauthorize",
|
|
2035
1915
|
{
|
|
2036
|
-
"nth": 6,
|
|
2037
|
-
"isVLEncoded": true,
|
|
2038
1916
|
"isSerialized": true,
|
|
2039
1917
|
"isSigningField": true,
|
|
1918
|
+
"isVLEncoded": true,
|
|
1919
|
+
"nth": 6,
|
|
2040
1920
|
"type": "AccountID"
|
|
2041
1921
|
}
|
|
2042
1922
|
],
|
|
2043
1923
|
[
|
|
2044
1924
|
"RegularKey",
|
|
2045
1925
|
{
|
|
2046
|
-
"nth": 8,
|
|
2047
|
-
"isVLEncoded": true,
|
|
2048
1926
|
"isSerialized": true,
|
|
2049
1927
|
"isSigningField": true,
|
|
1928
|
+
"isVLEncoded": true,
|
|
1929
|
+
"nth": 8,
|
|
2050
1930
|
"type": "AccountID"
|
|
2051
1931
|
}
|
|
2052
1932
|
],
|
|
2053
1933
|
[
|
|
2054
1934
|
"NFTokenMinter",
|
|
2055
1935
|
{
|
|
2056
|
-
"nth": 9,
|
|
2057
|
-
"isVLEncoded": true,
|
|
2058
1936
|
"isSerialized": true,
|
|
2059
1937
|
"isSigningField": true,
|
|
1938
|
+
"isVLEncoded": true,
|
|
1939
|
+
"nth": 9,
|
|
2060
1940
|
"type": "AccountID"
|
|
2061
1941
|
}
|
|
2062
1942
|
],
|
|
2063
1943
|
[
|
|
2064
1944
|
"EmitCallback",
|
|
2065
1945
|
{
|
|
2066
|
-
"
|
|
1946
|
+
"isSerialized": true,
|
|
1947
|
+
"isSigningField": true,
|
|
2067
1948
|
"isVLEncoded": true,
|
|
1949
|
+
"nth": 10,
|
|
1950
|
+
"type": "AccountID"
|
|
1951
|
+
}
|
|
1952
|
+
],
|
|
1953
|
+
[
|
|
1954
|
+
"Holder",
|
|
1955
|
+
{
|
|
2068
1956
|
"isSerialized": true,
|
|
2069
1957
|
"isSigningField": true,
|
|
1958
|
+
"isVLEncoded": true,
|
|
1959
|
+
"nth": 11,
|
|
2070
1960
|
"type": "AccountID"
|
|
2071
1961
|
}
|
|
2072
1962
|
],
|
|
2073
1963
|
[
|
|
2074
1964
|
"HookAccount",
|
|
2075
1965
|
{
|
|
2076
|
-
"nth": 16,
|
|
2077
|
-
"isVLEncoded": true,
|
|
2078
1966
|
"isSerialized": true,
|
|
2079
1967
|
"isSigningField": true,
|
|
1968
|
+
"isVLEncoded": true,
|
|
1969
|
+
"nth": 16,
|
|
2080
1970
|
"type": "AccountID"
|
|
2081
1971
|
}
|
|
2082
1972
|
],
|
|
2083
1973
|
[
|
|
2084
1974
|
"OtherChainSource",
|
|
2085
1975
|
{
|
|
2086
|
-
"nth": 18,
|
|
2087
|
-
"isVLEncoded": true,
|
|
2088
1976
|
"isSerialized": true,
|
|
2089
1977
|
"isSigningField": true,
|
|
1978
|
+
"isVLEncoded": true,
|
|
1979
|
+
"nth": 18,
|
|
2090
1980
|
"type": "AccountID"
|
|
2091
1981
|
}
|
|
2092
1982
|
],
|
|
2093
1983
|
[
|
|
2094
1984
|
"OtherChainDestination",
|
|
2095
1985
|
{
|
|
2096
|
-
"nth": 19,
|
|
2097
|
-
"isVLEncoded": true,
|
|
2098
1986
|
"isSerialized": true,
|
|
2099
1987
|
"isSigningField": true,
|
|
1988
|
+
"isVLEncoded": true,
|
|
1989
|
+
"nth": 19,
|
|
2100
1990
|
"type": "AccountID"
|
|
2101
1991
|
}
|
|
2102
1992
|
],
|
|
2103
1993
|
[
|
|
2104
1994
|
"AttestationSignerAccount",
|
|
2105
1995
|
{
|
|
2106
|
-
"nth": 20,
|
|
2107
|
-
"isVLEncoded": true,
|
|
2108
1996
|
"isSerialized": true,
|
|
2109
1997
|
"isSigningField": true,
|
|
1998
|
+
"isVLEncoded": true,
|
|
1999
|
+
"nth": 20,
|
|
2110
2000
|
"type": "AccountID"
|
|
2111
2001
|
}
|
|
2112
2002
|
],
|
|
2113
2003
|
[
|
|
2114
2004
|
"AttestationRewardAccount",
|
|
2115
2005
|
{
|
|
2116
|
-
"nth": 21,
|
|
2117
|
-
"isVLEncoded": true,
|
|
2118
2006
|
"isSerialized": true,
|
|
2119
2007
|
"isSigningField": true,
|
|
2008
|
+
"isVLEncoded": true,
|
|
2009
|
+
"nth": 21,
|
|
2120
2010
|
"type": "AccountID"
|
|
2121
2011
|
}
|
|
2122
2012
|
],
|
|
2123
2013
|
[
|
|
2124
2014
|
"LockingChainDoor",
|
|
2125
2015
|
{
|
|
2126
|
-
"nth": 22,
|
|
2127
|
-
"isVLEncoded": true,
|
|
2128
2016
|
"isSerialized": true,
|
|
2129
2017
|
"isSigningField": true,
|
|
2018
|
+
"isVLEncoded": true,
|
|
2019
|
+
"nth": 22,
|
|
2130
2020
|
"type": "AccountID"
|
|
2131
2021
|
}
|
|
2132
2022
|
],
|
|
2133
2023
|
[
|
|
2134
2024
|
"IssuingChainDoor",
|
|
2135
2025
|
{
|
|
2136
|
-
"nth": 23,
|
|
2137
|
-
"isVLEncoded": true,
|
|
2138
2026
|
"isSerialized": true,
|
|
2139
2027
|
"isSigningField": true,
|
|
2028
|
+
"isVLEncoded": true,
|
|
2029
|
+
"nth": 23,
|
|
2140
2030
|
"type": "AccountID"
|
|
2141
2031
|
}
|
|
2142
2032
|
],
|
|
2143
2033
|
[
|
|
2144
|
-
"
|
|
2034
|
+
"Subject",
|
|
2145
2035
|
{
|
|
2146
|
-
"nth": 1,
|
|
2147
|
-
"isVLEncoded": true,
|
|
2148
2036
|
"isSerialized": true,
|
|
2149
2037
|
"isSigningField": true,
|
|
2150
|
-
"
|
|
2038
|
+
"isVLEncoded": true,
|
|
2039
|
+
"nth": 24,
|
|
2040
|
+
"type": "AccountID"
|
|
2151
2041
|
}
|
|
2152
2042
|
],
|
|
2153
2043
|
[
|
|
2154
|
-
"
|
|
2044
|
+
"Number",
|
|
2155
2045
|
{
|
|
2156
|
-
"nth": 2,
|
|
2157
|
-
"isVLEncoded": true,
|
|
2158
2046
|
"isSerialized": true,
|
|
2159
2047
|
"isSigningField": true,
|
|
2160
|
-
"
|
|
2048
|
+
"isVLEncoded": false,
|
|
2049
|
+
"nth": 1,
|
|
2050
|
+
"type": "Number"
|
|
2161
2051
|
}
|
|
2162
2052
|
],
|
|
2163
2053
|
[
|
|
2164
|
-
"
|
|
2054
|
+
"TransactionMetaData",
|
|
2165
2055
|
{
|
|
2166
|
-
"nth": 3,
|
|
2167
|
-
"isVLEncoded": true,
|
|
2168
2056
|
"isSerialized": true,
|
|
2169
2057
|
"isSigningField": true,
|
|
2170
|
-
"
|
|
2058
|
+
"isVLEncoded": false,
|
|
2059
|
+
"nth": 2,
|
|
2060
|
+
"type": "STObject"
|
|
2171
2061
|
}
|
|
2172
2062
|
],
|
|
2173
2063
|
[
|
|
2174
|
-
"
|
|
2064
|
+
"CreatedNode",
|
|
2175
2065
|
{
|
|
2176
|
-
"nth": 4,
|
|
2177
|
-
"isVLEncoded": true,
|
|
2178
2066
|
"isSerialized": true,
|
|
2179
2067
|
"isSigningField": true,
|
|
2180
|
-
"
|
|
2068
|
+
"isVLEncoded": false,
|
|
2069
|
+
"nth": 3,
|
|
2070
|
+
"type": "STObject"
|
|
2181
2071
|
}
|
|
2182
2072
|
],
|
|
2183
2073
|
[
|
|
2184
|
-
"
|
|
2074
|
+
"DeletedNode",
|
|
2185
2075
|
{
|
|
2186
|
-
"nth": 1,
|
|
2187
|
-
"isVLEncoded": false,
|
|
2188
2076
|
"isSerialized": true,
|
|
2189
2077
|
"isSigningField": true,
|
|
2190
|
-
"
|
|
2078
|
+
"isVLEncoded": false,
|
|
2079
|
+
"nth": 4,
|
|
2080
|
+
"type": "STObject"
|
|
2191
2081
|
}
|
|
2192
2082
|
],
|
|
2193
2083
|
[
|
|
2194
|
-
"
|
|
2084
|
+
"ModifiedNode",
|
|
2195
2085
|
{
|
|
2196
|
-
"nth": 1,
|
|
2197
|
-
"isVLEncoded": false,
|
|
2198
2086
|
"isSerialized": true,
|
|
2199
2087
|
"isSigningField": true,
|
|
2200
|
-
"
|
|
2088
|
+
"isVLEncoded": false,
|
|
2089
|
+
"nth": 5,
|
|
2090
|
+
"type": "STObject"
|
|
2201
2091
|
}
|
|
2202
2092
|
],
|
|
2203
2093
|
[
|
|
2204
|
-
"
|
|
2094
|
+
"PreviousFields",
|
|
2205
2095
|
{
|
|
2206
|
-
"nth": 2,
|
|
2207
|
-
"isVLEncoded": false,
|
|
2208
2096
|
"isSerialized": true,
|
|
2209
2097
|
"isSigningField": true,
|
|
2210
|
-
"
|
|
2098
|
+
"isVLEncoded": false,
|
|
2099
|
+
"nth": 6,
|
|
2100
|
+
"type": "STObject"
|
|
2211
2101
|
}
|
|
2212
2102
|
],
|
|
2213
2103
|
[
|
|
2214
|
-
"
|
|
2104
|
+
"FinalFields",
|
|
2215
2105
|
{
|
|
2216
|
-
"nth": 1,
|
|
2217
|
-
"isVLEncoded": false,
|
|
2218
2106
|
"isSerialized": true,
|
|
2219
2107
|
"isSigningField": true,
|
|
2220
|
-
"
|
|
2108
|
+
"isVLEncoded": false,
|
|
2109
|
+
"nth": 7,
|
|
2110
|
+
"type": "STObject"
|
|
2221
2111
|
}
|
|
2222
2112
|
],
|
|
2223
2113
|
[
|
|
2224
|
-
"
|
|
2114
|
+
"NewFields",
|
|
2225
2115
|
{
|
|
2226
|
-
"nth": 2,
|
|
2227
|
-
"isVLEncoded": false,
|
|
2228
2116
|
"isSerialized": true,
|
|
2229
2117
|
"isSigningField": true,
|
|
2230
|
-
"
|
|
2118
|
+
"isVLEncoded": false,
|
|
2119
|
+
"nth": 8,
|
|
2120
|
+
"type": "STObject"
|
|
2231
2121
|
}
|
|
2232
2122
|
],
|
|
2233
2123
|
[
|
|
2234
|
-
"
|
|
2124
|
+
"TemplateEntry",
|
|
2235
2125
|
{
|
|
2236
|
-
"nth": 3,
|
|
2237
|
-
"isVLEncoded": false,
|
|
2238
2126
|
"isSerialized": true,
|
|
2239
2127
|
"isSigningField": true,
|
|
2240
|
-
"
|
|
2128
|
+
"isVLEncoded": false,
|
|
2129
|
+
"nth": 9,
|
|
2130
|
+
"type": "STObject"
|
|
2241
2131
|
}
|
|
2242
2132
|
],
|
|
2243
2133
|
[
|
|
2244
|
-
"
|
|
2134
|
+
"Memo",
|
|
2245
2135
|
{
|
|
2246
|
-
"nth": 4,
|
|
2247
|
-
"isVLEncoded": false,
|
|
2248
2136
|
"isSerialized": true,
|
|
2249
2137
|
"isSigningField": true,
|
|
2250
|
-
"
|
|
2138
|
+
"isVLEncoded": false,
|
|
2139
|
+
"nth": 10,
|
|
2140
|
+
"type": "STObject"
|
|
2251
2141
|
}
|
|
2252
2142
|
],
|
|
2253
2143
|
[
|
|
2254
|
-
"
|
|
2144
|
+
"SignerEntry",
|
|
2255
2145
|
{
|
|
2256
|
-
"nth": 1,
|
|
2257
|
-
"isVLEncoded": false,
|
|
2258
2146
|
"isSerialized": true,
|
|
2259
2147
|
"isSigningField": true,
|
|
2260
|
-
"
|
|
2148
|
+
"isVLEncoded": false,
|
|
2149
|
+
"nth": 11,
|
|
2150
|
+
"type": "STObject"
|
|
2261
2151
|
}
|
|
2262
2152
|
],
|
|
2263
2153
|
[
|
|
2264
|
-
"
|
|
2154
|
+
"NFToken",
|
|
2265
2155
|
{
|
|
2266
|
-
"nth": 2,
|
|
2267
|
-
"isVLEncoded": false,
|
|
2268
2156
|
"isSerialized": true,
|
|
2269
2157
|
"isSigningField": true,
|
|
2158
|
+
"isVLEncoded": false,
|
|
2159
|
+
"nth": 12,
|
|
2270
2160
|
"type": "STObject"
|
|
2271
2161
|
}
|
|
2272
2162
|
],
|
|
2273
2163
|
[
|
|
2274
|
-
"
|
|
2164
|
+
"EmitDetails",
|
|
2275
2165
|
{
|
|
2276
|
-
"nth": 3,
|
|
2277
|
-
"isVLEncoded": false,
|
|
2278
2166
|
"isSerialized": true,
|
|
2279
2167
|
"isSigningField": true,
|
|
2168
|
+
"isVLEncoded": false,
|
|
2169
|
+
"nth": 13,
|
|
2280
2170
|
"type": "STObject"
|
|
2281
2171
|
}
|
|
2282
2172
|
],
|
|
2283
2173
|
[
|
|
2284
|
-
"
|
|
2174
|
+
"Hook",
|
|
2285
2175
|
{
|
|
2286
|
-
"nth": 4,
|
|
2287
|
-
"isVLEncoded": false,
|
|
2288
2176
|
"isSerialized": true,
|
|
2289
2177
|
"isSigningField": true,
|
|
2178
|
+
"isVLEncoded": false,
|
|
2179
|
+
"nth": 14,
|
|
2290
2180
|
"type": "STObject"
|
|
2291
2181
|
}
|
|
2292
2182
|
],
|
|
2293
2183
|
[
|
|
2294
|
-
"
|
|
2184
|
+
"Signer",
|
|
2295
2185
|
{
|
|
2296
|
-
"nth": 5,
|
|
2297
|
-
"isVLEncoded": false,
|
|
2298
2186
|
"isSerialized": true,
|
|
2299
2187
|
"isSigningField": true,
|
|
2188
|
+
"isVLEncoded": false,
|
|
2189
|
+
"nth": 16,
|
|
2300
2190
|
"type": "STObject"
|
|
2301
2191
|
}
|
|
2302
2192
|
],
|
|
2303
2193
|
[
|
|
2304
|
-
"
|
|
2194
|
+
"Majority",
|
|
2305
2195
|
{
|
|
2306
|
-
"nth": 6,
|
|
2307
|
-
"isVLEncoded": false,
|
|
2308
2196
|
"isSerialized": true,
|
|
2309
2197
|
"isSigningField": true,
|
|
2198
|
+
"isVLEncoded": false,
|
|
2199
|
+
"nth": 18,
|
|
2310
2200
|
"type": "STObject"
|
|
2311
2201
|
}
|
|
2312
2202
|
],
|
|
2313
2203
|
[
|
|
2314
|
-
"
|
|
2204
|
+
"DisabledValidator",
|
|
2315
2205
|
{
|
|
2316
|
-
"nth": 7,
|
|
2317
|
-
"isVLEncoded": false,
|
|
2318
2206
|
"isSerialized": true,
|
|
2319
2207
|
"isSigningField": true,
|
|
2208
|
+
"isVLEncoded": false,
|
|
2209
|
+
"nth": 19,
|
|
2320
2210
|
"type": "STObject"
|
|
2321
2211
|
}
|
|
2322
2212
|
],
|
|
2323
2213
|
[
|
|
2324
|
-
"
|
|
2214
|
+
"EmittedTxn",
|
|
2325
2215
|
{
|
|
2326
|
-
"nth": 8,
|
|
2327
|
-
"isVLEncoded": false,
|
|
2328
2216
|
"isSerialized": true,
|
|
2329
2217
|
"isSigningField": true,
|
|
2218
|
+
"isVLEncoded": false,
|
|
2219
|
+
"nth": 20,
|
|
2330
2220
|
"type": "STObject"
|
|
2331
2221
|
}
|
|
2332
2222
|
],
|
|
2333
2223
|
[
|
|
2334
|
-
"
|
|
2224
|
+
"HookExecution",
|
|
2335
2225
|
{
|
|
2336
|
-
"nth": 9,
|
|
2337
|
-
"isVLEncoded": false,
|
|
2338
2226
|
"isSerialized": true,
|
|
2339
2227
|
"isSigningField": true,
|
|
2228
|
+
"isVLEncoded": false,
|
|
2229
|
+
"nth": 21,
|
|
2340
2230
|
"type": "STObject"
|
|
2341
2231
|
}
|
|
2342
2232
|
],
|
|
2343
2233
|
[
|
|
2344
|
-
"
|
|
2234
|
+
"HookDefinition",
|
|
2345
2235
|
{
|
|
2346
|
-
"nth": 10,
|
|
2347
|
-
"isVLEncoded": false,
|
|
2348
2236
|
"isSerialized": true,
|
|
2349
2237
|
"isSigningField": true,
|
|
2238
|
+
"isVLEncoded": false,
|
|
2239
|
+
"nth": 22,
|
|
2350
2240
|
"type": "STObject"
|
|
2351
2241
|
}
|
|
2352
2242
|
],
|
|
2353
2243
|
[
|
|
2354
|
-
"
|
|
2244
|
+
"HookParameter",
|
|
2355
2245
|
{
|
|
2356
|
-
"nth": 11,
|
|
2357
|
-
"isVLEncoded": false,
|
|
2358
2246
|
"isSerialized": true,
|
|
2359
2247
|
"isSigningField": true,
|
|
2248
|
+
"isVLEncoded": false,
|
|
2249
|
+
"nth": 23,
|
|
2360
2250
|
"type": "STObject"
|
|
2361
2251
|
}
|
|
2362
2252
|
],
|
|
2363
2253
|
[
|
|
2364
|
-
"
|
|
2254
|
+
"HookGrant",
|
|
2365
2255
|
{
|
|
2366
|
-
"nth": 12,
|
|
2367
|
-
"isVLEncoded": false,
|
|
2368
2256
|
"isSerialized": true,
|
|
2369
2257
|
"isSigningField": true,
|
|
2258
|
+
"isVLEncoded": false,
|
|
2259
|
+
"nth": 24,
|
|
2370
2260
|
"type": "STObject"
|
|
2371
2261
|
}
|
|
2372
2262
|
],
|
|
2373
2263
|
[
|
|
2374
|
-
"
|
|
2264
|
+
"VoteEntry",
|
|
2375
2265
|
{
|
|
2376
|
-
"nth": 13,
|
|
2377
|
-
"isVLEncoded": false,
|
|
2378
2266
|
"isSerialized": true,
|
|
2379
2267
|
"isSigningField": true,
|
|
2268
|
+
"isVLEncoded": false,
|
|
2269
|
+
"nth": 25,
|
|
2380
2270
|
"type": "STObject"
|
|
2381
2271
|
}
|
|
2382
2272
|
],
|
|
2383
2273
|
[
|
|
2384
|
-
"
|
|
2274
|
+
"AuctionSlot",
|
|
2385
2275
|
{
|
|
2386
|
-
"nth": 14,
|
|
2387
|
-
"isVLEncoded": false,
|
|
2388
2276
|
"isSerialized": true,
|
|
2389
2277
|
"isSigningField": true,
|
|
2278
|
+
"isVLEncoded": false,
|
|
2279
|
+
"nth": 26,
|
|
2390
2280
|
"type": "STObject"
|
|
2391
2281
|
}
|
|
2392
2282
|
],
|
|
2393
2283
|
[
|
|
2394
|
-
"
|
|
2284
|
+
"AuthAccount",
|
|
2395
2285
|
{
|
|
2396
|
-
"nth": 16,
|
|
2397
|
-
"isVLEncoded": false,
|
|
2398
2286
|
"isSerialized": true,
|
|
2399
2287
|
"isSigningField": true,
|
|
2288
|
+
"isVLEncoded": false,
|
|
2289
|
+
"nth": 27,
|
|
2400
2290
|
"type": "STObject"
|
|
2401
2291
|
}
|
|
2402
2292
|
],
|
|
2403
2293
|
[
|
|
2404
|
-
"
|
|
2294
|
+
"XChainClaimProofSig",
|
|
2405
2295
|
{
|
|
2406
|
-
"nth": 18,
|
|
2407
|
-
"isVLEncoded": false,
|
|
2408
2296
|
"isSerialized": true,
|
|
2409
2297
|
"isSigningField": true,
|
|
2298
|
+
"isVLEncoded": false,
|
|
2299
|
+
"nth": 28,
|
|
2410
2300
|
"type": "STObject"
|
|
2411
2301
|
}
|
|
2412
2302
|
],
|
|
2413
2303
|
[
|
|
2414
|
-
"
|
|
2304
|
+
"XChainCreateAccountProofSig",
|
|
2415
2305
|
{
|
|
2416
|
-
"nth": 19,
|
|
2417
|
-
"isVLEncoded": false,
|
|
2418
2306
|
"isSerialized": true,
|
|
2419
2307
|
"isSigningField": true,
|
|
2308
|
+
"isVLEncoded": false,
|
|
2309
|
+
"nth": 29,
|
|
2420
2310
|
"type": "STObject"
|
|
2421
2311
|
}
|
|
2422
2312
|
],
|
|
2423
2313
|
[
|
|
2424
|
-
"
|
|
2314
|
+
"XChainClaimAttestationCollectionElement",
|
|
2425
2315
|
{
|
|
2426
|
-
"nth": 20,
|
|
2427
|
-
"isVLEncoded": false,
|
|
2428
2316
|
"isSerialized": true,
|
|
2429
2317
|
"isSigningField": true,
|
|
2318
|
+
"isVLEncoded": false,
|
|
2319
|
+
"nth": 30,
|
|
2430
2320
|
"type": "STObject"
|
|
2431
2321
|
}
|
|
2432
2322
|
],
|
|
2433
2323
|
[
|
|
2434
|
-
"
|
|
2324
|
+
"XChainCreateAccountAttestationCollectionElement",
|
|
2435
2325
|
{
|
|
2436
|
-
"nth": 21,
|
|
2437
|
-
"isVLEncoded": false,
|
|
2438
2326
|
"isSerialized": true,
|
|
2439
2327
|
"isSigningField": true,
|
|
2328
|
+
"isVLEncoded": false,
|
|
2329
|
+
"nth": 31,
|
|
2440
2330
|
"type": "STObject"
|
|
2441
2331
|
}
|
|
2442
2332
|
],
|
|
2443
2333
|
[
|
|
2444
|
-
"
|
|
2334
|
+
"PriceData",
|
|
2445
2335
|
{
|
|
2446
|
-
"nth": 22,
|
|
2447
|
-
"isVLEncoded": false,
|
|
2448
2336
|
"isSerialized": true,
|
|
2449
2337
|
"isSigningField": true,
|
|
2338
|
+
"isVLEncoded": false,
|
|
2339
|
+
"nth": 32,
|
|
2450
2340
|
"type": "STObject"
|
|
2451
2341
|
}
|
|
2452
2342
|
],
|
|
2453
2343
|
[
|
|
2454
|
-
"
|
|
2344
|
+
"Credential",
|
|
2455
2345
|
{
|
|
2456
|
-
"nth": 23,
|
|
2457
|
-
"isVLEncoded": false,
|
|
2458
2346
|
"isSerialized": true,
|
|
2459
2347
|
"isSigningField": true,
|
|
2348
|
+
"isVLEncoded": false,
|
|
2349
|
+
"nth": 33,
|
|
2460
2350
|
"type": "STObject"
|
|
2461
2351
|
}
|
|
2462
2352
|
],
|
|
2463
2353
|
[
|
|
2464
|
-
"
|
|
2354
|
+
"RawTransaction",
|
|
2465
2355
|
{
|
|
2466
|
-
"nth": 24,
|
|
2467
|
-
"isVLEncoded": false,
|
|
2468
2356
|
"isSerialized": true,
|
|
2469
2357
|
"isSigningField": true,
|
|
2358
|
+
"isVLEncoded": false,
|
|
2359
|
+
"nth": 34,
|
|
2470
2360
|
"type": "STObject"
|
|
2471
2361
|
}
|
|
2472
2362
|
],
|
|
2473
2363
|
[
|
|
2474
|
-
"
|
|
2364
|
+
"BatchSigner",
|
|
2475
2365
|
{
|
|
2476
|
-
"nth": 25,
|
|
2477
|
-
"isVLEncoded": false,
|
|
2478
2366
|
"isSerialized": true,
|
|
2479
2367
|
"isSigningField": true,
|
|
2368
|
+
"isVLEncoded": false,
|
|
2369
|
+
"nth": 35,
|
|
2480
2370
|
"type": "STObject"
|
|
2481
2371
|
}
|
|
2482
2372
|
],
|
|
2483
2373
|
[
|
|
2484
|
-
"
|
|
2374
|
+
"Signers",
|
|
2485
2375
|
{
|
|
2486
|
-
"nth": 26,
|
|
2487
|
-
"isVLEncoded": false,
|
|
2488
2376
|
"isSerialized": true,
|
|
2489
|
-
"isSigningField":
|
|
2490
|
-
"
|
|
2377
|
+
"isSigningField": false,
|
|
2378
|
+
"isVLEncoded": false,
|
|
2379
|
+
"nth": 3,
|
|
2380
|
+
"type": "STArray"
|
|
2491
2381
|
}
|
|
2492
2382
|
],
|
|
2493
2383
|
[
|
|
2494
|
-
"
|
|
2384
|
+
"SignerEntries",
|
|
2495
2385
|
{
|
|
2496
|
-
"nth": 27,
|
|
2497
|
-
"isVLEncoded": false,
|
|
2498
2386
|
"isSerialized": true,
|
|
2499
2387
|
"isSigningField": true,
|
|
2500
|
-
"
|
|
2388
|
+
"isVLEncoded": false,
|
|
2389
|
+
"nth": 4,
|
|
2390
|
+
"type": "STArray"
|
|
2501
2391
|
}
|
|
2502
2392
|
],
|
|
2503
2393
|
[
|
|
2504
|
-
"
|
|
2394
|
+
"Template",
|
|
2505
2395
|
{
|
|
2506
|
-
"nth": 28,
|
|
2507
|
-
"isVLEncoded": false,
|
|
2508
2396
|
"isSerialized": true,
|
|
2509
2397
|
"isSigningField": true,
|
|
2510
|
-
"
|
|
2398
|
+
"isVLEncoded": false,
|
|
2399
|
+
"nth": 5,
|
|
2400
|
+
"type": "STArray"
|
|
2511
2401
|
}
|
|
2512
2402
|
],
|
|
2513
2403
|
[
|
|
2514
|
-
"
|
|
2404
|
+
"Necessary",
|
|
2515
2405
|
{
|
|
2516
|
-
"nth": 29,
|
|
2517
|
-
"isVLEncoded": false,
|
|
2518
2406
|
"isSerialized": true,
|
|
2519
2407
|
"isSigningField": true,
|
|
2520
|
-
"
|
|
2408
|
+
"isVLEncoded": false,
|
|
2409
|
+
"nth": 6,
|
|
2410
|
+
"type": "STArray"
|
|
2521
2411
|
}
|
|
2522
2412
|
],
|
|
2523
2413
|
[
|
|
2524
|
-
"
|
|
2414
|
+
"Sufficient",
|
|
2525
2415
|
{
|
|
2526
|
-
"nth": 30,
|
|
2527
|
-
"isVLEncoded": false,
|
|
2528
2416
|
"isSerialized": true,
|
|
2529
2417
|
"isSigningField": true,
|
|
2530
|
-
"
|
|
2418
|
+
"isVLEncoded": false,
|
|
2419
|
+
"nth": 7,
|
|
2420
|
+
"type": "STArray"
|
|
2531
2421
|
}
|
|
2532
2422
|
],
|
|
2533
2423
|
[
|
|
2534
|
-
"
|
|
2424
|
+
"AffectedNodes",
|
|
2535
2425
|
{
|
|
2536
|
-
"nth": 31,
|
|
2537
|
-
"isVLEncoded": false,
|
|
2538
2426
|
"isSerialized": true,
|
|
2539
2427
|
"isSigningField": true,
|
|
2540
|
-
"
|
|
2428
|
+
"isVLEncoded": false,
|
|
2429
|
+
"nth": 8,
|
|
2430
|
+
"type": "STArray"
|
|
2541
2431
|
}
|
|
2542
2432
|
],
|
|
2543
2433
|
[
|
|
2544
|
-
"
|
|
2434
|
+
"Memos",
|
|
2545
2435
|
{
|
|
2546
|
-
"nth": 32,
|
|
2547
|
-
"isVLEncoded": false,
|
|
2548
2436
|
"isSerialized": true,
|
|
2549
2437
|
"isSigningField": true,
|
|
2550
|
-
"
|
|
2438
|
+
"isVLEncoded": false,
|
|
2439
|
+
"nth": 9,
|
|
2440
|
+
"type": "STArray"
|
|
2551
2441
|
}
|
|
2552
2442
|
],
|
|
2553
2443
|
[
|
|
2554
|
-
"
|
|
2444
|
+
"NFTokens",
|
|
2555
2445
|
{
|
|
2556
|
-
"nth": 3,
|
|
2557
|
-
"isVLEncoded": false,
|
|
2558
2446
|
"isSerialized": true,
|
|
2559
|
-
"isSigningField":
|
|
2447
|
+
"isSigningField": true,
|
|
2448
|
+
"isVLEncoded": false,
|
|
2449
|
+
"nth": 10,
|
|
2560
2450
|
"type": "STArray"
|
|
2561
2451
|
}
|
|
2562
2452
|
],
|
|
2563
2453
|
[
|
|
2564
|
-
"
|
|
2454
|
+
"Hooks",
|
|
2565
2455
|
{
|
|
2566
|
-
"nth": 4,
|
|
2567
|
-
"isVLEncoded": false,
|
|
2568
2456
|
"isSerialized": true,
|
|
2569
2457
|
"isSigningField": true,
|
|
2458
|
+
"isVLEncoded": false,
|
|
2459
|
+
"nth": 11,
|
|
2570
2460
|
"type": "STArray"
|
|
2571
2461
|
}
|
|
2572
2462
|
],
|
|
2573
2463
|
[
|
|
2574
|
-
"
|
|
2464
|
+
"VoteSlots",
|
|
2575
2465
|
{
|
|
2576
|
-
"nth": 5,
|
|
2577
|
-
"isVLEncoded": false,
|
|
2578
2466
|
"isSerialized": true,
|
|
2579
2467
|
"isSigningField": true,
|
|
2468
|
+
"isVLEncoded": false,
|
|
2469
|
+
"nth": 12,
|
|
2580
2470
|
"type": "STArray"
|
|
2581
2471
|
}
|
|
2582
2472
|
],
|
|
2583
2473
|
[
|
|
2584
|
-
"
|
|
2474
|
+
"Majorities",
|
|
2585
2475
|
{
|
|
2586
|
-
"nth": 6,
|
|
2587
|
-
"isVLEncoded": false,
|
|
2588
2476
|
"isSerialized": true,
|
|
2589
2477
|
"isSigningField": true,
|
|
2478
|
+
"isVLEncoded": false,
|
|
2479
|
+
"nth": 16,
|
|
2590
2480
|
"type": "STArray"
|
|
2591
2481
|
}
|
|
2592
2482
|
],
|
|
2593
2483
|
[
|
|
2594
|
-
"
|
|
2484
|
+
"DisabledValidators",
|
|
2595
2485
|
{
|
|
2596
|
-
"nth": 7,
|
|
2597
|
-
"isVLEncoded": false,
|
|
2598
2486
|
"isSerialized": true,
|
|
2599
2487
|
"isSigningField": true,
|
|
2488
|
+
"isVLEncoded": false,
|
|
2489
|
+
"nth": 17,
|
|
2600
2490
|
"type": "STArray"
|
|
2601
2491
|
}
|
|
2602
2492
|
],
|
|
2603
2493
|
[
|
|
2604
|
-
"
|
|
2494
|
+
"HookExecutions",
|
|
2605
2495
|
{
|
|
2606
|
-
"nth": 8,
|
|
2607
|
-
"isVLEncoded": false,
|
|
2608
2496
|
"isSerialized": true,
|
|
2609
2497
|
"isSigningField": true,
|
|
2498
|
+
"isVLEncoded": false,
|
|
2499
|
+
"nth": 18,
|
|
2610
2500
|
"type": "STArray"
|
|
2611
2501
|
}
|
|
2612
2502
|
],
|
|
2613
2503
|
[
|
|
2614
|
-
"
|
|
2504
|
+
"HookParameters",
|
|
2615
2505
|
{
|
|
2616
|
-
"nth": 9,
|
|
2617
|
-
"isVLEncoded": false,
|
|
2618
2506
|
"isSerialized": true,
|
|
2619
2507
|
"isSigningField": true,
|
|
2508
|
+
"isVLEncoded": false,
|
|
2509
|
+
"nth": 19,
|
|
2620
2510
|
"type": "STArray"
|
|
2621
2511
|
}
|
|
2622
2512
|
],
|
|
2623
2513
|
[
|
|
2624
|
-
"
|
|
2514
|
+
"HookGrants",
|
|
2625
2515
|
{
|
|
2626
|
-
"nth": 10,
|
|
2627
|
-
"isVLEncoded": false,
|
|
2628
2516
|
"isSerialized": true,
|
|
2629
2517
|
"isSigningField": true,
|
|
2518
|
+
"isVLEncoded": false,
|
|
2519
|
+
"nth": 20,
|
|
2630
2520
|
"type": "STArray"
|
|
2631
2521
|
}
|
|
2632
2522
|
],
|
|
2633
2523
|
[
|
|
2634
|
-
"
|
|
2524
|
+
"XChainClaimAttestations",
|
|
2635
2525
|
{
|
|
2636
|
-
"nth": 11,
|
|
2637
|
-
"isVLEncoded": false,
|
|
2638
2526
|
"isSerialized": true,
|
|
2639
2527
|
"isSigningField": true,
|
|
2528
|
+
"isVLEncoded": false,
|
|
2529
|
+
"nth": 21,
|
|
2640
2530
|
"type": "STArray"
|
|
2641
2531
|
}
|
|
2642
2532
|
],
|
|
2643
2533
|
[
|
|
2644
|
-
"
|
|
2534
|
+
"XChainCreateAccountAttestations",
|
|
2645
2535
|
{
|
|
2646
|
-
"nth": 12,
|
|
2647
|
-
"isVLEncoded": false,
|
|
2648
2536
|
"isSerialized": true,
|
|
2649
2537
|
"isSigningField": true,
|
|
2538
|
+
"isVLEncoded": false,
|
|
2539
|
+
"nth": 22,
|
|
2650
2540
|
"type": "STArray"
|
|
2651
2541
|
}
|
|
2652
2542
|
],
|
|
2653
2543
|
[
|
|
2654
|
-
"
|
|
2544
|
+
"PriceDataSeries",
|
|
2655
2545
|
{
|
|
2656
|
-
"nth": 16,
|
|
2657
|
-
"isVLEncoded": false,
|
|
2658
2546
|
"isSerialized": true,
|
|
2659
2547
|
"isSigningField": true,
|
|
2548
|
+
"isVLEncoded": false,
|
|
2549
|
+
"nth": 24,
|
|
2660
2550
|
"type": "STArray"
|
|
2661
2551
|
}
|
|
2662
2552
|
],
|
|
2663
2553
|
[
|
|
2664
|
-
"
|
|
2554
|
+
"AuthAccounts",
|
|
2665
2555
|
{
|
|
2666
|
-
"nth": 17,
|
|
2667
|
-
"isVLEncoded": false,
|
|
2668
2556
|
"isSerialized": true,
|
|
2669
2557
|
"isSigningField": true,
|
|
2558
|
+
"isVLEncoded": false,
|
|
2559
|
+
"nth": 25,
|
|
2670
2560
|
"type": "STArray"
|
|
2671
2561
|
}
|
|
2672
2562
|
],
|
|
2673
2563
|
[
|
|
2674
|
-
"
|
|
2564
|
+
"AuthorizeCredentials",
|
|
2675
2565
|
{
|
|
2676
|
-
"nth": 18,
|
|
2677
|
-
"isVLEncoded": false,
|
|
2678
2566
|
"isSerialized": true,
|
|
2679
2567
|
"isSigningField": true,
|
|
2568
|
+
"isVLEncoded": false,
|
|
2569
|
+
"nth": 26,
|
|
2680
2570
|
"type": "STArray"
|
|
2681
2571
|
}
|
|
2682
2572
|
],
|
|
2683
2573
|
[
|
|
2684
|
-
"
|
|
2574
|
+
"UnauthorizeCredentials",
|
|
2685
2575
|
{
|
|
2686
|
-
"nth": 19,
|
|
2687
|
-
"isVLEncoded": false,
|
|
2688
2576
|
"isSerialized": true,
|
|
2689
2577
|
"isSigningField": true,
|
|
2578
|
+
"isVLEncoded": false,
|
|
2579
|
+
"nth": 27,
|
|
2690
2580
|
"type": "STArray"
|
|
2691
2581
|
}
|
|
2692
2582
|
],
|
|
2693
2583
|
[
|
|
2694
|
-
"
|
|
2584
|
+
"AcceptedCredentials",
|
|
2695
2585
|
{
|
|
2696
|
-
"nth": 20,
|
|
2697
|
-
"isVLEncoded": false,
|
|
2698
2586
|
"isSerialized": true,
|
|
2699
2587
|
"isSigningField": true,
|
|
2588
|
+
"isVLEncoded": false,
|
|
2589
|
+
"nth": 28,
|
|
2700
2590
|
"type": "STArray"
|
|
2701
2591
|
}
|
|
2702
2592
|
],
|
|
2703
2593
|
[
|
|
2704
|
-
"
|
|
2594
|
+
"RawTransactions",
|
|
2705
2595
|
{
|
|
2706
|
-
"nth": 21,
|
|
2707
|
-
"isVLEncoded": false,
|
|
2708
2596
|
"isSerialized": true,
|
|
2709
2597
|
"isSigningField": true,
|
|
2598
|
+
"isVLEncoded": false,
|
|
2599
|
+
"nth": 29,
|
|
2710
2600
|
"type": "STArray"
|
|
2711
2601
|
}
|
|
2712
2602
|
],
|
|
2713
2603
|
[
|
|
2714
|
-
"
|
|
2604
|
+
"BatchSigners",
|
|
2715
2605
|
{
|
|
2716
|
-
"nth": 22,
|
|
2717
|
-
"isVLEncoded": false,
|
|
2718
2606
|
"isSerialized": true,
|
|
2719
|
-
"isSigningField":
|
|
2607
|
+
"isSigningField": false,
|
|
2608
|
+
"isVLEncoded": false,
|
|
2609
|
+
"nth": 30,
|
|
2720
2610
|
"type": "STArray"
|
|
2721
2611
|
}
|
|
2722
2612
|
],
|
|
2723
2613
|
[
|
|
2724
|
-
"
|
|
2614
|
+
"CloseResolution",
|
|
2725
2615
|
{
|
|
2726
|
-
"
|
|
2616
|
+
"isSerialized": true,
|
|
2617
|
+
"isSigningField": true,
|
|
2727
2618
|
"isVLEncoded": false,
|
|
2619
|
+
"nth": 1,
|
|
2620
|
+
"type": "UInt8"
|
|
2621
|
+
}
|
|
2622
|
+
],
|
|
2623
|
+
[
|
|
2624
|
+
"Method",
|
|
2625
|
+
{
|
|
2728
2626
|
"isSerialized": true,
|
|
2729
2627
|
"isSigningField": true,
|
|
2730
|
-
"
|
|
2628
|
+
"isVLEncoded": false,
|
|
2629
|
+
"nth": 2,
|
|
2630
|
+
"type": "UInt8"
|
|
2731
2631
|
}
|
|
2732
2632
|
],
|
|
2733
2633
|
[
|
|
2734
|
-
"
|
|
2634
|
+
"TransactionResult",
|
|
2735
2635
|
{
|
|
2736
|
-
"
|
|
2636
|
+
"isSerialized": true,
|
|
2637
|
+
"isSigningField": true,
|
|
2737
2638
|
"isVLEncoded": false,
|
|
2639
|
+
"nth": 3,
|
|
2640
|
+
"type": "UInt8"
|
|
2641
|
+
}
|
|
2642
|
+
],
|
|
2643
|
+
[
|
|
2644
|
+
"Scale",
|
|
2645
|
+
{
|
|
2738
2646
|
"isSerialized": true,
|
|
2739
2647
|
"isSigningField": true,
|
|
2740
|
-
"
|
|
2648
|
+
"isVLEncoded": false,
|
|
2649
|
+
"nth": 4,
|
|
2650
|
+
"type": "UInt8"
|
|
2741
2651
|
}
|
|
2742
|
-
]
|
|
2743
|
-
|
|
2744
|
-
|
|
2745
|
-
|
|
2652
|
+
],
|
|
2653
|
+
[
|
|
2654
|
+
"AssetScale",
|
|
2655
|
+
{
|
|
2656
|
+
"isSerialized": true,
|
|
2657
|
+
"isSigningField": true,
|
|
2658
|
+
"isVLEncoded": false,
|
|
2659
|
+
"nth": 5,
|
|
2660
|
+
"type": "UInt8"
|
|
2661
|
+
}
|
|
2662
|
+
],
|
|
2663
|
+
[
|
|
2664
|
+
"TickSize",
|
|
2665
|
+
{
|
|
2666
|
+
"isSerialized": true,
|
|
2667
|
+
"isSigningField": true,
|
|
2668
|
+
"isVLEncoded": false,
|
|
2669
|
+
"nth": 16,
|
|
2670
|
+
"type": "UInt8"
|
|
2671
|
+
}
|
|
2672
|
+
],
|
|
2673
|
+
[
|
|
2674
|
+
"UNLModifyDisabling",
|
|
2675
|
+
{
|
|
2676
|
+
"isSerialized": true,
|
|
2677
|
+
"isSigningField": true,
|
|
2678
|
+
"isVLEncoded": false,
|
|
2679
|
+
"nth": 17,
|
|
2680
|
+
"type": "UInt8"
|
|
2681
|
+
}
|
|
2682
|
+
],
|
|
2683
|
+
[
|
|
2684
|
+
"HookResult",
|
|
2685
|
+
{
|
|
2686
|
+
"isSerialized": true,
|
|
2687
|
+
"isSigningField": true,
|
|
2688
|
+
"isVLEncoded": false,
|
|
2689
|
+
"nth": 18,
|
|
2690
|
+
"type": "UInt8"
|
|
2691
|
+
}
|
|
2692
|
+
],
|
|
2693
|
+
[
|
|
2694
|
+
"WasLockingChainSend",
|
|
2695
|
+
{
|
|
2696
|
+
"isSerialized": true,
|
|
2697
|
+
"isSigningField": true,
|
|
2698
|
+
"isVLEncoded": false,
|
|
2699
|
+
"nth": 19,
|
|
2700
|
+
"type": "UInt8"
|
|
2701
|
+
}
|
|
2702
|
+
],
|
|
2703
|
+
[
|
|
2704
|
+
"TakerPaysCurrency",
|
|
2705
|
+
{
|
|
2706
|
+
"isSerialized": true,
|
|
2707
|
+
"isSigningField": true,
|
|
2708
|
+
"isVLEncoded": false,
|
|
2709
|
+
"nth": 1,
|
|
2710
|
+
"type": "Hash160"
|
|
2711
|
+
}
|
|
2712
|
+
],
|
|
2713
|
+
[
|
|
2714
|
+
"TakerPaysIssuer",
|
|
2715
|
+
{
|
|
2716
|
+
"isSerialized": true,
|
|
2717
|
+
"isSigningField": true,
|
|
2718
|
+
"isVLEncoded": false,
|
|
2719
|
+
"nth": 2,
|
|
2720
|
+
"type": "Hash160"
|
|
2721
|
+
}
|
|
2722
|
+
],
|
|
2723
|
+
[
|
|
2724
|
+
"TakerGetsCurrency",
|
|
2725
|
+
{
|
|
2726
|
+
"isSerialized": true,
|
|
2727
|
+
"isSigningField": true,
|
|
2728
|
+
"isVLEncoded": false,
|
|
2729
|
+
"nth": 3,
|
|
2730
|
+
"type": "Hash160"
|
|
2731
|
+
}
|
|
2732
|
+
],
|
|
2733
|
+
[
|
|
2734
|
+
"TakerGetsIssuer",
|
|
2735
|
+
{
|
|
2736
|
+
"isSerialized": true,
|
|
2737
|
+
"isSigningField": true,
|
|
2738
|
+
"isVLEncoded": false,
|
|
2739
|
+
"nth": 4,
|
|
2740
|
+
"type": "Hash160"
|
|
2741
|
+
}
|
|
2742
|
+
],
|
|
2743
|
+
[
|
|
2744
|
+
"Paths",
|
|
2745
|
+
{
|
|
2746
|
+
"isSerialized": true,
|
|
2747
|
+
"isSigningField": true,
|
|
2748
|
+
"isVLEncoded": false,
|
|
2749
|
+
"nth": 1,
|
|
2750
|
+
"type": "PathSet"
|
|
2751
|
+
}
|
|
2752
|
+
],
|
|
2753
|
+
[
|
|
2754
|
+
"Indexes",
|
|
2755
|
+
{
|
|
2756
|
+
"isSerialized": true,
|
|
2757
|
+
"isSigningField": true,
|
|
2758
|
+
"isVLEncoded": true,
|
|
2759
|
+
"nth": 1,
|
|
2760
|
+
"type": "Vector256"
|
|
2761
|
+
}
|
|
2762
|
+
],
|
|
2763
|
+
[
|
|
2764
|
+
"Hashes",
|
|
2765
|
+
{
|
|
2766
|
+
"isSerialized": true,
|
|
2767
|
+
"isSigningField": true,
|
|
2768
|
+
"isVLEncoded": true,
|
|
2769
|
+
"nth": 2,
|
|
2770
|
+
"type": "Vector256"
|
|
2771
|
+
}
|
|
2772
|
+
],
|
|
2773
|
+
[
|
|
2774
|
+
"Amendments",
|
|
2775
|
+
{
|
|
2776
|
+
"isSerialized": true,
|
|
2777
|
+
"isSigningField": true,
|
|
2778
|
+
"isVLEncoded": true,
|
|
2779
|
+
"nth": 3,
|
|
2780
|
+
"type": "Vector256"
|
|
2781
|
+
}
|
|
2782
|
+
],
|
|
2783
|
+
[
|
|
2784
|
+
"NFTokenOffers",
|
|
2785
|
+
{
|
|
2786
|
+
"isSerialized": true,
|
|
2787
|
+
"isSigningField": true,
|
|
2788
|
+
"isVLEncoded": true,
|
|
2789
|
+
"nth": 4,
|
|
2790
|
+
"type": "Vector256"
|
|
2791
|
+
}
|
|
2792
|
+
],
|
|
2793
|
+
[
|
|
2794
|
+
"CredentialIDs",
|
|
2795
|
+
{
|
|
2796
|
+
"isSerialized": true,
|
|
2797
|
+
"isSigningField": true,
|
|
2798
|
+
"isVLEncoded": true,
|
|
2799
|
+
"nth": 5,
|
|
2800
|
+
"type": "Vector256"
|
|
2801
|
+
}
|
|
2802
|
+
],
|
|
2803
|
+
[
|
|
2804
|
+
"MPTokenIssuanceID",
|
|
2805
|
+
{
|
|
2806
|
+
"isSerialized": true,
|
|
2807
|
+
"isSigningField": true,
|
|
2808
|
+
"isVLEncoded": false,
|
|
2809
|
+
"nth": 1,
|
|
2810
|
+
"type": "Hash192"
|
|
2811
|
+
}
|
|
2812
|
+
],
|
|
2813
|
+
[
|
|
2814
|
+
"LockingChainIssue",
|
|
2815
|
+
{
|
|
2816
|
+
"isSerialized": true,
|
|
2817
|
+
"isSigningField": true,
|
|
2818
|
+
"isVLEncoded": false,
|
|
2819
|
+
"nth": 1,
|
|
2820
|
+
"type": "Issue"
|
|
2821
|
+
}
|
|
2822
|
+
],
|
|
2823
|
+
[
|
|
2824
|
+
"IssuingChainIssue",
|
|
2825
|
+
{
|
|
2826
|
+
"isSerialized": true,
|
|
2827
|
+
"isSigningField": true,
|
|
2828
|
+
"isVLEncoded": false,
|
|
2829
|
+
"nth": 2,
|
|
2830
|
+
"type": "Issue"
|
|
2831
|
+
}
|
|
2832
|
+
],
|
|
2833
|
+
[
|
|
2834
|
+
"Asset",
|
|
2835
|
+
{
|
|
2836
|
+
"isSerialized": true,
|
|
2837
|
+
"isSigningField": true,
|
|
2838
|
+
"isVLEncoded": false,
|
|
2839
|
+
"nth": 3,
|
|
2840
|
+
"type": "Issue"
|
|
2841
|
+
}
|
|
2842
|
+
],
|
|
2843
|
+
[
|
|
2844
|
+
"Asset2",
|
|
2845
|
+
{
|
|
2846
|
+
"isSerialized": true,
|
|
2847
|
+
"isSigningField": true,
|
|
2848
|
+
"isVLEncoded": false,
|
|
2849
|
+
"nth": 4,
|
|
2850
|
+
"type": "Issue"
|
|
2851
|
+
}
|
|
2852
|
+
],
|
|
2853
|
+
[
|
|
2854
|
+
"XChainBridge",
|
|
2855
|
+
{
|
|
2856
|
+
"isSerialized": true,
|
|
2857
|
+
"isSigningField": true,
|
|
2858
|
+
"isVLEncoded": false,
|
|
2859
|
+
"nth": 1,
|
|
2860
|
+
"type": "XChainBridge"
|
|
2861
|
+
}
|
|
2862
|
+
],
|
|
2863
|
+
[
|
|
2864
|
+
"BaseAsset",
|
|
2865
|
+
{
|
|
2866
|
+
"isSerialized": true,
|
|
2867
|
+
"isSigningField": true,
|
|
2868
|
+
"isVLEncoded": false,
|
|
2869
|
+
"nth": 1,
|
|
2870
|
+
"type": "Currency"
|
|
2871
|
+
}
|
|
2872
|
+
],
|
|
2873
|
+
[
|
|
2874
|
+
"QuoteAsset",
|
|
2875
|
+
{
|
|
2876
|
+
"isSerialized": true,
|
|
2877
|
+
"isSigningField": true,
|
|
2878
|
+
"isVLEncoded": false,
|
|
2879
|
+
"nth": 2,
|
|
2880
|
+
"type": "Currency"
|
|
2881
|
+
}
|
|
2882
|
+
],
|
|
2883
|
+
[
|
|
2884
|
+
"Transaction",
|
|
2885
|
+
{
|
|
2886
|
+
"isSerialized": false,
|
|
2887
|
+
"isSigningField": false,
|
|
2888
|
+
"isVLEncoded": false,
|
|
2889
|
+
"nth": 257,
|
|
2890
|
+
"type": "Transaction"
|
|
2891
|
+
}
|
|
2892
|
+
],
|
|
2893
|
+
[
|
|
2894
|
+
"LedgerEntry",
|
|
2895
|
+
{
|
|
2896
|
+
"isSerialized": false,
|
|
2897
|
+
"isSigningField": false,
|
|
2898
|
+
"isVLEncoded": false,
|
|
2899
|
+
"nth": 257,
|
|
2900
|
+
"type": "LedgerEntry"
|
|
2901
|
+
}
|
|
2902
|
+
],
|
|
2903
|
+
[
|
|
2904
|
+
"Validation",
|
|
2905
|
+
{
|
|
2906
|
+
"isSerialized": false,
|
|
2907
|
+
"isSigningField": false,
|
|
2908
|
+
"isVLEncoded": false,
|
|
2909
|
+
"nth": 257,
|
|
2910
|
+
"type": "Validation"
|
|
2911
|
+
}
|
|
2912
|
+
],
|
|
2913
|
+
[
|
|
2914
|
+
"Metadata",
|
|
2915
|
+
{
|
|
2916
|
+
"isSerialized": false,
|
|
2917
|
+
"isSigningField": false,
|
|
2918
|
+
"isVLEncoded": false,
|
|
2919
|
+
"nth": 257,
|
|
2920
|
+
"type": "Metadata"
|
|
2921
|
+
}
|
|
2922
|
+
]
|
|
2923
|
+
],
|
|
2924
|
+
"LEDGER_ENTRY_TYPES": {
|
|
2925
|
+
"AMM": 121,
|
|
2926
|
+
"AccountRoot": 97,
|
|
2927
|
+
"Amendments": 102,
|
|
2928
|
+
"Bridge": 105,
|
|
2929
|
+
"Check": 67,
|
|
2930
|
+
"Credential": 129,
|
|
2931
|
+
"DID": 73,
|
|
2932
|
+
"DepositPreauth": 112,
|
|
2933
|
+
"DirectoryNode": 100,
|
|
2934
|
+
"Escrow": 117,
|
|
2935
|
+
"FeeSettings": 115,
|
|
2936
|
+
"Invalid": -1,
|
|
2937
|
+
"LedgerHashes": 104,
|
|
2938
|
+
"MPToken": 127,
|
|
2939
|
+
"MPTokenIssuance": 126,
|
|
2940
|
+
"NFTokenOffer": 55,
|
|
2941
|
+
"NFTokenPage": 80,
|
|
2942
|
+
"NegativeUNL": 78,
|
|
2943
|
+
"Offer": 111,
|
|
2944
|
+
"Oracle": 128,
|
|
2945
|
+
"PayChannel": 120,
|
|
2946
|
+
"PermissionedDomain": 130,
|
|
2947
|
+
"RippleState": 114,
|
|
2948
|
+
"SignerList": 83,
|
|
2949
|
+
"Ticket": 84,
|
|
2950
|
+
"XChainOwnedClaimID": 113,
|
|
2951
|
+
"XChainOwnedCreateAccountClaimID": 116
|
|
2952
|
+
},
|
|
2953
|
+
"TRANSACTION_RESULTS": {
|
|
2954
|
+
"tecAMM_ACCOUNT": 168,
|
|
2955
|
+
"tecAMM_BALANCE": 163,
|
|
2956
|
+
"tecAMM_EMPTY": 166,
|
|
2957
|
+
"tecAMM_FAILED": 164,
|
|
2958
|
+
"tecAMM_INVALID_TOKENS": 165,
|
|
2959
|
+
"tecAMM_NOT_EMPTY": 167,
|
|
2960
|
+
"tecARRAY_EMPTY": 190,
|
|
2961
|
+
"tecARRAY_TOO_LARGE": 191,
|
|
2962
|
+
"tecBAD_CREDENTIALS": 193,
|
|
2963
|
+
"tecCANT_ACCEPT_OWN_NFTOKEN_OFFER": 158,
|
|
2964
|
+
"tecCLAIM": 100,
|
|
2965
|
+
"tecCRYPTOCONDITION_ERROR": 146,
|
|
2966
|
+
"tecDIR_FULL": 121,
|
|
2967
|
+
"tecDST_TAG_NEEDED": 143,
|
|
2968
|
+
"tecDUPLICATE": 149,
|
|
2969
|
+
"tecEMPTY_DID": 187,
|
|
2970
|
+
"tecEXPIRED": 148,
|
|
2971
|
+
"tecFAILED_PROCESSING": 105,
|
|
2972
|
+
"tecFROZEN": 137,
|
|
2973
|
+
"tecHAS_OBLIGATIONS": 151,
|
|
2974
|
+
"tecHOOK_REJECTED": 153,
|
|
2975
|
+
"tecINCOMPLETE": 169,
|
|
2976
|
+
"tecINSUFFICIENT_FUNDS": 159,
|
|
2977
|
+
"tecINSUFFICIENT_PAYMENT": 161,
|
|
2978
|
+
"tecINSUFFICIENT_RESERVE": 141,
|
|
2979
|
+
"tecINSUFF_FEE": 136,
|
|
2980
|
+
"tecINSUF_RESERVE_LINE": 122,
|
|
2981
|
+
"tecINSUF_RESERVE_OFFER": 123,
|
|
2982
|
+
"tecINTERNAL": 144,
|
|
2983
|
+
"tecINVALID_UPDATE_TIME": 188,
|
|
2984
|
+
"tecINVARIANT_FAILED": 147,
|
|
2985
|
+
"tecKILLED": 150,
|
|
2986
|
+
"tecLOCKED": 192,
|
|
2987
|
+
"tecMAX_SEQUENCE_REACHED": 154,
|
|
2988
|
+
"tecNEED_MASTER_KEY": 142,
|
|
2989
|
+
"tecNFTOKEN_BUY_SELL_MISMATCH": 156,
|
|
2990
|
+
"tecNFTOKEN_OFFER_TYPE_MISMATCH": 157,
|
|
2991
|
+
"tecNO_ALTERNATIVE_KEY": 130,
|
|
2992
|
+
"tecNO_AUTH": 134,
|
|
2993
|
+
"tecNO_DST": 124,
|
|
2994
|
+
"tecNO_DST_INSUF_XRP": 125,
|
|
2995
|
+
"tecNO_ENTRY": 140,
|
|
2996
|
+
"tecNO_ISSUER": 133,
|
|
2997
|
+
"tecNO_LINE": 135,
|
|
2998
|
+
"tecNO_LINE_INSUF_RESERVE": 126,
|
|
2999
|
+
"tecNO_LINE_REDUNDANT": 127,
|
|
3000
|
+
"tecNO_PERMISSION": 139,
|
|
3001
|
+
"tecNO_REGULAR_KEY": 131,
|
|
3002
|
+
"tecNO_SUITABLE_NFTOKEN_PAGE": 155,
|
|
3003
|
+
"tecNO_TARGET": 138,
|
|
3004
|
+
"tecOBJECT_NOT_FOUND": 160,
|
|
3005
|
+
"tecOVERSIZE": 145,
|
|
3006
|
+
"tecOWNERS": 132,
|
|
3007
|
+
"tecPATH_DRY": 128,
|
|
3008
|
+
"tecPATH_PARTIAL": 101,
|
|
3009
|
+
"tecTOKEN_PAIR_NOT_FOUND": 189,
|
|
3010
|
+
"tecTOO_SOON": 152,
|
|
3011
|
+
"tecUNFUNDED": 129,
|
|
3012
|
+
"tecUNFUNDED_ADD": 102,
|
|
3013
|
+
"tecUNFUNDED_AMM": 162,
|
|
3014
|
+
"tecUNFUNDED_OFFER": 103,
|
|
3015
|
+
"tecUNFUNDED_PAYMENT": 104,
|
|
3016
|
+
"tecXCHAIN_ACCOUNT_CREATE_PAST": 181,
|
|
3017
|
+
"tecXCHAIN_ACCOUNT_CREATE_TOO_MANY": 182,
|
|
3018
|
+
"tecXCHAIN_BAD_CLAIM_ID": 172,
|
|
3019
|
+
"tecXCHAIN_BAD_PUBLIC_KEY_ACCOUNT_PAIR": 185,
|
|
3020
|
+
"tecXCHAIN_BAD_TRANSFER_ISSUE": 170,
|
|
3021
|
+
"tecXCHAIN_CLAIM_NO_QUORUM": 173,
|
|
3022
|
+
"tecXCHAIN_CREATE_ACCOUNT_DISABLED": 186,
|
|
3023
|
+
"tecXCHAIN_CREATE_ACCOUNT_NONXRP_ISSUE": 175,
|
|
3024
|
+
"tecXCHAIN_INSUFF_CREATE_AMOUNT": 180,
|
|
3025
|
+
"tecXCHAIN_NO_CLAIM_ID": 171,
|
|
3026
|
+
"tecXCHAIN_NO_SIGNERS_LIST": 178,
|
|
3027
|
+
"tecXCHAIN_PAYMENT_FAILED": 183,
|
|
3028
|
+
"tecXCHAIN_PROOF_UNKNOWN_KEY": 174,
|
|
3029
|
+
"tecXCHAIN_REWARD_MISMATCH": 177,
|
|
3030
|
+
"tecXCHAIN_SELF_COMMIT": 184,
|
|
3031
|
+
"tecXCHAIN_SENDING_ACCOUNT_MISMATCH": 179,
|
|
3032
|
+
"tecXCHAIN_WRONG_CHAIN": 176,
|
|
3033
|
+
|
|
3034
|
+
"tefALREADY": -198,
|
|
3035
|
+
"tefBAD_ADD_AUTH": -197,
|
|
3036
|
+
"tefBAD_AUTH": -196,
|
|
3037
|
+
"tefBAD_AUTH_MASTER": -183,
|
|
3038
|
+
"tefBAD_LEDGER": -195,
|
|
3039
|
+
"tefBAD_QUORUM": -185,
|
|
3040
|
+
"tefBAD_SIGNATURE": -186,
|
|
3041
|
+
"tefCREATED": -194,
|
|
3042
|
+
"tefEXCEPTION": -193,
|
|
3043
|
+
"tefFAILURE": -199,
|
|
3044
|
+
"tefINTERNAL": -192,
|
|
3045
|
+
"tefINVALID_LEDGER_FIX_TYPE": -178,
|
|
3046
|
+
"tefINVARIANT_FAILED": -182,
|
|
3047
|
+
"tefMASTER_DISABLED": -188,
|
|
3048
|
+
"tefMAX_LEDGER": -187,
|
|
3049
|
+
"tefNFTOKEN_IS_NOT_TRANSFERABLE": -179,
|
|
3050
|
+
"tefNOT_MULTI_SIGNING": -184,
|
|
3051
|
+
"tefNO_AUTH_REQUIRED": -191,
|
|
3052
|
+
"tefNO_TICKET": -180,
|
|
3053
|
+
"tefPAST_SEQ": -190,
|
|
3054
|
+
"tefTOO_BIG": -181,
|
|
3055
|
+
"tefWRONG_PRIOR": -189,
|
|
3056
|
+
|
|
2746
3057
|
"telBAD_DOMAIN": -398,
|
|
2747
|
-
"telBAD_PATH_COUNT": -397,
|
|
2748
|
-
"telBAD_PUBLIC_KEY": -396,
|
|
2749
|
-
"telFAILED_PROCESSING": -395,
|
|
2750
|
-
"telINSUF_FEE_P": -394,
|
|
2751
|
-
"telNO_DST_PARTIAL": -393,
|
|
3058
|
+
"telBAD_PATH_COUNT": -397,
|
|
3059
|
+
"telBAD_PUBLIC_KEY": -396,
|
|
2752
3060
|
"telCAN_NOT_QUEUE": -392,
|
|
2753
3061
|
"telCAN_NOT_QUEUE_BALANCE": -391,
|
|
2754
|
-
"telCAN_NOT_QUEUE_BLOCKS": -390,
|
|
2755
3062
|
"telCAN_NOT_QUEUE_BLOCKED": -389,
|
|
3063
|
+
"telCAN_NOT_QUEUE_BLOCKS": -390,
|
|
2756
3064
|
"telCAN_NOT_QUEUE_FEE": -388,
|
|
2757
3065
|
"telCAN_NOT_QUEUE_FULL": -387,
|
|
2758
|
-
"telWRONG_NETWORK": -386,
|
|
2759
|
-
"telREQUIRES_NETWORK_ID": -385,
|
|
2760
|
-
"telNETWORK_ID_MAKES_TX_NON_CANONICAL": -384,
|
|
2761
3066
|
"telENV_RPC_FAILED": -383,
|
|
3067
|
+
"telFAILED_PROCESSING": -395,
|
|
3068
|
+
"telINSUF_FEE_P": -394,
|
|
3069
|
+
"telLOCAL_ERROR": -399,
|
|
3070
|
+
"telNETWORK_ID_MAKES_TX_NON_CANONICAL": -384,
|
|
3071
|
+
"telNO_DST_PARTIAL": -393,
|
|
3072
|
+
"telREQUIRES_NETWORK_ID": -385,
|
|
3073
|
+
"telWRONG_NETWORK": -386,
|
|
2762
3074
|
|
|
2763
|
-
"
|
|
3075
|
+
"temARRAY_EMPTY": -253,
|
|
3076
|
+
"temARRAY_TOO_LARGE": -252,
|
|
3077
|
+
"temBAD_AMM_TOKENS": -261,
|
|
2764
3078
|
"temBAD_AMOUNT": -298,
|
|
2765
3079
|
"temBAD_CURRENCY": -297,
|
|
2766
3080
|
"temBAD_EXPIRATION": -296,
|
|
2767
3081
|
"temBAD_FEE": -295,
|
|
2768
3082
|
"temBAD_ISSUER": -294,
|
|
2769
3083
|
"temBAD_LIMIT": -293,
|
|
3084
|
+
"temBAD_NFTOKEN_TRANSFER_FEE": -262,
|
|
2770
3085
|
"temBAD_OFFER": -292,
|
|
2771
3086
|
"temBAD_PATH": -291,
|
|
2772
3087
|
"temBAD_PATH_LOOP": -290,
|
|
3088
|
+
"temBAD_QUORUM": -271,
|
|
2773
3089
|
"temBAD_REGKEY": -289,
|
|
2774
3090
|
"temBAD_SEND_XRP_LIMIT": -288,
|
|
2775
3091
|
"temBAD_SEND_XRP_MAX": -287,
|
|
@@ -2778,204 +3094,142 @@
|
|
|
2778
3094
|
"temBAD_SEND_XRP_PATHS": -284,
|
|
2779
3095
|
"temBAD_SEQUENCE": -283,
|
|
2780
3096
|
"temBAD_SIGNATURE": -282,
|
|
3097
|
+
"temBAD_SIGNER": -272,
|
|
2781
3098
|
"temBAD_SRC_ACCOUNT": -281,
|
|
3099
|
+
"temBAD_TICK_SIZE": -269,
|
|
3100
|
+
"temBAD_TRANSFER_FEE": -251,
|
|
2782
3101
|
"temBAD_TRANSFER_RATE": -280,
|
|
3102
|
+
"temBAD_WEIGHT": -270,
|
|
3103
|
+
"temCANNOT_PREAUTH_SELF": -267,
|
|
3104
|
+
"temDISABLED": -273,
|
|
2783
3105
|
"temDST_IS_SRC": -279,
|
|
2784
3106
|
"temDST_NEEDED": -278,
|
|
3107
|
+
"temEMPTY_DID": -254,
|
|
2785
3108
|
"temINVALID": -277,
|
|
3109
|
+
"temINVALID_ACCOUNT_ID": -268,
|
|
3110
|
+
"temINVALID_COUNT": -266,
|
|
2786
3111
|
"temINVALID_FLAG": -276,
|
|
3112
|
+
"temINVALID_INNER_BATCH": -250,
|
|
3113
|
+
"temMALFORMED": -299,
|
|
2787
3114
|
"temREDUNDANT": -275,
|
|
2788
3115
|
"temRIPPLE_EMPTY": -274,
|
|
2789
|
-
"
|
|
2790
|
-
"temBAD_SIGNER": -272,
|
|
2791
|
-
"temBAD_QUORUM": -271,
|
|
2792
|
-
"temBAD_WEIGHT": -270,
|
|
2793
|
-
"temBAD_TICK_SIZE": -269,
|
|
2794
|
-
"temINVALID_ACCOUNT_ID": -268,
|
|
2795
|
-
"temCANNOT_PREAUTH_SELF": -267,
|
|
2796
|
-
"temINVALID_COUNT": -266,
|
|
3116
|
+
"temSEQ_AND_TICKET": -263,
|
|
2797
3117
|
"temUNCERTAIN": -265,
|
|
2798
3118
|
"temUNKNOWN": -264,
|
|
2799
|
-
"temSEQ_AND_TICKET": -263,
|
|
2800
|
-
"temBAD_NFTOKEN_TRANSFER_FEE": -262,
|
|
2801
|
-
"temBAD_AMM_TOKENS": -261,
|
|
2802
|
-
"temXCHAIN_EQUAL_DOOR_ACCOUNTS": -260,
|
|
2803
3119
|
"temXCHAIN_BAD_PROOF": -259,
|
|
2804
3120
|
"temXCHAIN_BRIDGE_BAD_ISSUES": -258,
|
|
2805
|
-
"temXCHAIN_BRIDGE_NONDOOR_OWNER": -257,
|
|
2806
3121
|
"temXCHAIN_BRIDGE_BAD_MIN_ACCOUNT_CREATE_AMOUNT": -256,
|
|
2807
3122
|
"temXCHAIN_BRIDGE_BAD_REWARD_AMOUNT": -255,
|
|
2808
|
-
"
|
|
2809
|
-
"
|
|
2810
|
-
"temARRAY_TOO_LARGE": -252,
|
|
2811
|
-
|
|
2812
|
-
"tefFAILURE": -199,
|
|
2813
|
-
"tefALREADY": -198,
|
|
2814
|
-
"tefBAD_ADD_AUTH": -197,
|
|
2815
|
-
"tefBAD_AUTH": -196,
|
|
2816
|
-
"tefBAD_LEDGER": -195,
|
|
2817
|
-
"tefCREATED": -194,
|
|
2818
|
-
"tefEXCEPTION": -193,
|
|
2819
|
-
"tefINTERNAL": -192,
|
|
2820
|
-
"tefNO_AUTH_REQUIRED": -191,
|
|
2821
|
-
"tefPAST_SEQ": -190,
|
|
2822
|
-
"tefWRONG_PRIOR": -189,
|
|
2823
|
-
"tefMASTER_DISABLED": -188,
|
|
2824
|
-
"tefMAX_LEDGER": -187,
|
|
2825
|
-
"tefBAD_SIGNATURE": -186,
|
|
2826
|
-
"tefBAD_QUORUM": -185,
|
|
2827
|
-
"tefNOT_MULTI_SIGNING": -184,
|
|
2828
|
-
"tefBAD_AUTH_MASTER": -183,
|
|
2829
|
-
"tefINVARIANT_FAILED": -182,
|
|
2830
|
-
"tefTOO_BIG": -181,
|
|
2831
|
-
"tefNO_TICKET": -180,
|
|
2832
|
-
"tefNFTOKEN_IS_NOT_TRANSFERABLE": -179,
|
|
3123
|
+
"temXCHAIN_BRIDGE_NONDOOR_OWNER": -257,
|
|
3124
|
+
"temXCHAIN_EQUAL_DOOR_ACCOUNTS": -260,
|
|
2833
3125
|
|
|
2834
|
-
"terRETRY": -99,
|
|
2835
3126
|
"terFUNDS_SPENT": -98,
|
|
2836
3127
|
"terINSUF_FEE_B": -97,
|
|
3128
|
+
"terLAST": -91,
|
|
2837
3129
|
"terNO_ACCOUNT": -96,
|
|
3130
|
+
"terNO_AMM": -87,
|
|
2838
3131
|
"terNO_AUTH": -95,
|
|
2839
3132
|
"terNO_LINE": -94,
|
|
3133
|
+
"terNO_RIPPLE": -90,
|
|
2840
3134
|
"terOWNERS": -93,
|
|
2841
3135
|
"terPRE_SEQ": -92,
|
|
2842
|
-
"terLAST": -91,
|
|
2843
|
-
"terNO_RIPPLE": -90,
|
|
2844
|
-
"terQUEUED": -89,
|
|
2845
3136
|
"terPRE_TICKET": -88,
|
|
2846
|
-
"
|
|
2847
|
-
|
|
2848
|
-
"tesSUCCESS": 0,
|
|
3137
|
+
"terQUEUED": -89,
|
|
3138
|
+
"terRETRY": -99,
|
|
2849
3139
|
|
|
2850
|
-
"
|
|
2851
|
-
"tecPATH_PARTIAL": 101,
|
|
2852
|
-
"tecUNFUNDED_ADD": 102,
|
|
2853
|
-
"tecUNFUNDED_OFFER": 103,
|
|
2854
|
-
"tecUNFUNDED_PAYMENT": 104,
|
|
2855
|
-
"tecFAILED_PROCESSING": 105,
|
|
2856
|
-
"tecDIR_FULL": 121,
|
|
2857
|
-
"tecINSUF_RESERVE_LINE": 122,
|
|
2858
|
-
"tecINSUF_RESERVE_OFFER": 123,
|
|
2859
|
-
"tecNO_DST": 124,
|
|
2860
|
-
"tecNO_DST_INSUF_XRP": 125,
|
|
2861
|
-
"tecNO_LINE_INSUF_RESERVE": 126,
|
|
2862
|
-
"tecNO_LINE_REDUNDANT": 127,
|
|
2863
|
-
"tecPATH_DRY": 128,
|
|
2864
|
-
"tecUNFUNDED": 129,
|
|
2865
|
-
"tecNO_ALTERNATIVE_KEY": 130,
|
|
2866
|
-
"tecNO_REGULAR_KEY": 131,
|
|
2867
|
-
"tecOWNERS": 132,
|
|
2868
|
-
"tecNO_ISSUER": 133,
|
|
2869
|
-
"tecNO_AUTH": 134,
|
|
2870
|
-
"tecNO_LINE": 135,
|
|
2871
|
-
"tecINSUFF_FEE": 136,
|
|
2872
|
-
"tecFROZEN": 137,
|
|
2873
|
-
"tecNO_TARGET": 138,
|
|
2874
|
-
"tecNO_PERMISSION": 139,
|
|
2875
|
-
"tecNO_ENTRY": 140,
|
|
2876
|
-
"tecINSUFFICIENT_RESERVE": 141,
|
|
2877
|
-
"tecNEED_MASTER_KEY": 142,
|
|
2878
|
-
"tecDST_TAG_NEEDED": 143,
|
|
2879
|
-
"tecINTERNAL": 144,
|
|
2880
|
-
"tecOVERSIZE": 145,
|
|
2881
|
-
"tecCRYPTOCONDITION_ERROR": 146,
|
|
2882
|
-
"tecINVARIANT_FAILED": 147,
|
|
2883
|
-
"tecEXPIRED": 148,
|
|
2884
|
-
"tecDUPLICATE": 149,
|
|
2885
|
-
"tecKILLED": 150,
|
|
2886
|
-
"tecHAS_OBLIGATIONS": 151,
|
|
2887
|
-
"tecTOO_SOON": 152,
|
|
2888
|
-
"tecHOOK_REJECTED": 153,
|
|
2889
|
-
"tecMAX_SEQUENCE_REACHED": 154,
|
|
2890
|
-
"tecNO_SUITABLE_NFTOKEN_PAGE": 155,
|
|
2891
|
-
"tecNFTOKEN_BUY_SELL_MISMATCH": 156,
|
|
2892
|
-
"tecNFTOKEN_OFFER_TYPE_MISMATCH": 157,
|
|
2893
|
-
"tecCANT_ACCEPT_OWN_NFTOKEN_OFFER": 158,
|
|
2894
|
-
"tecINSUFFICIENT_FUNDS": 159,
|
|
2895
|
-
"tecOBJECT_NOT_FOUND": 160,
|
|
2896
|
-
"tecINSUFFICIENT_PAYMENT": 161,
|
|
2897
|
-
"tecUNFUNDED_AMM": 162,
|
|
2898
|
-
"tecAMM_BALANCE": 163,
|
|
2899
|
-
"tecAMM_FAILED": 164,
|
|
2900
|
-
"tecAMM_INVALID_TOKENS": 165,
|
|
2901
|
-
"tecAMM_EMPTY": 166,
|
|
2902
|
-
"tecAMM_NOT_EMPTY": 167,
|
|
2903
|
-
"tecAMM_ACCOUNT": 168,
|
|
2904
|
-
"tecINCOMPLETE": 169,
|
|
2905
|
-
"tecXCHAIN_BAD_TRANSFER_ISSUE": 170,
|
|
2906
|
-
"tecXCHAIN_NO_CLAIM_ID": 171,
|
|
2907
|
-
"tecXCHAIN_BAD_CLAIM_ID": 172,
|
|
2908
|
-
"tecXCHAIN_CLAIM_NO_QUORUM": 173,
|
|
2909
|
-
"tecXCHAIN_PROOF_UNKNOWN_KEY": 174,
|
|
2910
|
-
"tecXCHAIN_CREATE_ACCOUNT_NONXRP_ISSUE": 175,
|
|
2911
|
-
"tecXCHAIN_WRONG_CHAIN": 176,
|
|
2912
|
-
"tecXCHAIN_REWARD_MISMATCH": 177,
|
|
2913
|
-
"tecXCHAIN_NO_SIGNERS_LIST": 178,
|
|
2914
|
-
"tecXCHAIN_SENDING_ACCOUNT_MISMATCH": 179,
|
|
2915
|
-
"tecXCHAIN_INSUFF_CREATE_AMOUNT": 180,
|
|
2916
|
-
"tecXCHAIN_ACCOUNT_CREATE_PAST": 181,
|
|
2917
|
-
"tecXCHAIN_ACCOUNT_CREATE_TOO_MANY": 182,
|
|
2918
|
-
"tecXCHAIN_PAYMENT_FAILED": 183,
|
|
2919
|
-
"tecXCHAIN_SELF_COMMIT": 184,
|
|
2920
|
-
"tecXCHAIN_BAD_PUBLIC_KEY_ACCOUNT_PAIR": 185,
|
|
2921
|
-
"tecXCHAIN_CREATE_ACCOUNT_DISABLED": 186,
|
|
2922
|
-
"tecEMPTY_DID": 187,
|
|
2923
|
-
"tecINVALID_UPDATE_TIME": 188,
|
|
2924
|
-
"tecTOKEN_PAIR_NOT_FOUND": 189,
|
|
2925
|
-
"tecARRAY_EMPTY": 190,
|
|
2926
|
-
"tecARRAY_TOO_LARGE": 191
|
|
3140
|
+
"tesSUCCESS": 0
|
|
2927
3141
|
},
|
|
2928
3142
|
"TRANSACTION_TYPES": {
|
|
2929
|
-
"
|
|
2930
|
-
"
|
|
2931
|
-
"
|
|
2932
|
-
"
|
|
3143
|
+
"AMMBid": 39,
|
|
3144
|
+
"AMMClawback": 31,
|
|
3145
|
+
"AMMCreate": 35,
|
|
3146
|
+
"AMMDelete": 40,
|
|
3147
|
+
"AMMDeposit": 36,
|
|
3148
|
+
"AMMVote": 38,
|
|
3149
|
+
"AMMWithdraw": 37,
|
|
3150
|
+
"AccountDelete": 21,
|
|
2933
3151
|
"AccountSet": 3,
|
|
3152
|
+
"Batch": 64,
|
|
3153
|
+
"CheckCancel": 18,
|
|
3154
|
+
"CheckCash": 17,
|
|
3155
|
+
"CheckCreate": 16,
|
|
3156
|
+
"Clawback": 30,
|
|
3157
|
+
"CredentialAccept": 59,
|
|
3158
|
+
"CredentialCreate": 58,
|
|
3159
|
+
"CredentialDelete": 60,
|
|
3160
|
+
"DIDDelete": 50,
|
|
3161
|
+
"DIDSet": 49,
|
|
3162
|
+
"DepositPreauth": 19,
|
|
3163
|
+
"EnableAmendment": 100,
|
|
2934
3164
|
"EscrowCancel": 4,
|
|
2935
|
-
"
|
|
2936
|
-
"
|
|
2937
|
-
"
|
|
3165
|
+
"EscrowCreate": 1,
|
|
3166
|
+
"EscrowFinish": 2,
|
|
3167
|
+
"Invalid": -1,
|
|
3168
|
+
"LedgerStateFix": 53,
|
|
3169
|
+
"MPTokenAuthorize": 57,
|
|
3170
|
+
"MPTokenIssuanceCreate": 54,
|
|
3171
|
+
"MPTokenIssuanceDestroy": 55,
|
|
3172
|
+
"MPTokenIssuanceSet": 56,
|
|
3173
|
+
"NFTokenAcceptOffer": 29,
|
|
3174
|
+
"NFTokenBurn": 26,
|
|
3175
|
+
"NFTokenCancelOffer": 28,
|
|
3176
|
+
"NFTokenCreateOffer": 27,
|
|
3177
|
+
"NFTokenMint": 25,
|
|
3178
|
+
"NFTokenModify": 61,
|
|
2938
3179
|
"OfferCancel": 8,
|
|
2939
|
-
"
|
|
2940
|
-
"
|
|
2941
|
-
"
|
|
2942
|
-
"
|
|
3180
|
+
"OfferCreate": 7,
|
|
3181
|
+
"OracleDelete": 52,
|
|
3182
|
+
"OracleSet": 51,
|
|
3183
|
+
"Payment": 0,
|
|
3184
|
+
"PaymentChannelClaim": 15,
|
|
2943
3185
|
"PaymentChannelCreate": 13,
|
|
2944
3186
|
"PaymentChannelFund": 14,
|
|
2945
|
-
"
|
|
2946
|
-
"
|
|
2947
|
-
"
|
|
2948
|
-
"
|
|
2949
|
-
"
|
|
3187
|
+
"PermissionedDomainDelete": 63,
|
|
3188
|
+
"PermissionedDomainSet": 62,
|
|
3189
|
+
"SetFee": 101,
|
|
3190
|
+
"SetRegularKey": 5,
|
|
3191
|
+
"SignerListSet": 12,
|
|
3192
|
+
"TicketCreate": 10,
|
|
2950
3193
|
"TrustSet": 20,
|
|
2951
|
-
"
|
|
2952
|
-
"SetHook": 22,
|
|
2953
|
-
"NFTokenMint": 25,
|
|
2954
|
-
"NFTokenBurn": 26,
|
|
2955
|
-
"NFTokenCreateOffer": 27,
|
|
2956
|
-
"NFTokenCancelOffer": 28,
|
|
2957
|
-
"NFTokenAcceptOffer": 29,
|
|
2958
|
-
"Clawback": 30,
|
|
2959
|
-
"AMMCreate": 35,
|
|
2960
|
-
"AMMDeposit": 36,
|
|
2961
|
-
"AMMWithdraw": 37,
|
|
2962
|
-
"AMMVote": 38,
|
|
2963
|
-
"AMMBid": 39,
|
|
2964
|
-
"AMMDelete": 40,
|
|
2965
|
-
"XChainCreateClaimID": 41,
|
|
2966
|
-
"XChainCommit": 42,
|
|
2967
|
-
"XChainClaim": 43,
|
|
3194
|
+
"UNLModify": 102,
|
|
2968
3195
|
"XChainAccountCreateCommit": 44,
|
|
2969
|
-
"XChainAddClaimAttestation": 45,
|
|
2970
3196
|
"XChainAddAccountCreateAttestation": 46,
|
|
2971
|
-
"
|
|
3197
|
+
"XChainAddClaimAttestation": 45,
|
|
3198
|
+
"XChainClaim": 43,
|
|
3199
|
+
"XChainCommit": 42,
|
|
2972
3200
|
"XChainCreateBridge": 48,
|
|
2973
|
-
"
|
|
2974
|
-
"
|
|
2975
|
-
|
|
2976
|
-
|
|
2977
|
-
"
|
|
2978
|
-
"
|
|
2979
|
-
"
|
|
3201
|
+
"XChainCreateClaimID": 41,
|
|
3202
|
+
"XChainModifyBridge": 47
|
|
3203
|
+
},
|
|
3204
|
+
"TYPES": {
|
|
3205
|
+
"AccountID": 8,
|
|
3206
|
+
"Amount": 6,
|
|
3207
|
+
"Blob": 7,
|
|
3208
|
+
"Currency": 26,
|
|
3209
|
+
"Done": -1,
|
|
3210
|
+
"Hash128": 4,
|
|
3211
|
+
"Hash160": 17,
|
|
3212
|
+
"Hash192": 21,
|
|
3213
|
+
"Hash256": 5,
|
|
3214
|
+
"Issue": 24,
|
|
3215
|
+
"LedgerEntry": 10002,
|
|
3216
|
+
"Metadata": 10004,
|
|
3217
|
+
"NotPresent": 0,
|
|
3218
|
+
"Number": 9,
|
|
3219
|
+
"PathSet": 18,
|
|
3220
|
+
"STArray": 15,
|
|
3221
|
+
"STObject": 14,
|
|
3222
|
+
"Transaction": 10001,
|
|
3223
|
+
"UInt16": 1,
|
|
3224
|
+
"UInt32": 2,
|
|
3225
|
+
"UInt384": 22,
|
|
3226
|
+
"UInt512": 23,
|
|
3227
|
+
"UInt64": 3,
|
|
3228
|
+
"UInt8": 16,
|
|
3229
|
+
"UInt96": 20,
|
|
3230
|
+
"Unknown": -2,
|
|
3231
|
+
"Validation": 10003,
|
|
3232
|
+
"Vector256": 19,
|
|
3233
|
+
"XChainBridge": 25
|
|
2980
3234
|
}
|
|
2981
3235
|
}
|