@stellar-expert/tx-meta-effects-parser 5.7.1 → 6.0.1

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/README.MD CHANGED
@@ -19,28 +19,86 @@ npm i @stellar-expert/tx-meta-effects-parser
19
19
  const {parseTxOperationsMeta} = require('@stellar-expert/tx-meta-effects-parser')
20
20
 
21
21
  const res = parseTxOperationsMeta({
22
- network: 'Public Global Stellar Network ; September 2015',
23
- tx: '_base64-encoded_transaction_envelope_XDR_',
24
- result: '_base64-encoded_transaction_result_XDR_',
25
- meta: '_base64-encoded_transaction_result_meta_XDR_'
22
+ network: 'Public Global Stellar Network ; September 2015',
23
+ tx: '_base64-encoded_transaction_envelope_XDR_', // trasnaction envelope XDR
24
+ result: '_base64-encoded_transaction_result_XDR_', // trasnaction result XDR
25
+ meta: '_base64-encoded_transaction_result_meta_XDR_', // trasnaction meta XDR
26
+ processSystemEvents: false, // whether to analyze system Soroban diagnostic events
27
+ mapSac: false, // whether to map Classic assets to Soroban contracts automatically
28
+ processFailedOpEffects: false, // whether to analyze effects in failed transactions
29
+ protocol: 21 // different versions of Stelalr protocol may yield uninform effects
26
30
  })
27
31
 
28
32
  console.log(res.effects)
29
33
  console.log(res.operations[0].effects)
30
34
  ```
31
35
 
36
+ Example:
37
+
38
+ ```js
39
+ parseTxOperationsMeta({
40
+ network: 'Public Global Stellar Network ; September 2015',
41
+ tx: 'AAAAAgAAAABU95GyQJbC5BUk8MOfuB2kGJMPNikp/uVdnGQ9ALDarAAAJxAAAJvZAAAAAQAAAAEAAAAAAAAAAAAAAABjnO8XAAAAAAAAAAEAAAABAAAAAGwpaFzT4YYOFQorR1hvkzU9himxtEbBMKbb/qeCkpPhAAAACAAAAABU95GyQJbC5BUk8MOfuB2kGJMPNikp/uVdnGQ9ALDarAAAAAAAAAACALDarAAAAED9Omj2K+pvRUV6jGicOlyZ7F5Jg82yj6rK0VKPSo8eOlfAkJt2AfcSYhB1HUODhbgpwHryTNjJZr8HLy3H/8wFgpKT4QAAAEAqlaQs1KKyIp5/aGFg+KRyIwR2wB+UE+PoEJC7EkyK3DNET09EDWqRCTZjZlNnvAPtw+R0ZXndNsPxZtqKjnsF',
42
+ result: 'AAAAAAAAAGQAAAAAAAAAAQAAAAAAAAAIAAAAAAAAABdIdugAAAAAAA==',
43
+ meta: 'AAAAAgAAAAIAAAADAACb3QAAAAAAAAAAVPeRskCWwuQVJPDDn7gdpBiTDzYpKf7lXZxkPQCw2qwAAAAXSHbnnAAAm9kAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAABAACb3QAAAAAAAAAAVPeRskCWwuQVJPDDn7gdpBiTDzYpKf7lXZxkPQCw2qwAAAAXSHbnnAAAm9kAAAABAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAwAAAAAAAJvdAAAAAGOcyAwAAAAAAAAAAQAAAAQAAAADAACb2gAAAAAAAAAAbCloXNPhhg4VCitHWG+TNT2GKbG0RsEwptv+p4KSk+EAAAAXSHboAAAAm9oAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAABsKWhc0+GGDhUKK0dYb5M1PYYpsbRGwTCm2/6ngpKT4QAAAAMAAJvdAAAAAAAAAABU95GyQJbC5BUk8MOfuB2kGJMPNikp/uVdnGQ9ALDarAAAABdIduecAACb2QAAAAEAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAADAAAAAAAAm90AAAAAY5zIDAAAAAAAAAABAACb3QAAAAAAAAAAVPeRskCWwuQVJPDDn7gdpBiTDzYpKf7lXZxkPQCw2qwAAAAukO3PnAAAm9kAAAABAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAwAAAAAAAJvdAAAAAGOcyAwAAAAAAAAAAA=='
44
+ })
45
+
46
+ /*json
47
+ {
48
+ effects: [
49
+ {
50
+ "type": "feeCharged",
51
+ "source": "GBKPPENSICLMFZAVETYMHH5YDWSBREYPGYUST7XFLWOGIPIAWDNKYDLI",
52
+ "asset": "XLM",
53
+ "bid": "10000",
54
+ "charged": "100"
55
+ }
56
+ ],
57
+ operations: [
58
+ {
59
+ "source": "GBWCS2C42PQYMDQVBIVUOWDPSM2T3BRJWG2ENQJQU3N75J4CSKJ6DXHN",
60
+ "type": "accountMerge",
61
+ "destination": "GBKPPENSICLMFZAVETYMHH5YDWSBREYPGYUST7XFLWOGIPIAWDNKYDLI",
62
+ "effects": [
63
+ {
64
+ "type": "accountDebited",
65
+ "source": "GBWCS2C42PQYMDQVBIVUOWDPSM2T3BRJWG2ENQJQU3N75J4CSKJ6DXHN",
66
+ "asset": "XLM",
67
+ "amount": "100000000000",
68
+ "balance": "0"
69
+ },
70
+ {
71
+ "type": "accountRemoved",
72
+ "source": "GBWCS2C42PQYMDQVBIVUOWDPSM2T3BRJWG2ENQJQU3N75J4CSKJ6DXHN"
73
+ },
74
+ {
75
+ "type": "accountCredited",
76
+ "source": "GBKPPENSICLMFZAVETYMHH5YDWSBREYPGYUST7XFLWOGIPIAWDNKYDLI",
77
+ "asset": "XLM",
78
+ "amount": "100000000000",
79
+ "balance": "199999999900"
80
+ }
81
+ ]
82
+ }
83
+ ],
84
+ "isEphemeral": false,
85
+ "tx": {}
86
+ }
87
+ */
88
+ ```
89
+
32
90
  ## All effects
33
91
 
34
92
  <table>
35
93
  <tr>
36
- <th>Effect</th> <th>Yielded by</th> <th>Example</th>
94
+ <th>Effect</th> <th>Operations</th> <th>Example</th>
37
95
  </tr>
38
96
 
39
97
  <tr>
40
98
  <td>
41
- <code>feeCharged</code>
99
+ <sub><code>feeCharged</code></sub>
42
100
  </td>
43
- <td>Transaction, FeeBumpTransaction</td>
101
+ <td><sub>Transaction, FeeBumpTransaction</sub></td>
44
102
  <td>
45
103
 
46
104
  ```js
