@wowok/agent-mcp 2.3.6 → 2.3.8

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.
Files changed (38) hide show
  1. package/dist/index.d.ts +1 -15838
  2. package/dist/index.js +40 -394
  3. package/dist/schema/call/bridge-handler.d.ts +5 -0
  4. package/dist/schema/call/bridge-handler.js +234 -0
  5. package/dist/schema/call/bridge.d.ts +2212 -0
  6. package/dist/schema/call/bridge.js +408 -0
  7. package/dist/schema/call/handler.js +29 -15
  8. package/dist/schema/call/index.d.ts +1 -0
  9. package/dist/schema/call/index.js +1 -0
  10. package/dist/schema/index.d.ts +1 -0
  11. package/dist/schema/index.js +1 -0
  12. package/dist/schema/messenger/index.d.ts +74 -74
  13. package/dist/schema/operations.d.ts +24302 -0
  14. package/dist/schema/operations.js +393 -0
  15. package/dist/schema-query/index.d.ts +3 -1
  16. package/dist/schema-query/index.js +63 -3
  17. package/dist/schemas/account_operation.output.json +1395 -0
  18. package/dist/schemas/bridge_operation.output.json +64 -0
  19. package/dist/schemas/bridge_operation.schema.json +547 -0
  20. package/dist/schemas/guard2file.output.json +84 -0
  21. package/dist/schemas/index.json +33 -14
  22. package/dist/schemas/local_info_operation.output.json +70 -0
  23. package/dist/schemas/local_mark_operation.output.json +114 -0
  24. package/dist/schemas/machineNode2file.output.json +89 -0
  25. package/dist/schemas/messenger_operation.output.json +1068 -0
  26. package/dist/schemas/onchain_events.output.json +513 -0
  27. package/dist/schemas/onchain_operations.output.json +1764 -0
  28. package/dist/schemas/onchain_operations.schema.json +8324 -49
  29. package/dist/schemas/onchain_table_data.output.json +1938 -0
  30. package/dist/schemas/onchain_table_data.schema.json +483 -22
  31. package/dist/schemas/query_toolkit.output.json +18 -0
  32. package/dist/schemas/query_toolkit.schema.json +454 -19
  33. package/dist/schemas/schema_query.output.json +42 -0
  34. package/dist/schemas/schema_query.schema.json +1 -0
  35. package/dist/schemas/wip_file.output.json +116 -0
  36. package/dist/schemas/wip_file.schema.json +163 -15
  37. package/dist/schemas/wowok_buildin_info.output.json +577 -0
  38. package/package.json +2 -3