@@ -48,8 +106,8 @@ console.log(res.operations[0].effects)
48
106
  type: 'feeCharged',
49
107
  source: 'GBKP…YDLI',
50
108
  asset: 'XLM',
51
- bid: '0.001',
52
- charged: '0.00001'
109
+ bid: '10000',
110
+ charged: '100'
53
111
  }
54
112
  ```
55
113
  </td>
@@ -57,9 +115,9 @@ console.log(res.operations[0].effects)
57
115
 
58
116
  <tr>
59
117
  <td>
60
- <code>accountCreated</code>
118
+ <sub><code>accountCreated</code></sub>
61
119
  </td>
62
- <td>CreateAccountOp</td>
120
+ <td><sub>CreateAccountOp</sub></td>
63
121
  <td>
64
122
 
65
123
  ```js
@@ -74,9 +132,9 @@ console.log(res.operations[0].effects)
74
132
 
75
133
  <tr>
76
134
  <td>
77
- <code>accountRemoved</code>
135
+ <sub><code>accountRemoved</code></sub>
78
136
  </td>
79
- <td>AccountMergeOp</td>
137
+ <td><sub>AccountMergeOp</sub></td>
80
138
  <td>
81
139
 
82
140
  ```js
@@ -90,10 +148,10 @@ console.log(res.operations[0].effects)
90
148
 
91
149
  <tr>
92
150
  <td>
93
- <code>accountDebited</code>
151
+ <sub><code>accountDebited</code></sub>
94
152
  </td>
95
- <td>CreateAccountOp, AccountMergeOp, PaymentOp, PathPaymentStrictReceiveOp,
96
- PathPaymentStrictSendOp, CreateClaimableBalanceOp, ClawbackOp</td>
153
+ <td><sub>CreateAccountOp, AccountMergeOp, PaymentOp, PathPaymentStrictReceiveOp,
154
+ PathPaymentStrictSendOp, CreateClaimableBalanceOp, ClawbackOp</sub></td>
97
155
  <td>
98
156
 
99
157
  ```js
@@ -101,7 +159,7 @@ PathPaymentStrictSendOp, CreateClaimableBalanceOp, ClawbackOp</td>
101
159
  type: 'accountDebited',
102
160
  source: 'GBKP…YDLI',
103
161
  asset: 'XLM',
104
- amount: '100'
162
+ amount: '1000000000'
105
163
  }
106
164
  ```
107
165
  </td>
@@ -109,11 +167,11 @@ PathPaymentStrictSendOp, CreateClaimableBalanceOp, ClawbackOp</td>
109
167
 
110
168
  <tr>
111
169
  <td>
112
- <code>accountCredited</code>
170
+ <sub><code>accountCredited</code></sub>
113
171
  </td>
114
- <td>CreateAccountOp, AccountMergeOp, PaymentOp, PathPaymentStrictReceiveOp,
172
+ <td><sub>CreateAccountOp, AccountMergeOp, PaymentOp, PathPaymentStrictReceiveOp,
115
173
  PathPaymentStrictSendOp, ClaimClaimableBalanceOp, ClawbackOp,
116
- ClawbackClaimableBalance, InflationOp</td>
174
+ ClawbackClaimableBalance, InflationOp</sub></td>
117
175
  <td>
118
176
 
119
177
  ```js
@@ -121,7 +179,7 @@ ClawbackClaimableBalance, InflationOp</td>
121
179
  type: 'accountCredited',
122
180
  source: 'GBWC…DXHN',
123
181
  asset: 'XLM',
124
- amount: '100'
182
+ amount: '1000000000'
125
183
  }
126
184
  ```
127
185
  </td>
@@ -129,9 +187,9 @@ ClawbackClaimableBalance, InflationOp</td>
129
187
 
130
188
  <tr>
131
189
  <td>
132
- <code>accountHomeDomainUpdated</code>
190
+ <sub><code>accountHomeDomainUpdated</code></sub>
133
191
  </td>
134
- <td>SetOptionsOp</td>
192
+ <td><sub>SetOptionsOp</sub></td>
135
193
  <td>
136
194
 
137
195
  ```js
@@ -146,9 +204,9 @@ ClawbackClaimableBalance, InflationOp</td>
146
204
 
147
205
  <tr>
148
206
  <td>
149
- <code>accountThresholdsUpdated</code>
207
+ <sub><code>accountThresholdsUpdated</code></sub>
150
208
  </td>
151
- <td>SetOptionsOp</td>
209
+ <td><sub>SetOptionsOp</sub></td>
152
210
  <td>
153
211
 
154
212
  ```js
@@ -163,16 +221,17 @@ ClawbackClaimableBalance, InflationOp</td>
163
221
 
164
222
  <tr>
165
223
  <td>
166
- <code>accountFlagsUpdated</code>
224
+ <sub><code>accountFlagsUpdated</code></sub>
167
225
  </td>
168
- <td>SetOptionsOp</td>
226
+ <td><sub>SetOptionsOp</sub></td>
169
227
  <td>
170
228
 
171
229
  ```js
172
230
  {
173
231
  type: 'accountFlagsUpdated',
174
232
  source: 'GBWC…DXHN',
175
- flags: 2
233
+ flags: 2,
234
+ prevFlags: 0
176
235
  }
177
236
  ```
178
237
  </td>
@@ -180,9 +239,9 @@ ClawbackClaimableBalance, InflationOp</td>
180
239
 
181
240
  <tr>
182
241
  <td>
183
- <code>accountInflationDestinationUpdated</code>
242
+ <sub><code>accountInflationDestinationUpdated</code></sub>
184
243
  </td>
185
- <td>SetOptionsOp</td>
244
+ <td><sub>SetOptionsOp</sub></td>
186
245
  <td>
187
246
 
188
247
  ```js
@@ -197,9 +256,9 @@ ClawbackClaimableBalance, InflationOp</td>
197
256
 
198
257
  <tr>
199
258
  <td>
200
- <code>accountSignerCreated</code>
259
+ <sub><code>accountSignerCreated</code></sub>
201
260
  </td>
202
- <td>SetOptionsOp</td>
261
+ <td><sub>SetOptionsOp</sub></td>
203
262
  <td>
204
263
 
205
264
  ```js
@@ -220,9 +279,9 @@ ClawbackClaimableBalance, InflationOp</td>
220
279
 
221
280
  <tr>
222
281
  <td>
223
- <code>accountSignerUpdated</code>
282
+ <sub><code>accountSignerUpdated</code></sub>
224
283
  </td>
225
- <td>SetOptionsOp</td>
284
+ <td><sub>SetOptionsOp</sub></td>
226
285
  <td>
227
286
 
228
287
  ```js
@@ -243,9 +302,9 @@ ClawbackClaimableBalance, InflationOp</td>
243
302
 
244
303
  <tr>
245
304
  <td>
246
- <code>accountSignerRemoved</code>
305
+ <sub><code>accountSignerRemoved</code></sub>
247
306
  </td>
248
- <td>SetOptionsOp</td>
307
+ <td><sub>SetOptionsOp</sub></td>
249
308
  <td>
250
309
 
251
310
  ```js
@@ -265,9 +324,9 @@ ClawbackClaimableBalance, InflationOp</td>
265
324
 
266
325
  <tr>
267
326
  <td>
268
- <code>trustlineCreated</code>
327
+ <sub><code>trustlineCreated</code></sub>
269
328
  </td>
270
- <td>ChangeTrustOp</td>
329
+ <td><sub>ChangeTrustOp</sub></td>
271
330
  <td>
272
331
 
273
332
  ```js
@@ -275,7 +334,8 @@ ClawbackClaimableBalance, InflationOp</td>
275
334
  type: 'trustlineCreated',
276
335
  source: 'GBWC…DXHN',
277
336
  asset: 'USD-GBKP…YDLI-1',
278
- limit: '100',
337
+ kind: 'asset',
338
+ limit: '1000000000',
279
339
  flags: 1
280
340
  }
281
341
  ```
@@ -285,9 +345,9 @@ ClawbackClaimableBalance, InflationOp</td>
285
345
 
286
346
  <tr>
287
347
  <td>
288
- <code>trustlineUpdated</code>
348
+ <sub><code>trustlineUpdated</code></sub>
289
349
  </td>
290
- <td>ChangeTrustOp, AllowTrustOp, SetTrustLineFlagsOp</td>
350
+ <td><sub>ChangeTrustOp, AllowTrustOp, SetTrustLineFlagsOp</sub></td>
291
351
  <td>
292
352
 
293
353
  ```js
@@ -295,7 +355,8 @@ ClawbackClaimableBalance, InflationOp</td>
295
355
  type: 'trustlineUpdated',
296
356
  source: 'GBWC…DXHN',
297
357
  asset: 'USD-GBKP…YDLI-1',
298
- limit: '200',
358
+ kind: 'asset',
359
+ limit: '2000000000',
299
360
  flags: 5
300
361
  }
301
362
  ```
@@ -305,16 +366,18 @@ ClawbackClaimableBalance, InflationOp</td>
305
366
 
306
367
  <tr>
307
368
  <td>
308
- <code>trustlineRemoved</code>
369
+ <sub><code>trustlineRemoved</code></sub>
309
370
  </td>
310
- <td>ChangeTrustOp</td>
371
+ <td><sub>ChangeTrustOp</sub></td>
311
372
  <td>
312
373
 
313
374
  ```js
314
375
  {
315
376
  type: 'trustlineRemoved',
316
377
  source: 'GBWC…DXHN',
317
- asset: 'USD-GBKP…YDLI-1'
378
+ asset: 'USD-GBKP…YDLI-1',
379
+ kind: 'asset',
380
+ flags: 4,
318
381
  }
319
382
  ```
320
383
 
@@ -323,9 +386,9 @@ ClawbackClaimableBalance, InflationOp</td>
323
386
 
324
387
  <tr>
325
388
  <td>
326
- <code>trustlineAuthorizationUpdated</code>
389
+ <sub><code>trustlineAuthorizationUpdated</code></sub>
327
390
  </td>
328
- <td>AllowTrustOp, SetTrustLineFlagsOp</td>
391
+ <td><sub>AllowTrustOp, SetTrustLineFlagsOp</sub></td>
329
392
  <td>
330
393
 
331
394
  ```js
@@ -344,9 +407,50 @@ ClawbackClaimableBalance, InflationOp</td>
344
407
 
345
408
  <tr>
346
409
  <td>
347
- <code>offerCreated</code>
410
+ <sub><code>assetMinted</code></sub>
411
+ </td>
412
+ <td><sub>PaymentOp, PathPaymentStrictReceiveOp, PathPaymentStrictSendOp, CreateClaimableBalanceOp,
413
+ ManageBuyOfferOp, ManageSellOfferOp, CreatePassiveOfferOp, DepositLiquidityOp</sub></td>
414
+ <td>
415
+
416
+ ```js
417
+ {
418
+ type: 'assetMinted',
419
+ source: 'GBWC…DXHN',
420
+ asset: 'USD-GBWC…DXHN-1',
421
+ amount: '1000000000'
422
+ }
423
+ ```
424
+
425
+ </td>
426
+ </tr>
427
+
428
+ <tr>
429
+ <td>
430
+ <sub><code>assetBurned</code></sub>
348
431
  </td>
349
- <td>CreatePassiveOfferOp, ManageBuyOfferOp, ManageSellOfferOp</td>
432
+ <td><sub>PaymentOp, PathPaymentStrictReceiveOp, PathPaymentStrictSendOp, CreateClaimableBalanceOp, ManageBuyOfferOp, ManageSellOfferOp,
433
+ CreatePassiveOfferOp, WithdrawLiquidityOp, ClawbackOp,
434
+ ClaimClaimableBalanceOp</sub></td>
435
+ <td>
436
+
437
+ ```js
438
+ {
439
+ type: 'assetBurned',
440
+ source: 'GBWC…DXHN',
441
+ asset: 'USD-GBWC…DXHN-1',
442
+ amount: '2000000000'
443
+ }
444
+ ```
445
+
446
+ </td>
447
+ </tr>
448
+
449
+ <tr>
450
+ <td>
451
+ <sub><code>offerCreated</code></sub>
452
+ </td>
453
+ <td><sub>CreatePassiveOfferOp, ManageBuyOfferOp, ManageSellOfferOp</sub></td>
350
454
  <td>
351
455
 