@@ -0,0 +1,1764 @@
1
+ {
2
+ "$schema": "http://json-schema.org/draft-07/schema#",
3
+ "$id": "https://wowok.net/schemas/onchain_operations.json",
4
+ "title": "On-chain Operations",
5
+ "description": "On-chain operations for WoWok objects: service, machine, progress, repository, arbitration, contact, treasury, reward, allocation, permission, guard, personal, payment, demand, order, gen_passport.",
6
+ "$ref": "#/definitions/onchain_operations",
7
+ "definitions": {
8
+ "onchain_operations": {
9
+ "type": "object",
10
+ "properties": {
11
+ "result": {
12
+ "anyOf": [
13
+ {
14
+ "type": "object",
15
+ "properties": {
16
+ "type": {
17
+ "type": "string",
18
+ "const": "submission",
19
+ "description": "Type of call response: submission"
20
+ },
21
+ "guard": {
22
+ "type": "array",
23
+ "items": {
24
+ "type": "object",
25
+ "properties": {
26
+ "object": {
27
+ "type": "string",
28
+ "description": "Guard object name or ID."
29
+ },
30
+ "impack": {
31
+ "type": "boolean",
32
+ "description": "Whether the verification result of this Guard participates in the final verification logic. If true, the verification result of this Guard will be included in the final verification result; if false, the verification result of this Guard will not be included."
33
+ }
34
+ },
35
+ "required": [
36
+ "object",
37
+ "impack"
38
+ ],
39
+ "additionalProperties": false
40
+ }
41
+ },
42
+ "submission": {
43
+ "type": "array",
44
+ "items": {
45
+ "type": "object",
46
+ "properties": {
47
+ "guard": {
48
+ "$ref": "#/definitions/onchain_operations/properties/result/anyOf/0/properties/guard/items/properties/object",
49
+ "description": "Guard object name or ID."
50
+ },
51
+ "submission": {
52
+ "type": "array",
53
+ "items": {
54
+ "type": "object",
55
+ "properties": {
56
+ "identifier": {
57
+ "type": "integer",
58
+ "minimum": 0,
59
+ "maximum": 255,
60
+ "description": "Identifier (0-255) for data lookup in Guard table."
61
+ },
62
+ "b_submission": {
63
+ "type": "boolean",
64
+ "description": "Whether user submission is required for this data"
65
+ },
66
+ "value_type": {
67
+ "anyOf": [
68
+ {
69
+ "type": "number",
70
+ "const": 0,
71
+ "description": "Bool (0)"
72
+ },
73
+ {
74
+ "type": "number",
75
+ "const": 1,
76
+ "description": "Address (1)"
77
+ },
78
+ {
79
+ "type": "number",
80
+ "const": 2,
81
+ "description": "String (2)"
82
+ },
83
+ {
84
+ "type": "number",
85
+ "const": 3,
86
+ "description": "U8 (3)"
87
+ },
88
+ {
89
+ "type": "number",
90
+ "const": 4,
91
+ "description": "U16 (4)"
92
+ },
93
+ {
94
+ "type": "number",
95
+ "const": 5,
96
+ "description": "U32 (5)"
97
+ },
98
+ {
99
+ "type": "number",
100
+ "const": 6,
101
+ "description": "U64 (6)"
102
+ },
103
+ {
104
+ "type": "number",
105
+ "const": 7,
106
+ "description": "U128 (7)"
107
+ },
108
+ {
109
+ "type": "number",
110
+ "const": 8,
111
+ "description": "U256 (8)"
112
+ },
113
+ {
114
+ "type": "number",
115
+ "const": 9,
116
+ "description": "VecBool (9)"
117
+ },
118
+ {
119
+ "type": "number",
120
+ "const": 10,
121
+ "description": "VecAddress (10)"
122
+ },
123
+ {
124
+ "type": "number",
125
+ "const": 11,
126
+ "description": "VecString (11)"
127
+ },
128
+ {
129
+ "type": "number",
130
+ "const": 12,
131
+ "description": "VecU8 (12)"
132
+ },
133
+ {
134
+ "type": "number",
135
+ "const": 13,
136
+ "description": "VecU16 (13)"
137
+ },
138
+ {
139
+ "type": "number",
140
+ "const": 14,
141
+ "description": "VecU32 (14)"
142
+ },
143
+ {
144
+ "type": "number",
145
+ "const": 15,
146
+ "description": "VecU64 (15)"
147
+ },
148
+ {
149
+ "type": "number",
150
+ "const": 16,
151
+ "description": "VecU128 (16)"
152
+ },
153
+ {
154
+ "type": "number",
155
+ "const": 17,
156
+ "description": "VecU256 (17)"
157
+ },
158
+ {
159
+ "type": "number",
160
+ "const": 18,
161
+ "description": "VecVecU8 (18)"
162
+ },
163
+ {
164
+ "type": "string",
165
+ "const": "Bool",
166
+ "description": "Bool"
167
+ },
168
+ {
169
+ "type": "string",
170
+ "const": "Address",
171
+ "description": "Address"
172
+ },
173
+ {
174
+ "type": "string",
175
+ "const": "String",
176
+ "description": "String"
177
+ },
178
+ {
179
+ "type": "string",
180
+ "const": "U8",
181
+ "description": "U8"
182
+ },
183
+ {
184
+ "type": "string",
185
+ "const": "U16",
186
+ "description": "U16"
187
+ },
188
+ {
189
+ "type": "string",
190
+ "const": "U32",
191
+ "description": "U32"
192
+ },
193
+ {
194
+ "type": "string",
195
+ "const": "U64",
196
+ "description": "U64"
197
+ },
198
+ {
199
+ "type": "string",
200
+ "const": "U128",
201
+ "description": "U128"
202
+ },
203
+ {
204
+ "type": "string",
205
+ "const": "U256",
206
+ "description": "U256"
207
+ },
208
+ {
209
+ "type": "string",
210
+ "const": "VecBool",
211
+ "description": "VecBool"
212
+ },
213
+ {
214
+ "type": "string",
215
+ "const": "VecAddress",
216
+ "description": "VecAddress"
217
+ },
218
+ {
219
+ "type": "string",
220
+ "const": "VecString",
221
+ "description": "VecString"
222
+ },
223
+ {
224
+ "type": "string",
225
+ "const": "VecU8",
226
+ "description": "VecU8"
227
+ },
228
+ {
229
+ "type": "string",
230
+ "const": "VecU16",
231
+ "description": "VecU16"
232
+ },
233
+ {
234
+ "type": "string",
235
+ "const": "VecU32",
236
+ "description": "VecU32"
237
+ },
238
+ {
239
+ "type": "string",
240
+ "const": "VecU64",
241
+ "description": "VecU64"
242
+ },
243
+ {
244
+ "type": "string",
245
+ "const": "VecU128",
246
+ "description": "VecU128"
247
+ },
248
+ {
249
+ "type": "string",
250
+ "const": "VecU256",
251
+ "description": "VecU256"
252
+ },
253
+ {
254
+ "type": "string",
255
+ "const": "VecVecU8",
256
+ "description": "VecVecU8"
257
+ },
258
+ {
259
+ "type": "string",
260
+ "const": "bool",
261
+ "description": "bool"
262
+ },
263
+ {
264
+ "type": "string",
265
+ "const": "address",
266
+ "description": "address"
267
+ },
268
+ {
269
+ "type": "string",
270
+ "const": "string",
271
+ "description": "string"
272
+ },
273
+ {
274
+ "type": "string",
275
+ "const": "u8",
276
+ "description": "u8"
277
+ },
278
+ {
279
+ "type": "string",
280
+ "const": "u16",
281
+ "description": "u16"
282
+ },
283
+ {
284
+ "type": "string",
285
+ "const": "u32",
286
+ "description": "u32"
287
+ },
288
+ {
289
+ "type": "string",
290
+ "const": "u64",
291
+ "description": "u64"
292
+ },
293
+ {
294
+ "type": "string",
295
+ "const": "u128",
296
+ "description": "u128"
297
+ },
298
+ {
299
+ "type": "string",
300
+ "const": "u256",
301
+ "description": "u256"
302
+ },
303
+ {
304
+ "type": "string",
305
+ "const": "vecbool",
306
+ "description": "vecbool"
307
+ },
308
+ {
309
+ "type": "string",
310
+ "const": "vecaddress",
311
+ "description": "vecaddress"
312
+ },
313
+ {
314
+ "type": "string",
315
+ "const": "vecstring",
316
+ "description": "vecstring"
317
+ },
318
+ {
319
+ "type": "string",
320
+ "const": "vecu8",
321
+ "description": "vecu8"
322
+ },
323
+ {
324
+ "type": "string",
325
+ "const": "vecu16",
326
+ "description": "vecu16"
327
+ },
328
+ {
329
+ "type": "string",
330
+ "const": "vecu32",
331
+ "description": "vecu32"
332
+ },
333
+ {
334
+ "type": "string",
335
+ "const": "vecu64",
336
+ "description": "vecu64"
337
+ },
338
+ {
339
+ "type": "string",
340
+ "const": "vecu128",
341
+ "description": "vecu128"
342
+ },
343
+ {
344
+ "type": "string",
345
+ "const": "vecu256",
346
+ "description": "vecu256"
347
+ },
348
+ {
349
+ "type": "string",
350
+ "const": "vecvecu8",
351
+ "description": "vecvecu8"
352
+ }
353
+ ],
354
+ "description": "Type of the value"
355
+ },
356
+ "value": {
357
+ "anyOf": [
358
+ {
359
+ "type": "boolean"
360
+ },
361
+ {
362
+ "anyOf": [
363
+ {
364
+ "type": "object",
365
+ "properties": {
366
+ "name_or_address": {
367
+ "$ref": "#/definitions/onchain_operations/properties/result/anyOf/0/properties/guard/items/properties/object",
368
+ "description": "Account/Object name or ID. If specifying an account, use empty string '' for the default account. If it starts with '0x', it will be treated as an ID. Otherwise, it will be treated as a name (max 64 bcs characters)."
369
+ },
370
+ "local_mark_first": {
371
+ "type": "boolean",
372
+ "description": "Whether to prioritize local marks, if true, prioritize local marks, otherwise prioritize global marks"
373
+ }
374
+ },
375
+ "additionalProperties": false,
376
+ "description": "Account or address lookup object. Use this to specify which account to use for an operation. EXAMPLE: { name_or_address: 'testor2' } - looks up account by name; EXAMPLE: { name_or_address: '0x1234...' } - uses address directly; If name_or_address is empty string '', uses the default local account."
377
+ },
378
+ {
379
+ "type": "string"
380
+ }
381
+ ]
382
+ },
383
+ {
384
+ "type": "string"
385
+ },
386
+ {
387
+ "type": "number"
388
+ },
389
+ {
390
+ "type": "array",
391
+ "items": {
392
+ "type": "boolean"
393
+ }
394
+ },
395
+ {
396
+ "anyOf": [
397
+ {
398
+ "type": "object",
399
+ "properties": {
400
+ "entities": {
401
+ "type": "array",
402
+ "items": {
403
+ "$ref": "#/definitions/onchain_operations/properties/result/anyOf/0/properties/submission/items/properties/submission/items/properties/value/anyOf/1/anyOf/0"
404
+ }
405
+ },
406
+ "check_all_founded": {
407
+ "type": "boolean",
408
+ "description": "Whether to check all entities are found, if true, all entities must be found (abort and throw exception if any ID not found); if false, only return found IDs"
409
+ }
410
+ },
411
+ "required": [
412
+ "entities"
413
+ ],
414
+ "additionalProperties": false,
415
+ "description": "Used to batch find account or object IDs by name"
416
+ },
417
+ {
418
+ "type": "array",
419
+ "items": {
420
+ "type": "string"
421
+ }
422
+ }
423
+ ]
424
+ },
425
+ {
426
+ "type": "array",
427
+ "items": {
428
+ "type": "string"
429
+ }
430
+ },
431
+ {
432
+ "type": "array",
433
+ "items": {
434
+ "type": "number"
435
+ }
436
+ },
437
+ {
438
+ "type": "array",
439
+ "items": {
440
+ "type": "array",
441
+ "items": {
442
+ "type": "number"
443
+ }
444
+ }
445
+ }
446
+ ],
447
+ "description": "The actual value data"
448
+ },
449
+ "name": {
450
+ "type": "string",
451
+ "default": "",
452
+ "description": "Name or description of this data"
453
+ },
454
+ "object_type": {
455
+ "type": "string",
456
+ "enum": [
457
+ "Permission",
458
+ "Repository",
459
+ "Arb",
460
+ "Arbitration",
461
+ "Service",
462
+ "Machine",
463
+ "Order",
464
+ "Progress",
465
+ "Payment",
466
+ "Treasury",
467
+ "Guard",
468
+ "Demand",
469
+ "Passport",
470
+ "Allocation",
471
+ "Resource",
472
+ "Reward",
473
+ "Discount",
474
+ "EntityRegistrar",
475
+ "EntityLinker",
476
+ "Proof",
477
+ "WReceivedObject",
478
+ "Contact",
479
+ "TableItem_ProgressHistory",
480
+ "TableItem_PermissionPerm",
481
+ "TableItem_DemandPresenter",
482
+ "TableItem_MachineNode",
483
+ "TableItem_TreasuryHistory",
484
+ "TableItem_RepositoryData",
485
+ "TableItem_RewardRecord",
486
+ "TableItem_EntityLinker",
487
+ "TableItem_AddressMark",
488
+ "TableItem_EntityRegistrar"
489
+ ],
490
+ "description": "Object type when value_type is Address and represents a specific object"
491
+ }
492
+ },
493
+ "required": [
494
+ "identifier",
495
+ "b_submission",
496
+ "value_type"
497
+ ],
498
+ "additionalProperties": false,
499
+ "description": "Guard table item"
500
+ },
501
+ "description": "User-submitted data required for Guard verification."
502
+ }
503
+ },
504
+ "required": [
505
+ "guard",
506
+ "submission"
507
+ ],
508
+ "additionalProperties": false,
509
+ "description": "Permission guard submission data."
510
+ }
511
+ }
512
+ },
513
+ "required": [
514
+ "type",
515
+ "guard",
516
+ "submission"
517
+ ],
518
+ "additionalProperties": false,
519
+ "description": "Guard verification submission data required to complete an operation. Contains: (1) 'guard' - array of Guard objects to verify, each with an object ID and an 'impack' flag indicating if its result affects the final outcome; (2) 'submission' - array of user data submissions matching the Guard's requirements. The operation proceeds only after all Guards with impack=true are successfully verified."
520
+ },
521
+ {
522
+ "type": "object",
523
+ "properties": {
524
+ "balanceChanges": {
525
+ "anyOf": [
526
+ {
527
+ "type": "array",
528
+ "items": {
529
+ "type": "object",
530
+ "properties": {
531
+ "amount": {
532
+ "type": "string",
533
+ "description": "Balance change value, negative for spending, positive for receiving"
534
+ },
535
+ "coinType": {
536
+ "type": "string",
537
+ "description": "Coin type"
538
+ },
539
+ "owner": {
540
+ "anyOf": [
541
+ {
542
+ "type": "object",
543
+ "properties": {
544
+ "AddressOwner": {
545
+ "type": "string",
546
+ "description": "Address owner"
547
+ }
548
+ },
549
+ "required": [
550
+ "AddressOwner"
551
+ ],
552
+ "additionalProperties": false
553
+ },
554
+ {
555
+ "type": "object",
556
+ "properties": {
557
+ "ObjectOwner": {
558
+ "type": "string",
559
+ "description": "Object owner"
560
+ }
561
+ },
562
+ "required": [
563
+ "ObjectOwner"
564
+ ],
565
+ "additionalProperties": false
566
+ },
567
+ {
568
+ "type": "object",
569
+ "properties": {
570
+ "Shared": {
571
+ "type": "object",
572
+ "properties": {
573
+ "initial_shared_version": {
574
+ "type": [
575
+ "string",
576
+ "number"
577
+ ],
578
+ "description": "Version when object became shared"
579
+ }
580
+ },
581
+ "required": [
582
+ "initial_shared_version"
583
+ ],
584
+ "additionalProperties": false,
585
+ "description": "Shared object"
586
+ }
587
+ },
588
+ "required": [
589
+ "Shared"
590
+ ],
591
+ "additionalProperties": false
592
+ },
593
+ {
594
+ "type": "string",
595
+ "const": "Immutable"
596
+ },
597
+ {
598
+ "type": "object",
599
+ "properties": {
600
+ "ConsensusAddressOwner": {
601
+ "type": "object",
602
+ "properties": {
603
+ "owner": {
604
+ "type": "string",
605
+ "description": "Consensus ID owner"
606
+ },
607
+ "start_version": {
608
+ "type": [
609
+ "string",
610
+ "number"
611
+ ],
612
+ "description": "Version when object recently became consensus object"
613
+ }
614
+ },
615
+ "required": [
616
+ "owner",
617
+ "start_version"
618
+ ],
619
+ "additionalProperties": false,
620
+ "description": "Consensus ID owner"
621
+ }
622
+ },
623
+ "required": [
624
+ "ConsensusAddressOwner"
625
+ ],
626
+ "additionalProperties": false
627
+ }
628
+ ],
629
+ "description": "Owner of the balance change"
630
+ }
631
+ },
632
+ "required": [
633
+ "amount",
634
+ "coinType",
635
+ "owner"
636
+ ],
637
+ "additionalProperties": false,
638
+ "description": "Balance change"
639
+ }
640
+ },
641
+ {
642
+ "type": "null"
643
+ }
644
+ ],
645
+ "description": "Balance changes"
646
+ },
647
+ "checkpoint": {
648
+ "type": [
649
+ "string",
650
+ "null"
651
+ ],
652
+ "description": "Checkpoint number that this transaction is included in and thus completed"
653
+ },
654
+ "confirmedLocalExecution": {
655
+ "type": [
656
+ "boolean",
657
+ "null"
658
+ ],
659
+ "description": "Confirmed local execution"
660
+ },
661
+ "digest": {
662
+ "type": "string",
663
+ "description": "Transaction digest"
664
+ },
665
+ "effects": {
666
+ "anyOf": [
667
+ {
668
+ "type": "object",
669
+ "properties": {
670
+ "abortError": {
671
+ "anyOf": [
672
+ {
673
+ "type": "object",
674
+ "properties": {
675
+ "error_code": {
676
+ "type": [
677
+ "string",
678
+ "null"
679
+ ],
680
+ "description": "Error code"
681
+ },
682
+ "function": {
683
+ "type": [
684
+ "string",
685
+ "null"
686
+ ],
687
+ "description": "Function"
688
+ },
689
+ "line": {
690
+ "type": [
691
+ "number",
692
+ "null"
693
+ ],
694
+ "description": "Line number"
695
+ },
696
+ "module_id": {
697
+ "type": [
698
+ "string",
699
+ "null"
700
+ ],
701
+ "description": "Module ID"
702
+ }
703
+ },
704
+ "additionalProperties": false,
705
+ "description": "Wow Move abort"
706
+ },
707
+ {
708
+ "type": "null"
709
+ }
710
+ ],
711
+ "description": "Abort error if transaction failed with abort code"
712
+ },
713
+ "created": {
714
+ "type": "array",
715
+ "items": {
716
+ "type": "object",
717
+ "properties": {
718
+ "owner": {
719
+ "anyOf": [
720
+ {
721
+ "$ref": "#/definitions/onchain_operations/properties/result/anyOf/1/properties/balanceChanges/anyOf/0/items/properties/owner/anyOf/0"
722
+ },
723
+ {
724
+ "$ref": "#/definitions/onchain_operations/properties/result/anyOf/1/properties/balanceChanges/anyOf/0/items/properties/owner/anyOf/1"
725
+ },
726
+ {
727
+ "$ref": "#/definitions/onchain_operations/properties/result/anyOf/1/properties/balanceChanges/anyOf/0/items/properties/owner/anyOf/2"
728
+ },
729
+ {
730
+ "$ref": "#/definitions/onchain_operations/properties/result/anyOf/1/properties/balanceChanges/anyOf/0/items/properties/owner/anyOf/3"
731
+ },
732
+ {
733
+ "$ref": "#/definitions/onchain_operations/properties/result/anyOf/1/properties/balanceChanges/anyOf/0/items/properties/owner/anyOf/4"
734
+ }
735
+ ],
736
+ "description": "Owner"
737
+ },
738
+ "reference": {
739
+ "type": "object",
740
+ "properties": {
741
+ "digest": {
742
+ "type": "string",
743
+ "description": "Base64 string of object digest"
744
+ },
745
+ "objectId": {
746
+ "type": "string",
747
+ "description": "Hex code string representing object ID"
748
+ },
749
+ "version": {
750
+ "type": [
751
+ "string",
752
+ "number"
753
+ ],
754
+ "description": "Object version"
755
+ }
756
+ },
757
+ "required": [
758
+ "digest",
759
+ "objectId",
760
+ "version"
761
+ ],
762
+ "additionalProperties": false,
763
+ "description": "Object reference"
764
+ }
765
+ },
766
+ "required": [
767
+ "owner",
768
+ "reference"
769
+ ],
770
+ "additionalProperties": false,
771
+ "description": "Owned object reference"
772
+ },
773
+ "description": "ObjectRef and owner of newly created objects"
774
+ },
775
+ "deleted": {
776
+ "type": "array",
777
+ "items": {
778
+ "type": "object",
779
+ "properties": {
780
+ "digest": {
781
+ "$ref": "#/definitions/onchain_operations/properties/result/anyOf/1/properties/effects/anyOf/0/properties/created/items/properties/reference/properties/digest"
782
+ },
783
+ "objectId": {
784
+ "$ref": "#/definitions/onchain_operations/properties/result/anyOf/1/properties/effects/anyOf/0/properties/created/items/properties/reference/properties/objectId"
785
+ },
786
+ "version": {
787
+ "$ref": "#/definitions/onchain_operations/properties/result/anyOf/1/properties/effects/anyOf/0/properties/created/items/properties/reference/properties/version"
788
+ }
789
+ },
790
+ "required": [
791
+ "digest",
792
+ "objectId",
793
+ "version"
794
+ ],
795
+ "additionalProperties": false,
796
+ "description": "Wow object reference"
797
+ },
798
+ "description": "Object references (old refs) of now deleted objects"
799
+ },
800
+ "dependencies": {
801
+ "type": "array",
802
+ "items": {
803
+ "type": "string"
804
+ },
805
+ "description": "Set of transaction digests this transaction depends on"
806
+ },
807
+ "eventsDigest": {
808
+ "type": [
809
+ "string",
810
+ "null"
811
+ ],
812
+ "description": "Digest of events emitted during execution"
813
+ },
814
+ "executedEpoch": {
815
+ "type": [
816
+ "string",
817
+ "number"
818
+ ],
819
+ "description": "Epoch in which this transaction was executed"
820
+ },
821
+ "gasObject": {
822
+ "type": "object",
823
+ "properties": {
824
+ "owner": {
825
+ "$ref": "#/definitions/onchain_operations/properties/result/anyOf/1/properties/effects/anyOf/0/properties/created/items/properties/owner"
826
+ },
827
+ "reference": {
828
+ "$ref": "#/definitions/onchain_operations/properties/result/anyOf/1/properties/effects/anyOf/0/properties/created/items/properties/reference"
829
+ }
830
+ },
831
+ "required": [
832
+ "owner",
833
+ "reference"
834
+ ],
835
+ "additionalProperties": false,
836
+ "description": "Updated gas object reference"
837
+ },
838
+ "gasUsed": {
839
+ "type": "object",
840
+ "properties": {
841
+ "computationCost": {
842
+ "type": "string",
843
+ "description": "Computation/execution cost"
844
+ },
845
+ "nonRefundableStorageFee": {
846
+ "type": "string",
847
+ "description": "Non-refundable storage fee"
848
+ },
849
+ "storageCost": {
850
+ "type": "string",
851
+ "description": "Storage cost"
852
+ },
853
+ "storageRebate": {
854
+ "type": "string",
855
+ "description": "Storage rebate"
856
+ }
857
+ },
858
+ "required": [
859
+ "computationCost",
860
+ "nonRefundableStorageFee",
861
+ "storageCost",
862
+ "storageRebate"
863
+ ],
864
+ "additionalProperties": false,
865
+ "description": "Gas used"
866
+ },
867
+ "messageVersion": {
868
+ "type": "string",
869
+ "const": "v1",
870
+ "description": "Message version"
871
+ },
872
+ "modifiedAtVersions": {
873
+ "type": "array",
874
+ "items": {
875
+ "type": "object",
876
+ "properties": {
877
+ "objectId": {
878
+ "type": "string",
879
+ "description": "Object ID"
880
+ },
881
+ "sequenceNumber": {
882
+ "type": [
883
+ "string",
884
+ "number"
885
+ ],
886
+ "description": "Sequence number"
887
+ }
888
+ },
889
+ "required": [
890
+ "objectId",
891
+ "sequenceNumber"
892
+ ],
893
+ "additionalProperties": false,
894
+ "description": "Transaction block effects modified versions"
895
+ },
896
+ "description": "Version of each modified (mutated or deleted) object before this transaction modified it"
897
+ },
898
+ "mutated": {
899
+ "type": "array",
900
+ "items": {
901
+ "$ref": "#/definitions/onchain_operations/properties/result/anyOf/1/properties/effects/anyOf/0/properties/created/items"
902
+ },
903
+ "description": "ObjectRef and owner of mutated objects, including gas object"
904
+ },
905
+ "sharedObjects": {
906
+ "type": "array",
907
+ "items": {
908
+ "$ref": "#/definitions/onchain_operations/properties/result/anyOf/1/properties/effects/anyOf/0/properties/deleted/items"
909
+ },
910
+ "description": "Object references of shared objects used in this transaction"
911
+ },
912
+ "status": {
913
+ "type": "object",
914
+ "properties": {
915
+ "status": {
916
+ "type": "string",
917
+ "enum": [
918
+ "success",
919
+ "failure"
920
+ ],
921
+ "description": "Execution status"
922
+ },
923
+ "error": {
924
+ "type": "string",
925
+ "description": "Error message"
926
+ }
927
+ },
928
+ "required": [
929
+ "status"
930
+ ],
931
+ "additionalProperties": false,
932
+ "description": "Execution status"
933
+ },
934
+ "transactionDigest": {
935
+ "type": "string",
936
+ "description": "Transaction digest"
937
+ },
938
+ "unwrapped": {
939
+ "type": "array",
940
+ "items": {
941
+ "$ref": "#/definitions/onchain_operations/properties/result/anyOf/1/properties/effects/anyOf/0/properties/created/items"
942
+ },
943
+ "description": "ObjectRef and owner of objects unwrapped in this transaction"
944
+ },
945
+ "unwrappedThenDeleted": {
946
+ "type": "array",
947
+ "items": {
948
+ "$ref": "#/definitions/onchain_operations/properties/result/anyOf/1/properties/effects/anyOf/0/properties/deleted/items"
949
+ },
950
+ "description": "Object references of objects previously wrapped in other objects but now deleted"
951
+ },
952
+ "wrapped": {
953
+ "type": "array",
954
+ "items": {
955
+ "$ref": "#/definitions/onchain_operations/properties/result/anyOf/1/properties/effects/anyOf/0/properties/deleted/items"
956
+ },
957
+ "description": "Object references of objects now wrapped in other objects"
958
+ }
959
+ },
960
+ "required": [
961
+ "executedEpoch",
962
+ "gasObject",
963
+ "gasUsed",
964
+ "messageVersion",
965
+ "status",
966
+ "transactionDigest"
967
+ ],
968
+ "additionalProperties": false,
969
+ "description": "Transaction effects"
970
+ },
971
+ {
972
+ "type": "null"
973
+ }
974
+ ],
975
+ "description": "Transaction effects"
976
+ },
977
+ "errors": {
978
+ "type": "array",
979
+ "items": {
980
+ "type": "string"
981
+ },
982
+ "description": "Error messages"
983
+ },
984
+ "events": {
985
+ "anyOf": [
986
+ {
987
+ "type": "array",
988
+ "items": {
989
+ "anyOf": [
990
+ {
991
+ "type": "object",
992
+ "properties": {
993
+ "id": {
994
+ "type": "object",
995
+ "properties": {
996
+ "eventSeq": {
997
+ "type": [
998
+ "string",
999
+ "number"
1000
+ ],
1001
+ "description": "Event sequence number"
1002
+ },
1003
+ "txDigest": {
1004
+ "type": "string",
1005
+ "description": "Transaction digest"
1006
+ }
1007
+ },
1008
+ "required": [
1009
+ "eventSeq",
1010
+ "txDigest"
1011
+ ],
1012
+ "additionalProperties": false,
1013
+ "description": "Event ID"
1014
+ },
1015
+ "packageId": {
1016
+ "type": "string",
1017
+ "description": "Package ID where event originated"
1018
+ },
1019
+ "parsedJson": {
1020
+ "type": "object",
1021
+ "additionalProperties": {
1022
+ "type": [
1023
+ "string",
1024
+ "number",
1025
+ "boolean"
1026
+ ]
1027
+ },
1028
+ "description": "Parsed JSON value of the event"
1029
+ },
1030
+ "sender": {
1031
+ "type": "string",
1032
+ "description": "Sender's address"
1033
+ },
1034
+ "timestampMs": {
1035
+ "type": [
1036
+ "string",
1037
+ "null"
1038
+ ],
1039
+ "description": "UTC timestamp in milliseconds since epoch"
1040
+ },
1041
+ "transactionModule": {
1042
+ "type": "string",
1043
+ "description": "Module where event originated"
1044
+ },
1045
+ "type": {
1046
+ "type": "string",
1047
+ "description": "Move event type"
1048
+ },
1049
+ "bcs": {
1050
+ "type": "string",
1051
+ "description": "BCS encoded event"
1052
+ },
1053
+ "bcsEncoding": {
1054
+ "type": "string",
1055
+ "const": "base64",
1056
+ "description": "BCS encoding format"
1057
+ }
1058
+ },
1059
+ "required": [
1060
+ "id",
1061
+ "packageId",
1062
+ "parsedJson",
1063
+ "sender",
1064
+ "transactionModule",
1065
+ "type",
1066
+ "bcs",
1067
+ "bcsEncoding"
1068
+ ],
1069
+ "additionalProperties": false
1070
+ },
1071
+ {
1072
+ "type": "object",
1073
+ "properties": {
1074
+ "id": {
1075
+ "type": "object",
1076
+ "properties": {
1077
+ "eventSeq": {
1078
+ "$ref": "#/definitions/onchain_operations/properties/result/anyOf/1/properties/events/anyOf/0/items/anyOf/0/properties/id/properties/eventSeq"
1079
+ },
1080
+ "txDigest": {
1081
+ "$ref": "#/definitions/onchain_operations/properties/result/anyOf/1/properties/events/anyOf/0/items/anyOf/0/properties/id/properties/txDigest"
1082
+ }
1083
+ },
1084
+ "required": [
1085
+ "eventSeq",
1086
+ "txDigest"
1087
+ ],
1088
+ "additionalProperties": false,
1089
+ "description": "Event ID"
1090
+ },
1091
+ "packageId": {
1092
+ "type": "string",
1093
+ "description": "Package ID where event originated"
1094
+ },
1095
+ "parsedJson": {
1096
+ "type": "object",
1097
+ "additionalProperties": {
1098
+ "type": [
1099
+ "string",
1100
+ "number",
1101
+ "boolean"
1102
+ ]
1103
+ },
1104
+ "description": "Parsed JSON value of the event"
1105
+ },
1106
+ "sender": {
1107
+ "type": "string",
1108
+ "description": "Sender's ID"
1109
+ },
1110
+ "timestampMs": {
1111
+ "type": [
1112
+ "string",
1113
+ "null"
1114
+ ],
1115
+ "description": "UTC timestamp in milliseconds since epoch"
1116
+ },
1117
+ "transactionModule": {
1118
+ "type": "string",
1119
+ "description": "Module where event originated"
1120
+ },
1121
+ "type": {
1122
+ "type": "string",
1123
+ "description": "Move event type"
1124
+ },
1125
+ "bcs": {
1126
+ "type": "string",
1127
+ "description": "BCS encoded event"
1128
+ },
1129
+ "bcsEncoding": {
1130
+ "type": "string",
1131
+ "const": "base58",
1132
+ "description": "BCS encoding format"
1133
+ }
1134
+ },
1135
+ "required": [
1136
+ "id",
1137
+ "packageId",
1138
+ "parsedJson",
1139
+ "sender",
1140
+ "transactionModule",
1141
+ "type",
1142
+ "bcs",
1143
+ "bcsEncoding"
1144
+ ],
1145
+ "additionalProperties": false
1146
+ }
1147
+ ],
1148
+ "description": "Blockchain event"
1149
+ }
1150
+ },
1151
+ {
1152
+ "type": "null"
1153
+ }
1154
+ ],
1155
+ "description": "Events"
1156
+ },
1157
+ "objectChanges": {
1158
+ "anyOf": [
1159
+ {
1160
+ "type": "array",
1161
+ "items": {
1162
+ "anyOf": [
1163
+ {
1164
+ "type": "object",
1165
+ "properties": {
1166
+ "type": {
1167
+ "type": "string",
1168
+ "const": "published"
1169
+ },
1170
+ "digest": {
1171
+ "type": "string",
1172
+ "description": "Digest"
1173
+ },
1174
+ "modules": {
1175
+ "type": "array",
1176
+ "items": {
1177
+ "type": "string"
1178
+ },
1179
+ "description": "Modules"
1180
+ },
1181
+ "packageId": {
1182
+ "type": "string",
1183
+ "description": "Package ID"
1184
+ },
1185
+ "version": {
1186
+ "type": [
1187
+ "string",
1188
+ "number"
1189
+ ],
1190
+ "description": "Version"
1191
+ }
1192
+ },
1193
+ "required": [
1194
+ "type",
1195
+ "digest",
1196
+ "modules",
1197
+ "packageId",
1198
+ "version"
1199
+ ],
1200
+ "additionalProperties": false
1201
+ },
1202
+ {
1203
+ "type": "object",
1204
+ "properties": {
1205
+ "type": {
1206
+ "type": "string",
1207
+ "const": "transferred"
1208
+ },
1209
+ "digest": {
1210
+ "type": "string",
1211
+ "description": "Digest"
1212
+ },
1213
+ "objectId": {
1214
+ "type": "string",
1215
+ "description": "Object ID"
1216
+ },
1217
+ "objectType": {
1218
+ "type": "string",
1219
+ "description": "Object type"
1220
+ },
1221
+ "recipient": {
1222
+ "anyOf": [
1223
+ {
1224
+ "$ref": "#/definitions/onchain_operations/properties/result/anyOf/1/properties/balanceChanges/anyOf/0/items/properties/owner/anyOf/0"
1225
+ },
1226
+ {
1227
+ "$ref": "#/definitions/onchain_operations/properties/result/anyOf/1/properties/balanceChanges/anyOf/0/items/properties/owner/anyOf/1"
1228
+ },
1229
+ {
1230
+ "$ref": "#/definitions/onchain_operations/properties/result/anyOf/1/properties/balanceChanges/anyOf/0/items/properties/owner/anyOf/2"
1231
+ },
1232
+ {
1233
+ "$ref": "#/definitions/onchain_operations/properties/result/anyOf/1/properties/balanceChanges/anyOf/0/items/properties/owner/anyOf/3"
1234
+ },
1235
+ {
1236
+ "$ref": "#/definitions/onchain_operations/properties/result/anyOf/1/properties/balanceChanges/anyOf/0/items/properties/owner/anyOf/4"
1237
+ }
1238
+ ],
1239
+ "description": "Recipient"
1240
+ },
1241
+ "sender": {
1242
+ "type": "string",
1243
+ "description": "Sender ID"
1244
+ },
1245
+ "version": {
1246
+ "type": [
1247
+ "string",
1248
+ "number"
1249
+ ],
1250
+ "description": "Version"
1251
+ }
1252
+ },
1253
+ "required": [
1254
+ "type",
1255
+ "digest",
1256
+ "objectId",
1257
+ "objectType",
1258
+ "recipient",
1259
+ "sender",
1260
+ "version"
1261
+ ],
1262
+ "additionalProperties": false
1263
+ },
1264
+ {
1265
+ "type": "object",
1266
+ "properties": {
1267
+ "type": {
1268
+ "type": "string",
1269
+ "const": "mutated"
1270
+ },
1271
+ "digest": {
1272
+ "type": "string",
1273
+ "description": "Digest"
1274
+ },
1275
+ "objectId": {
1276
+ "type": "string",
1277
+ "description": "Object ID"
1278
+ },
1279
+ "objectType": {
1280
+ "type": "string",
1281
+ "description": "Object type"
1282
+ },
1283
+ "owner": {
1284
+ "anyOf": [
1285
+ {
1286
+ "anyOf": [
1287
+ {
1288
+ "$ref": "#/definitions/onchain_operations/properties/result/anyOf/1/properties/balanceChanges/anyOf/0/items/properties/owner/anyOf/0"
1289
+ },
1290
+ {
1291
+ "$ref": "#/definitions/onchain_operations/properties/result/anyOf/1/properties/balanceChanges/anyOf/0/items/properties/owner/anyOf/1"
1292
+ },
1293
+ {
1294
+ "$ref": "#/definitions/onchain_operations/properties/result/anyOf/1/properties/balanceChanges/anyOf/0/items/properties/owner/anyOf/2"
1295
+ },
1296
+ {
1297
+ "$ref": "#/definitions/onchain_operations/properties/result/anyOf/1/properties/balanceChanges/anyOf/0/items/properties/owner/anyOf/3"
1298
+ },
1299
+ {
1300
+ "$ref": "#/definitions/onchain_operations/properties/result/anyOf/1/properties/balanceChanges/anyOf/0/items/properties/owner/anyOf/4"
1301
+ }
1302
+ ],
1303
+ "description": "Object owner"
1304
+ },
1305
+ {
1306
+ "type": "null"
1307
+ }
1308
+ ],
1309
+ "description": "Owner"
1310
+ },
1311
+ "previousVersion": {
1312
+ "type": [
1313
+ "string",
1314
+ "number"
1315
+ ],
1316
+ "description": "Previous version"
1317
+ },
1318
+ "sender": {
1319
+ "type": "string",
1320
+ "description": "Sender"
1321
+ },
1322
+ "version": {
1323
+ "type": [
1324
+ "string",
1325
+ "number"
1326
+ ],
1327
+ "description": "Version"
1328
+ }
1329
+ },
1330
+ "required": [
1331
+ "type",
1332
+ "digest",
1333
+ "objectId",
1334
+ "objectType",
1335
+ "owner",
1336
+ "previousVersion",
1337
+ "sender",
1338
+ "version"
1339
+ ],
1340
+ "additionalProperties": false
1341
+ },
1342
+ {
1343
+ "type": "object",
1344
+ "properties": {
1345
+ "type": {
1346
+ "type": "string",
1347
+ "const": "deleted"
1348
+ },
1349
+ "objectId": {
1350
+ "type": "string",
1351
+ "description": "Object ID"
1352
+ },
1353
+ "objectType": {
1354
+ "type": "string",
1355
+ "description": "Object type"
1356
+ },
1357
+ "sender": {
1358
+ "type": "string",
1359
+ "description": "Sender"
1360
+ },
1361
+ "version": {
1362
+ "type": [
1363
+ "string",
1364
+ "number"
1365
+ ],
1366
+ "description": "Version"
1367
+ }
1368
+ },
1369
+ "required": [
1370
+ "type",
1371
+ "objectId",
1372
+ "objectType",
1373
+ "sender",
1374
+ "version"
1375
+ ],
1376
+ "additionalProperties": false
1377
+ },
1378
+ {
1379
+ "type": "object",
1380
+ "properties": {
1381
+ "type": {
1382
+ "type": "string",
1383
+ "const": "wrapped"
1384
+ },
1385
+ "objectId": {
1386
+ "type": "string",
1387
+ "description": "Object ID"
1388
+ },
1389
+ "objectType": {
1390
+ "type": "string",
1391
+ "description": "Object type"
1392
+ },
1393
+ "sender": {
1394
+ "type": "string",
1395
+ "description": "Sender"
1396
+ },
1397
+ "version": {
1398
+ "type": [
1399
+ "string",
1400
+ "number"
1401
+ ],
1402
+ "description": "Version"
1403
+ }
1404
+ },
1405
+ "required": [
1406
+ "type",
1407
+ "objectId",
1408
+ "objectType",
1409
+ "sender",
1410
+ "version"
1411
+ ],
1412
+ "additionalProperties": false
1413
+ },
1414
+ {
1415
+ "type": "object",
1416
+ "properties": {
1417
+ "type": {
1418
+ "type": "string",
1419
+ "const": "created"
1420
+ },
1421
+ "digest": {
1422
+ "type": "string",
1423
+ "description": "Digest"
1424
+ },
1425
+ "objectId": {
1426
+ "type": "string",
1427
+ "description": "Object ID"
1428
+ },
1429
+ "objectType": {
1430
+ "type": "string",
1431
+ "description": "Object type"
1432
+ },
1433
+ "owner": {
1434
+ "anyOf": [
1435
+ {
1436
+ "$ref": "#/definitions/onchain_operations/properties/result/anyOf/1/properties/objectChanges/anyOf/0/items/anyOf/2/properties/owner/anyOf/0"
1437
+ },
1438
+ {
1439
+ "type": "null"
1440
+ }
1441
+ ],
1442
+ "description": "Owner"
1443
+ },
1444
+ "sender": {
1445
+ "type": "string",
1446
+ "description": "Sender"
1447
+ },
1448
+ "version": {
1449
+ "type": [
1450
+ "string",
1451
+ "number"
1452
+ ],
1453
+ "description": "Version"
1454
+ }
1455
+ },
1456
+ "required": [
1457
+ "type",
1458
+ "digest",
1459
+ "objectId",
1460
+ "objectType",
1461
+ "owner",
1462
+ "sender",
1463
+ "version"
1464
+ ],
1465
+ "additionalProperties": false
1466
+ }
1467
+ ],
1468
+ "description": "Object change information"
1469
+ }
1470
+ },
1471
+ {
1472
+ "type": "null"
1473
+ }
1474
+ ],
1475
+ "description": "Object changes"
1476
+ },
1477
+ "rawEffects": {
1478
+ "type": "array",
1479
+ "items": {
1480
+ "type": "number"
1481
+ },
1482
+ "description": "Raw effects"
1483
+ },
1484
+ "rawTransaction": {
1485
+ "type": "string",
1486
+ "description": "Raw transaction"
1487
+ },
1488
+ "timestampMs": {
1489
+ "type": [
1490
+ "string",
1491
+ "null"
1492
+ ],
1493
+ "description": "Timestamp"
1494
+ },
1495
+ "transaction": {
1496
+ "anyOf": [
1497
+ {
1498
+ "type": "object",
1499
+ "properties": {
1500
+ "data": {
1501
+ "type": "object",
1502
+ "properties": {
1503
+ "gasData": {
1504
+ "type": "object",
1505
+ "properties": {
1506
+ "budget": {
1507
+ "type": "string",
1508
+ "description": "Budget"
1509
+ },
1510
+ "owner": {
1511
+ "type": "string",
1512
+ "description": "Owner"
1513
+ },
1514
+ "payment": {
1515
+ "type": "array",
1516
+ "items": {
1517
+ "$ref": "#/definitions/onchain_operations/properties/result/anyOf/1/properties/effects/anyOf/0/properties/deleted/items"
1518
+ },
1519
+ "description": "Payment"
1520
+ },
1521
+ "price": {
1522
+ "type": "string",
1523
+ "description": "Price"
1524
+ }
1525
+ },
1526
+ "required": [
1527
+ "budget",
1528
+ "owner",
1529
+ "payment",
1530
+ "price"
1531
+ ],
1532
+ "additionalProperties": false,
1533
+ "description": "Gas data"
1534
+ },
1535
+ "messageVersion": {
1536
+ "type": "string",
1537
+ "const": "v1",
1538
+ "description": "Message version"
1539
+ },
1540
+ "sender": {
1541
+ "type": "string",
1542
+ "description": "Sender"
1543
+ },
1544
+ "transaction": {
1545
+ "type": "object",
1546
+ "properties": {
1547
+ "kind": {
1548
+ "type": "string",
1549
+ "description": "Transaction type"
1550
+ }
1551
+ },
1552
+ "required": [
1553
+ "kind"
1554
+ ],
1555
+ "additionalProperties": true,
1556
+ "description": "Transaction"
1557
+ }
1558
+ },
1559
+ "required": [
1560
+ "gasData",
1561
+ "messageVersion",
1562
+ "sender",
1563
+ "transaction"
1564
+ ],
1565
+ "additionalProperties": false,
1566
+ "description": "Transaction data"
1567
+ },
1568
+ "txSignatures": {
1569
+ "type": "array",
1570
+ "items": {
1571
+ "type": "string"
1572
+ },
1573
+ "description": "Transaction signatures"
1574
+ }
1575
+ },
1576
+ "required": [
1577
+ "data",
1578
+ "txSignatures"
1579
+ ],
1580
+ "additionalProperties": false,
1581
+ "description": "Wow transaction block"
1582
+ },
1583
+ {
1584
+ "type": "null"
1585
+ }
1586
+ ],
1587
+ "description": "Transaction input data"
1588
+ },
1589
+ "type": {
1590
+ "type": "string",
1591
+ "const": "transaction"
1592
+ }
1593
+ },
1594
+ "required": [
1595
+ "digest",
1596
+ "type"
1597
+ ],
1598
+ "additionalProperties": false,
1599
+ "description": "Wow transaction block response"
1600
+ },
1601
+ {
1602
+ "type": "object",
1603
+ "properties": {
1604
+ "type": {
1605
+ "type": "string",
1606
+ "const": "error",
1607
+ "description": "Type of call response: error"
1608
+ },
1609
+ "error": {
1610
+ "type": "string"
1611
+ }
1612
+ },
1613
+ "required": [
1614
+ "type",
1615
+ "error"
1616
+ ],
1617
+ "additionalProperties": false,
1618
+ "description": "Call error data. Contains error information."
1619
+ },
1620
+ {
1621
+ "type": "object",
1622
+ "properties": {
1623
+ "type": {
1624
+ "type": "string",
1625
+ "const": "data"
1626
+ },
1627
+ "data": {
1628
+ "type": "array",
1629
+ "items": {
1630
+ "type": "object",
1631
+ "properties": {
1632
+ "object": {
1633
+ "type": "string",
1634
+ "description": "Object ID"
1635
+ },
1636
+ "type": {
1637
+ "$ref": "#/definitions/onchain_operations/properties/result/anyOf/0/properties/submission/items/properties/submission/items/properties/object_type",
1638
+ "description": "Object type"
1639
+ },
1640
+ "type_raw": {
1641
+ "type": "string",
1642
+ "description": "Raw object type"
1643
+ },
1644
+ "owner": {
1645
+ "anyOf": [
1646
+ {
1647
+ "$ref": "#/definitions/onchain_operations/properties/result/anyOf/1/properties/objectChanges/anyOf/0/items/anyOf/2/properties/owner/anyOf/0"
1648
+ },
1649
+ {
1650
+ "type": "null"
1651
+ }
1652
+ ],
1653
+ "description": "Object owner"
1654
+ },
1655
+ "version": {
1656
+ "type": [
1657
+ "string",
1658
+ "number"
1659
+ ],
1660
+ "description": "Object version"
1661
+ },
1662
+ "previousTransaction": {
1663
+ "type": "string",
1664
+ "description": "Previous transaction ID"
1665
+ },
1666
+ "cache_expire": {
1667
+ "anyOf": [
1668
+ {
1669
+ "type": "number"
1670
+ },
1671
+ {
1672
+ "type": "string",
1673
+ "const": "INFINITE"
1674
+ }
1675
+ ],
1676
+ "description": "Cache expiration time"
1677
+ },
1678
+ "query_name": {
1679
+ "type": "string",
1680
+ "description": "Original query name or address used to retrieve this object"
1681
+ },
1682
+ "content_raw": {
1683
+ "description": "Raw content data for unknown object types"
1684
+ },
1685
+ "_guard_node_comments": {
1686
+ "type": "array",
1687
+ "items": {
1688
+ "type": "object",
1689
+ "properties": {
1690
+ "type": {
1691
+ "type": "string"
1692
+ },
1693
+ "description": {
1694
+ "type": "string"
1695
+ }
1696
+ },
1697
+ "required": [
1698
+ "type",
1699
+ "description"
1700
+ ],
1701
+ "additionalProperties": false
1702
+ },
1703
+ "description": "Additional comments for Guard node instructions"
1704
+ },
1705
+ "change": {
1706
+ "anyOf": [
1707
+ {
1708
+ "type": "string",
1709
+ "const": "created"
1710
+ },
1711
+ {
1712
+ "type": "string",
1713
+ "const": "mutated"
1714
+ },
1715
+ {
1716
+ "type": "string"
1717
+ }
1718
+ ]
1719
+ }
1720
+ },
1721
+ "required": [
1722
+ "object",
1723
+ "change"
1724
+ ],
1725
+ "additionalProperties": true,
1726
+ "description": "Call result data. Contains basic object information and change type."
1727
+ }
1728
+ }
1729
+ },
1730
+ "required": [
1731
+ "type",
1732
+ "data"
1733
+ ],
1734
+ "additionalProperties": false
1735
+ },
1736
+ {
1737
+ "type": "object",
1738
+ "properties": {
1739
+ "type": {
1740
+ "type": "string",
1741
+ "const": "null"
1742
+ }
1743
+ },
1744
+ "required": [
1745
+ "type"
1746
+ ],
1747
+ "additionalProperties": false
1748
+ }
1749
+ ],
1750
+ "description": "Call result. Can be Guard verification information (type: 'submission') that needs to be submitted by the user, result response, error information (type: 'error'), or null."
1751
+ },
1752
+ "message": {
1753
+ "type": "string",
1754
+ "description": "Message or hint information"
1755
+ }
1756
+ },
1757
+ "required": [
1758
+ "result"
1759
+ ],
1760
+ "additionalProperties": false,
1761
+ "description": "On-chain Operation Result"
1762
+ }
1763
+ }
1764
+ }