352
456
  ```js
@@ -355,7 +459,7 @@ ClawbackClaimableBalance, InflationOp</td>
355
459
  source: 'GBWC…DXHN',
356
460
  offer: '90427',
357
461
  owner: 'GBWC…DXHN',
358
- amount: '100',
462
+ amount: '1000000000',
359
463
  asset: [
360
464
  'USD-GBKP…YDLI-1',
361
465
  'XLM'
@@ -370,9 +474,9 @@ ClawbackClaimableBalance, InflationOp</td>
370
474
 
371
475
  <tr>
372
476
  <td>
373
- <code>offerUpdated</code>
477
+ <sub><code>offerUpdated</code></sub>
374
478
  </td>
375
- <td>CreatePassiveOfferOp, ManageBuyOfferOp, ManageSellOfferOp, PathPaymentOp</td>
479
+ <td><sub>CreatePassiveOfferOp, ManageBuyOfferOp, ManageSellOfferOp, PathPaymentOp</sub></td>
376
480
  <td>
377
481
 
378
482
  ```js
@@ -381,7 +485,7 @@ ClawbackClaimableBalance, InflationOp</td>
381
485
  source: 'GBWC…DXHN',
382
486
  offer: '90427',
383
487
  owner: 'GBWC…DXHN',
384
- amount: '90',
488
+ amount: '900000000',
385
489
  asset: [
386
490
  'USD-GBKP…YDLI-1',
387
491
  'XLM'
@@ -396,9 +500,9 @@ ClawbackClaimableBalance, InflationOp</td>
396
500
 
397
501
  <tr>
398
502
  <td>
399
- <code>offerRemoved</code>
503
+ <sub><code>offerRemoved</code></sub>
400
504
  </td>
401
- <td>CreatePassiveOfferOp, ManageBuyOfferOp, ManageSellOfferOp, PathPaymentOp, AllowTrustOp, SetTrustLineFlagsOp</td>
505
+ <td><sub>CreatePassiveOfferOp, ManageBuyOfferOp, ManageSellOfferOp, PathPaymentOp, AllowTrustOp, SetTrustLineFlagsOp</sub></td>
402
506
  <td>
403
507
 
404
508
  ```js
@@ -420,9 +524,9 @@ ClawbackClaimableBalance, InflationOp</td>
420
524
 
421
525
  <tr>
422
526
  <td>
423
- <code>liquidityPoolCreated</code>
527
+ <sub><code>liquidityPoolCreated</code></sub>
424
528
  </td>
425
- <td>ChangeTrustOp</td>
529
+ <td><sub>ChangeTrustOp</sub></td>
426
530
  <td>
427
531
 
428
532
  ```js
@@ -450,9 +554,9 @@ ClawbackClaimableBalance, InflationOp</td>
450
554
 
451
555
  <tr>
452
556
  <td>
453
- <code>liquidityPoolUpdated</code>
557
+ <sub><code>liquidityPoolUpdated</code></sub>
454
558
  </td>
455
- <td>DepositLiquidityOp, WithdrawLiquidityOp, AllowTrustOp, SetTrustLineFlagsOp</td>
559
+ <td><sub>DepositLiquidityOp, WithdrawLiquidityOp, AllowTrustOp, SetTrustLineFlagsOp</sub></td>
456
560
  <td>
457
561
 
458
562
  ```js
@@ -463,11 +567,11 @@ ClawbackClaimableBalance, InflationOp</td>
463
567
  reserves: [
464
568
  {
465
569
  asset: 'XLM',
466
- amount: '1000'
570
+ amount: '10000000000'
467
571
  },
468
572
  {
469
573
  asset: 'USD-GBKP…YDLI-1',
470
- amount: '1000'
574
+ amount: '10000000000'
471
575
  }
472
576
  ],
473
577
  shares: '10000000000',
@@ -480,9 +584,9 @@ ClawbackClaimableBalance, InflationOp</td>
480
584
 
481
585
  <tr>
482
586
  <td>
483
- <code>liquidityPoolDeposited</code>
587
+ <sub><code>liquidityPoolDeposited</code></sub>
484
588
  </td>
485
- <td>DepositLiquidityOp</td>
589
+ <td><sub>DepositLiquidityOp</sub></td>
486
590
  <td>
487
591
 
488
592
  ```js
@@ -493,11 +597,11 @@ ClawbackClaimableBalance, InflationOp</td>
493
597
  assets: [
494
598
  {
495
599
  asset: 'XLM',
496
- amount: '1000'
600
+ amount: '10000000000'
497
601
  },
498
602
  {
499
603
  asset: 'USD-GBKP…YDLI-1',
500
- amount: '1000'
604
+ amount: '10000000000'
501
605
  }
502
606
  ],
503
607
  shares: '10000000000'
@@ -509,9 +613,9 @@ ClawbackClaimableBalance, InflationOp</td>
509
613
 
510
614
  <tr>
511
615
  <td>
512
- <code>liquidityPoolWithdrew</code>
616
+ <sub><code>liquidityPoolWithdrew</code></sub>
513
617
  </td>
514
- <td>WithdrawLiquidityOp</td>
618
+ <td><sub>WithdrawLiquidityOp</sub></td>
515
619
  <td>
516
620
 
517
621
  ```js
@@ -522,11 +626,11 @@ ClawbackClaimableBalance, InflationOp</td>
522
626
  assets: [
523
627
  {
524
628
  asset: 'XLM',
525
- amount: '500'
629
+ amount: '5000000000'
526
630
  },
527
631
  {
528
632
  asset: 'USD-GBKP…YDLI-1',
529
- amount: '500'
633
+ amount: '5000000000'
530
634
  }
531
635
  ],
532
636
  shares: '5000000000'
@@ -538,9 +642,9 @@ ClawbackClaimableBalance, InflationOp</td>
538
642
 
539
643
  <tr>
540
644
  <td>
541
- <code>liquidityPoolRemoved</code>
645
+ <sub><code>liquidityPoolRemoved</code></sub>
542
646
  </td>
543
- <td>ChangeTrustOp, AllowTrustOp, SetTrustLineFlagsOp</td>
647
+ <td><sub>ChangeTrustOp, AllowTrustOp, SetTrustLineFlagsOp</sub></td>
544
648
  <td>
545
649
 
546
650
  ```js
@@ -556,17 +660,20 @@ ClawbackClaimableBalance, InflationOp</td>
556
660
 
557
661
  <tr>
558
662
  <td>
559
- <code>trade</code>
663
+ <sub><code>trade</code></sub>
560
664
  </td>
561
- <td>CreatePassiveOfferOp, ManageBuyOfferOp, ManageSellOfferOp, PathPaymentOp</td>
665
+ <td><sub>CreatePassiveOfferOp, ManageBuyOfferOp, ManageSellOfferOp, PathPaymentOp</sub></td>
562
666
  <td>
563
667
 
564
668
  ```js
565
669
  {
566
670
  type: 'trade',
567
671
  source: 'GBWC…DXHN',
568
- offer: '1',
569
- amount: ['10', '10'],
672
+ offer: '14834',
673
+ amount: [
674
+ '100000000',
675
+ '200000000'
676
+ ],
570
677
  asset: [
571
678
  'USD-GBKP…YDLI-1',
572
679
  'XLM'
@@ -580,9 +687,9 @@ ClawbackClaimableBalance, InflationOp</td>
580
687
 
581
688
  <tr>
582
689
  <td>
583
- <code>dataEntryCreated</code>
690
+ <sub><code>dataEntryCreated</code></sub>
584
691
  </td>
585
- <td>ManageDataOp</td>
692
+ <td><sub>ManageDataOp</sub></td>
586
693
  <td>
587
694
 
588
695
  ```js
@@ -599,9 +706,9 @@ ClawbackClaimableBalance, InflationOp</td>
599
706
 
600
707
  <tr>
601
708
  <td>
602
- <code>dataEntryUpdated</code>
709
+ <sub><code>dataEntryUpdated</code></sub>
603
710
  </td>
604
- <td>ManageDataOp</td>
711
+ <td><sub>ManageDataOp</sub></td>
605
712
  <td>
606
713
 
607
714
  ```js
@@ -618,9 +725,9 @@ ClawbackClaimableBalance, InflationOp</td>
618
725
 
619
726
  <tr>
620
727
  <td>
621
- <code>dataEntryRemoved</code>
728
+ <sub><code>dataEntryRemoved</code></sub>
622
729
  </td>
623
- <td>ManageDataOp</td>
730
+ <td><sub>ManageDataOp</sub></td>
624
731
  <td>
625
732
 
626
733
  ```js
@@ -636,16 +743,16 @@ ClawbackClaimableBalance, InflationOp</td>
636
743
 
637
744
  <tr>
638
745
  <td>
639
- <code>sequenceBumped</code>
746
+ <sub><code>sequenceBumped</code></sub>
640
747
  </td>
641
- <td>BumpSequenceOp</td>
748
+ <td><sub>BumpSequenceOp</sub></td>
642
749
  <td>
643
750
 
644
751
  ```js
645
752
  {
646
753
  type: 'sequenceBumped',
647
754
  source: 'GBWC…DXHN',
648
- sequence: '100'
755
+ sequence: '9223372036854775707'
649
756
  }
650
757
  ```
651
758
 
@@ -654,9 +761,9 @@ ClawbackClaimableBalance, InflationOp</td>
654
761
 
655
762
  <tr>
656
763
  <td>
657
- <code>inflation</code>
764
+ <sub><code>inflation</code></sub>
658
765
  </td>
659
- <td>InflationOp</td>
766
+ <td><sub>InflationOp</sub></td>
660
767
  <td>
661
768
 
662
769
  ```js
@@ -671,9 +778,9 @@ ClawbackClaimableBalance, InflationOp</td>
671
778
 
672
779
  <tr>
673
780
  <td>
674
- <code>claimableBalanceCreated</code>
781
+ <sub><code>claimableBalanceCreated</code></sub>
675
782
  </td>
676
- <td>CreateClaimableBalanceOp, AllowTrustOp, SetTrustLineFlagsOp</td>
783
+ <td><sub>CreateClaimableBalanceOp, AllowTrustOp, SetTrustLineFlagsOp</sub></td>
677
784
  <td>
678
785
 
679
786
  ```js
@@ -683,7 +790,7 @@ ClawbackClaimableBalance, InflationOp</td>
683
790
  sponsor: 'GBWC…DXHN',
684
791
  balance: '7aba…6f9d',
685
792
  asset: 'XLM',
686
- amount: '100',
793
+ amount: '1000000000',
687
794
  claimants: [
688
795
  {
689
796
  destination: 'GBKP…YDLI',
@@ -700,9 +807,9 @@ ClawbackClaimableBalance, InflationOp</td>
700
807
 
701
808
  <tr>
702
809
  <td>
703
- <code>claimableBalanceRemoved</code>
810
+ <sub><code>claimableBalanceRemoved</code></sub>
704
811
  </td>
705
- <td>ClaimClaimableBalanceOp, ClawbackClaimableBalanceOp</td>
812
+ <td><sub>ClaimClaimableBalanceOp, ClawbackClaimableBalanceOp</sub></td>
706
813
  <td>
707
814
 
708
815
  ```js
@@ -712,7 +819,7 @@ ClawbackClaimableBalance, InflationOp</td>
712
819
  sponsor: 'GBWC…DXHN',
713
820
  balance: '7aba…6f9d',
714
821
  asset: 'XLM',
715
- amount: '100',
822
+ amount: '1000000000',
716
823
  claimants: [
717
824
  {
718
825
  destination: 'GBKP…YDLI',
@@ -729,9 +836,9 @@ ClawbackClaimableBalance, InflationOp</td>
729
836
 
730
837
  <tr>
731
838
  <td>
732
- <code>accountSponsorshipCreated</code>
839
+ <sub><code>accountSponsorshipCreated</code></sub>
733
840
  </td>
734
- <td>CreateAccountOp</td>
841
+ <td><sub>CreateAccountOp</sub></td>
735
842
  <td>
736
843
 
737
844
  ```js
@@ -748,9 +855,9 @@ ClawbackClaimableBalance, InflationOp</td>
748
855
 
749
856
  <tr>
750
857
  <td>
751
- <code>accountSponsorshipUpdated</code>
858
+ <sub><code>accountSponsorshipUpdated</code></sub>
752
859
  </td>
753
- <td>RevokeSponsorshipOp</td>
860
+ <td><sub>RevokeSponsorshipOp</sub></td>
754
861
  <td>
755
862
 
756
863
  ```js
@@ -768,9 +875,9 @@ ClawbackClaimableBalance, InflationOp</td>
768
875
 
769
876
  <tr>
770
877
  <td>
771
- <code>accountSponsorshipRemoved</code>
878
+ <sub><code>accountSponsorshipRemoved</code></sub>
772
879
  </td>
773
- <td>RevokeSponsorshipOp</td>
880
+ <td><sub>RevokeSponsorshipOp</sub></td>
774
881
  <td>
775
882
 
776
883
  ```js
@@ -787,9 +894,9 @@ ClawbackClaimableBalance, InflationOp</td>
787
894
 
788
895
  <tr>
789
896
  <td>
790
- <code>trustlineSponsorshipCreated</code>
897
+ <sub><code>trustlineSponsorshipCreated</code></sub>
791
898
  </td>
792
- <td>ChangeThrustOp</td>
899
+ <td><sub>ChangeThrustOp</sub></td>
793
900
  <td>
794
901
 
795
902
  ```js
@@ -807,9 +914,9 @@ ClawbackClaimableBalance, InflationOp</td>
807
914
 
808
915
  <tr>
809
916
  <td>
810
- <code>trustlineSponsorshipUpdated</code>
917
+ <sub><code>trustlineSponsorshipUpdated</code></sub>
811
918
  </td>
812
- <td>RevokeSponsorshipOp</td>
919
+ <td><sub>RevokeSponsorshipOp</sub></td>
813
920
  <td>
814
921
 
815
922
  ```js
@@ -828,9 +935,9 @@ ClawbackClaimableBalance, InflationOp</td>
828
935
 
829
936
  <tr>
830
937
  <td>
831
- <code>trustlineSponsorshipRemoved</code>
938
+ <sub><code>trustlineSponsorshipRemoved</code></sub>
832
939
  </td>
833
- <td>RevokeSponsorshipOp</td>
940
+ <td><sub>RevokeSponsorshipOp</sub></td>
834
941
  <td>
835
942
 
836
943
  ```js
@@ -848,9 +955,9 @@ ClawbackClaimableBalance, InflationOp</td>
848
955
 
849
956
  <tr>
850
957
  <td>
851
- <code>offerSponsorshipCreated</code>
958
+ <sub><code>offerSponsorshipCreated</code></sub>
852
959
  </td>
853
- <td>CreatePassiveOfferOp, ManageBuyOfferOp, ManageSellOfferOp</td>
960
+ <td><sub>CreatePassiveOfferOp, ManageBuyOfferOp, ManageSellOfferOp</sub></td>
854
961
  <td>
855
962
 
856
963
  ```js
@@ -859,7 +966,7 @@ ClawbackClaimableBalance, InflationOp</td>
859
966
  source: 'GBWC…DXHN',
860
967
  sponsor: 'GBWC…DXHN',
861
968
  account: 'GBKP…YDLI',
862
- offer: '100'
969
+ offer: '4523452'
863
970
  }
864
971
  ```
865
972
 
@@ -868,9 +975,9 @@ ClawbackClaimableBalance, InflationOp</td>
868
975
 
869
976
  <tr>
870
977
  <td>
871
- <code>offerSponsorshipUpdated</code>
978
+ <sub><code>offerSponsorshipUpdated</code></sub>
872
979
  </td>
873
- <td>RevokeSponsorshipOp</td>
980
+ <td><sub>RevokeSponsorshipOp</sub></td>
874
981
  <td>
875
982
 
876
983
  ```js
@@ -880,7 +987,7 @@ ClawbackClaimableBalance, InflationOp</td>
880
987
  sponsor: 'GDNP…CMXH',
881
988
  prevSponsor: 'GBWC…DXHN',
882
989
  account: 'GBKP…YDLI',
883
- offer: '100'
990
+ offer: '4523452'
884
991
  }
885
992
  ```
886
993
 
@@ -889,9 +996,9 @@ ClawbackClaimableBalance, InflationOp</td>
889
996
 
890
997
  <tr>
891
998
  <td>
892
- <code>offerSponsorshipRemoved</code>
999
+ <sub><code>offerSponsorshipRemoved</code></sub>
893
1000
  </td>
894
- <td>RevokeSponsorshipOp</td>
1001
+ <td><sub>RevokeSponsorshipOp</sub></td>
895
1002
  <td>
896
1003
 
897
1004
  ```js
@@ -900,7 +1007,7 @@ ClawbackClaimableBalance, InflationOp</td>
900
1007
  source: 'GBWC…DXHN',
901
1008
  prevSponsor: 'GBWC…DXHN',
902
1009
  account: 'GBKP…YDLI',
903
- offer: '100'
1010
+ offer: '4523452'
904
1011
  }
905
1012
  ```
906
1013
 
@@ -909,9 +1016,9 @@ ClawbackClaimableBalance, InflationOp</td>
909
1016
 
910
1017
  <tr>
911
1018
  <td>
912
- <code>dataSponsorshipCreated</code>
1019
+ <sub><code>dataSponsorshipCreated</code></sub>
913
1020
  </td>
914
- <td>CreateDataEntryOp</td>
1021
+ <td><sub>ManageDataOp</sub></td>
915
1022
  <td>
916
1023
 
917
1024
  ```js
@@ -929,9 +1036,9 @@ ClawbackClaimableBalance, InflationOp</td>
929
1036
 
930
1037
  <tr>
931
1038
  <td>
932
- <code>dataSponsorshipUpdated</code>
1039
+ <sub><code>dataSponsorshipUpdated</code></sub>
933
1040
  </td>
934
- <td>RevokeSponsorshipOp</td>
1041
+ <td><sub>RevokeSponsorshipOp</sub></td>
935
1042
  <td>
936
1043
 
937
1044
  ```js
@@ -950,9 +1057,9 @@ ClawbackClaimableBalance, InflationOp</td>
950
1057
 
951
1058
  <tr>
952
1059
  <td>
953
- <code>dataSponsorshipRemoved</code>
1060
+ <sub><code>dataSponsorshipRemoved</code></sub>
954
1061
  </td>
955
- <td>RevokeSponsorshipOp</td>
1062
+ <td><sub>RevokeSponsorshipOp</sub></td>
956
1063
  <td>
957
1064
 
958
1065
  ```js
@@ -970,9 +1077,9 @@ ClawbackClaimableBalance, InflationOp</td>
970
1077
 
971
1078
  <tr>
972
1079
  <td>
973
- <code>claimableBalanceSponsorshipCreated</code>
1080
+ <sub><code>claimableBalanceSponsorshipCreated</code></sub>
974
1081
  </td>
975
- <td>CreateClaimableBalanceOp</td>
1082
+ <td><sub>CreateClaimableBalanceOp</sub></td>
976
1083
  <td>
977
1084
 
978
1085
  ```js
@@ -989,9 +1096,9 @@ ClawbackClaimableBalance, InflationOp</td>
989
1096
 
990
1097
  <tr>
991
1098
  <td>
992
- <code>claimableBalanceSponsorshipUpdated</code>
1099
+ <sub><code>claimableBalanceSponsorshipUpdated</code></sub>
993
1100
  </td>
994
- <td>RevokeSponsorshipOp</td>
1101
+ <td><sub>RevokeSponsorshipOp</sub></td>
995
1102
  <td>
996
1103
 
997
1104
  ```js
@@ -1009,9 +1116,9 @@ ClawbackClaimableBalance, InflationOp</td>
1009
1116
 
1010
1117
  <tr>
1011
1118
  <td>
1012
- <code>claimableBalanceSponsorshipRemoved</code>
1119
+ <sub><code>claimableBalanceSponsorshipRemoved</code></sub>
1013
1120
  </td>
1014
- <td>RevokeSponsorshipOp</td>
1121
+ <td><sub>RevokeSponsorshipOp</sub></td>
1015
1122
  <td>
1016
1123
 
1017
1124
  ```js
@@ -1028,9 +1135,9 @@ ClawbackClaimableBalance, InflationOp</td>
1028
1135
 
1029
1136
  <tr>
1030
1137
  <td>
1031
- <code>signerSponsorshipCreated</code>
1138
+ <sub><code>signerSponsorshipCreated</code></sub>
1032
1139
  </td>
1033
- <td>SetOptionsOp</td>
1140
+ <td><sub>SetOptionsOp</sub></td>
1034
1141
  <td>
1035
1142
 
1036
1143
  ```js
@@ -1048,9 +1155,9 @@ ClawbackClaimableBalance, InflationOp</td>
1048
1155
 
1049
1156
  <tr>
1050
1157
  <td>
1051
- <code>signerSponsorshipUpdated</code>
1158
+ <sub><code>signerSponsorshipUpdated</code></sub>
1052
1159
  </td>
1053
- <td>RevokeSponsorshipOp</td>
1160
+ <td><sub>RevokeSponsorshipOp</sub></td>
1054
1161
  <td>
1055
1162
 
1056
1163
  ```js
@@ -1069,9 +1176,9 @@ ClawbackClaimableBalance, InflationOp</td>
1069
1176
 
1070
1177
  <tr>
1071
1178
  <td>
1072
- <code>signerSponsorshipRemoved</code>
1179
+ <sub><code>signerSponsorshipRemoved</code></sub>
1073
1180
  </td>
1074
- <td>RevokeSponsorshipOp</td>
1181
+ <td><sub>RevokeSponsorshipOp</sub></td>
1075
1182
  <td>
1076
1183
 
1077
1184
  ```js
@@ -1089,9 +1196,9 @@ ClawbackClaimableBalance, InflationOp</td>
1089
1196
 
1090
1197
  <tr>
1091
1198
  <td>
1092
- <code>liquidityPoolSponsorshipCreated</code>
1199
+ <sub><code>liquidityPoolSponsorshipCreated</code></sub>
1093
1200
  </td>
1094
- <td>ChangeThrustOp</td>
1201
+ <td><sub>ChangeThrustOp</sub></td>
1095
1202
  <td>
1096
1203
 
1097
1204
  ```js
@@ -1107,9 +1214,9 @@ ClawbackClaimableBalance, InflationOp</td>
1107
1214
 
1108
1215
  <tr>
1109
1216
  <td>
1110
- <code>liquidityPoolSponsorshipUpdated</code>
1217
+ <sub><code>liquidityPoolSponsorshipUpdated</code></sub>
1111
1218
  </td>
1112
- <td>RevokeSponsorshipOp</td>
1219
+ <td><sub>RevokeSponsorshipOp</sub></td>
1113
1220
  <td>
1114
1221
 
1115
1222
  ```js
@@ -1126,9 +1233,9 @@ ClawbackClaimableBalance, InflationOp</td>
1126
1233
 
1127
1234
  <tr>
1128
1235
  <td>
1129
- <code>liquidityPoolSponsorshipRemoved</code>
1236
+ <sub><code>liquidityPoolSponsorshipRemoved</code></sub>
1130
1237
  </td>
1131
- <td>RevokeSponsorshipOp</td>
1238
+ <td><sub>RevokeSponsorshipOp</sub></td>
1132
1239
  <td>
1133
1240
 
1134
1241
  ```js
@@ -1142,4 +1249,289 @@ ClawbackClaimableBalance, InflationOp</td>
1142
1249
  </td>
1143
1250
  </tr>
1144
1251
 
1252
+ <tr>
1253
+ <td>
1254
+ <sub><code>contractCodeUploaded</code></sub>
1255
+ </td>
1256
+ <td><sub>InvokeHostFunctionOp</sub></td>
1257
+ <td>
1258
+
1259
+ ```js
1260
+ {
1261
+ type: 'contractCodeUploaded',
1262
+ source: 'GBWC…DXHN',
1263
+ wasm: 'AGFz…AAAF',
1264
+ wasmHash: '5c55…e46d',
1265
+ keyHash: 'a833…f27f'
1266
+ }
1267
+ ```
1268
+
1269
+ </td>
1270
+ </tr>
1271
+
1272
+ <tr>
1273
+ <td>
1274
+ <sub><code>contractCodeRemoved</code></sub>
1275
+ </td>
1276
+ <td><sub>InvokeHostFunctionOp</sub></td>
1277
+ <td>
1278
+
1279
+ ```js
1280
+ {
1281
+ type: 'contractCodeRemoved',
1282
+ source: 'GBWC…DXHN',
1283
+ wasmHash: '5c55…e46d',
1284
+ keyHash: 'a833…f27f'
1285
+ }
1286
+ ```
1287
+
1288
+ </td>
1289
+ </tr>
1290
+
1291
+ <tr>
1292
+ <td>
1293
+ <sub><code>contractCreated</code></sub>
1294
+ </td>
1295
+ <td><sub>InvokeHostFunctionOp</sub></td>
1296
+ <td>
1297
+
1298
+ ```js
1299
+ {
1300
+ type: 'contractCreated',
1301
+ source: 'GBWC…DXHN',
1302
+ contract: 'CBIH…AZAD',
1303
+ kind: 'fromAsset',
1304
+ asset: 'ICGVCWUQXIHO-GBD2…FUAC-2'
1305
+ }
1306
+ ```
1307
+
1308
+ </td>
1309
+ </tr>
1310
+
1311
+ <tr>
1312
+ <td>
1313
+ <sub><code>contractUpdated</code></sub>
1314
+ </td>
1315
+ <td><sub>InvokeHostFunctionOp</sub></td>
1316
+ <td>
1317
+
1318
+ ```js
1319
+ {
1320
+ type: 'contractUpdated',
1321
+ source: 'GBWC…DXHN',
1322
+ contract: 'CBIH…AZAD',
1323
+ kind: 'wasm',
1324
+ wasmHash: '5c55…e46d',
1325
+ prevWasmHash: 'eb94…19ae'
1326
+
1327
+ }
1328
+ ```
1329
+
1330
+ </td>
1331
+ </tr>
1332
+
1333
+ <tr>
1334
+ <td>
1335
+ <sub><code>contractInvoked</code></sub>
1336
+ </td>
1337
+ <td><sub>InvokeHostFunctionOp</sub></td>
1338
+ <td>
1339
+
1340
+ ```js
1341
+ {
1342
+ type: 'contractInvoked',
1343
+ source: 'GBWC…DXHN',
1344
+ contract: 'CBIH…AZAD',
1345
+ function: 'mint',
1346
+ rawArgs: 'AAAA…Ag==',
1347
+ depth: 1,
1348
+ args: [
1349
+ 'CDFD…ITT3',
1350
+ '1000'
1351
+ ]
1352
+ }
1353
+ ```
1354
+
1355
+ </td>
1356
+ </tr>
1357
+
1358
+ <tr>
1359
+ <td>
1360
+ <sub><code>contractError</code></sub>
1361
+ </td>
1362
+ <td><sub>InvokeHostFunctionOp</sub></td>
1363
+ <td>
1364
+
1365
+ ```js
1366
+ {
1367
+ type: 'contractError',
1368
+ source: 'GB6V…UIYN',
1369
+ contract: 'CBIH…AZAD',
1370
+ code: 13,
1371
+ details: [
1372
+ 'trustline entry is missing for account',
1373
+ 'GB6V…UIYN'
1374
+ ]
1375
+ }
1376
+ ```
1377
+
1378
+ </td>
1379
+ </tr>
1380
+
1381
+ <tr>
1382
+ <td>
1383
+ <sub><code>contractDataCreated</code></sub>
1384
+ </td>
1385
+ <td><sub>InvokeHostFunctionOp</sub></td>
1386
+ <td>
1387
+
1388
+ ```js
1389
+ {
1390
+ type: 'contractDataCreated',
1391
+ source: 'GC3E…XMJY',
1392
+ owner: 'CCM3…OFJX',
1393
+ key: 'AAAA…0SQ=',
1394
+ value: 'AAAA…AA==',
1395
+ durability: 'persistent',
1396
+ keyHash: '2177…a56a'
1397
+ }
1398
+ ```
1399
+
1400
+ </td>
1401
+ </tr>
1402
+
1403
+ <tr>
1404
+ <td>
1405
+ <sub><code>contractDataUpdated</code></sub>
1406
+ </td>
1407
+ <td><sub>InvokeHostFunctionOp</sub></td>
1408
+ <td>
1409
+
1410
+ ```js
1411
+ {
1412
+ type: 'contractDataUpdated',
1413
+ source: 'GC3E…XMJY',
1414
+ owner: 'CCM3…OFJX',
1415
+ key: 'AAAAFA==',
1416
+ value: 'AAAA…AA==',
1417
+ prevValue: 'AAAA…AAA=',
1418
+ durability: 'persistent',
1419
+ keyHash: '2177…a56a'
1420
+ }
1421
+ ```
1422
+
1423
+ </td>
1424
+ </tr>
1425
+
1426
+ <tr>
1427
+ <td>
1428
+ <sub><code>contractDataRemoved</code></sub>
1429
+ </td>
1430
+ <td><sub>InvokeHostFunctionOp</sub></td>
1431
+ <td>
1432
+
1433
+ ```js
1434
+ {
1435
+ type: 'contractDataRemoved',
1436
+ source: 'GC3E…XMJY',
1437
+ owner: 'CCM3…OFJX',
1438
+ key: 'AAAAFA==',
1439
+ prevValue: 'AAAA…AAA=',
1440
+ durability: 'instance'
1441
+ }
1442
+ ```
1443
+
1444
+ </td>
1445
+ </tr>
1446
+
1447
+ <tr>
1448
+ <td>
1449
+ <sub><code>contractEvent</code></sub>
1450
+ </td>
1451
+ <td><sub>InvokeHostFunctionOp</sub></td>
1452
+ <td>
1453
+
1454
+ ```js
1455
+ {
1456
+ type: 'contractEvent',
1457
+ source: 'GC3E…XMJY',
1458
+ contract: 'CCM3…OFJX',
1459
+ topics: [
1460
+ 'mint',
1461
+ 'GC3E…XMJY',
1462
+ 'CDFD…ITT3',
1463
+ 'AMDL:GC3E…XMJY'
1464
+ ],
1465
+ rawTopics: [
1466
+ 'AAAA…aW50',
1467
+ 'AAAA…gLs=',
1468
+ 'AAAA…JA==',
1469
+ 'AAAA…AAAA'
1470
+ ],
1471
+ data: '1000',
1472
+ rawData: 'AAAA…A+g='
1473
+ }
1474
+ ```
1475
+
1476
+ </td>
1477
+ </tr>
1478
+
1479
+ <tr>
1480
+ <td>
1481
+ <sub><code>contractMetrics</code></sub>
1482
+ </td>
1483
+ <td><sub>InvokeHostFunctionOp</sub></td>
1484
+ <td>
1485
+
1486
+ ```js
1487
+ {
1488
+ type: 'contractMetrics',
1489
+ source: 'GC3E…XMJY',
1490
+ contract: 'CCM3…OFJX',
1491
+ cpu_insn: 25470499,
1492
+ emit_event: 5,
1493
+ emit_event_byte: 1176,
1494
+ invoke_time_nsecs: 2013675,
1495
+ ledger_read_byte: 36624,
1496
+ ledger_write_byte: 1028,
1497
+ max_emit_event_byte: 328,
1498
+ max_rw_code_byte: 16352,
1499
+ max_rw_data_byte: 924,
1500
+ max_rw_key_byte: 160,
1501
+ mem_byte: 10204502,
1502
+ read_code_byte: 33508,
1503
+ read_data_byte: 3116,
1504
+ read_entry: 16,
1505
+ read_key_byte: 1244,
1506
+ write_code_byte: 0,
1507
+ write_data_byte: 1028,
1508
+ write_entry: 5,
1509
+ write_key_byte: 0
1510
+ }
1511
+ ```
1512
+
1513
+ </td>
1514
+ </tr>
1515
+
1516
+ <tr>
1517
+ <td>
1518
+ <sub><code>setTtl</code></sub>
1519
+ </td>
1520
+ <td><sub>ExtendFootprintTTLOp, RestoreFootprintOp</sub></td>
1521
+ <td>
1522
+
1523
+ ```js
1524
+ {
1525
+ type: 'setTtl',
1526
+ source: 'GC3E…XMJY',
1527
+ owner: 'CDAE…EH7T',
1528
+ kind: 'contractData',
1529
+ keyHash: '7594…b429',
1530
+ ttl: 2873856
1531
+ }
1532
+ ```
1533
+
1534
+ </td>
1535
+ </tr>
1536
+
1145
1537
  </table>