radix-transactions 1.3.1

Various Radix transaction models and the manifest compiler/decompiler, from the Radix DLT project.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
use crate::internal_prelude::*;
use decompiler::*;
use radix_engine_interface::blueprints::access_controller::*;
use radix_engine_interface::blueprints::account::*;
use radix_engine_interface::blueprints::consensus_manager::*;
use radix_engine_interface::blueprints::identity::*;
use radix_engine_interface::blueprints::package::*;
use radix_engine_interface::blueprints::resource::*;
use radix_engine_interface::object_modules::metadata::*;
use radix_engine_interface::object_modules::role_assignment::*;
use radix_engine_interface::object_modules::royalty::*;

use ManifestInstructionEffect as Effect;

pub trait ManifestInstruction: Into<AnyInstruction> {
    const IDENT: &'static str;
    const ID: u8;

    fn decompile(
        &self,
        context: &mut DecompilationContext,
    ) -> Result<DecompiledInstruction, DecompileError>;

    fn effect(&self) -> Effect<'_>;

    fn into_any(self) -> AnyInstruction {
        self.into()
    }
}

//======================================================================
// region:Bucket Lifecycle
//======================================================================

/// Takes a bucket containing the given amount of resource from the worktop,
/// and binds the given bucket name to that bucket.
#[derive(Debug, Clone, PartialEq, Eq, ManifestSbor, ScryptoDescribe)]
pub struct TakeFromWorktop {
    pub resource_address: ResourceAddress,
    pub amount: Decimal,
}

impl ManifestInstruction for TakeFromWorktop {
    const IDENT: &'static str = "TAKE_FROM_WORKTOP";
    const ID: u8 = INSTRUCTION_TAKE_FROM_WORKTOP_DISCRIMINATOR;

    fn decompile(
        &self,
        context: &mut DecompilationContext,
    ) -> Result<DecompiledInstruction, DecompileError> {
        let instruction = DecompiledInstruction::new(Self::IDENT)
            .add_argument(self.resource_address)
            .add_argument(self.amount)
            .add_argument(context.new_bucket());
        Ok(instruction)
    }

    fn effect(&self) -> Effect<'_> {
        Effect::CreateBucket {
            source_amount: BucketSourceAmount::AmountFromWorktop {
                resource_address: &self.resource_address,
                amount: self.amount,
            },
        }
    }
}

/// Takes a bucket containing the given non-fungible ids of the resource from the worktop,
/// and binds the given bucket name to that bucket.
#[derive(Debug, Clone, PartialEq, Eq, ManifestSbor, ScryptoDescribe)]
pub struct TakeNonFungiblesFromWorktop {
    pub resource_address: ResourceAddress,
    pub ids: Vec<NonFungibleLocalId>,
}

impl ManifestInstruction for TakeNonFungiblesFromWorktop {
    const IDENT: &'static str = "TAKE_NON_FUNGIBLES_FROM_WORKTOP";
    const ID: u8 = INSTRUCTION_TAKE_NON_FUNGIBLES_FROM_WORKTOP_DISCRIMINATOR;

    fn decompile(
        &self,
        context: &mut DecompilationContext,
    ) -> Result<DecompiledInstruction, DecompileError> {
        let instruction = DecompiledInstruction::new(Self::IDENT)
            .add_argument(self.resource_address)
            .add_argument(&self.ids)
            .add_argument(context.new_bucket());
        Ok(instruction)
    }

    fn effect(&self) -> Effect<'_> {
        Effect::CreateBucket {
            source_amount: BucketSourceAmount::NonFungiblesFromWorktop {
                resource_address: &self.resource_address,
                ids: &self.ids,
            },
        }
    }
}

/// Takes a bucket containing all of a given resource from the worktop,
/// and binds the given bucket name to that bucket.
#[derive(Debug, Clone, PartialEq, Eq, ManifestSbor, ScryptoDescribe)]
pub struct TakeAllFromWorktop {
    pub resource_address: ResourceAddress,
}

impl ManifestInstruction for TakeAllFromWorktop {
    const IDENT: &'static str = "TAKE_ALL_FROM_WORKTOP";
    const ID: u8 = INSTRUCTION_TAKE_ALL_FROM_WORKTOP_DISCRIMINATOR;

    fn decompile(
        &self,
        context: &mut DecompilationContext,
    ) -> Result<DecompiledInstruction, DecompileError> {
        let instruction = DecompiledInstruction::new(Self::IDENT)
            .add_argument(self.resource_address)
            .add_argument(context.new_bucket());
        Ok(instruction)
    }

    fn effect(&self) -> Effect<'_> {
        Effect::CreateBucket {
            source_amount: BucketSourceAmount::AllOnWorktop {
                resource_address: &self.resource_address,
            },
        }
    }
}

/// Returns a bucket to the worktop.
#[derive(Debug, Clone, PartialEq, Eq, ManifestSbor, ScryptoDescribe)]
pub struct ReturnToWorktop {
    pub bucket_id: ManifestBucket,
}

impl ManifestInstruction for ReturnToWorktop {
    const IDENT: &'static str = "RETURN_TO_WORKTOP";
    const ID: u8 = INSTRUCTION_RETURN_TO_WORKTOP_DISCRIMINATOR;

    fn decompile(
        &self,
        _context: &mut DecompilationContext,
    ) -> Result<DecompiledInstruction, DecompileError> {
        let instruction = DecompiledInstruction::new(Self::IDENT).add_argument(self.bucket_id);
        Ok(instruction)
    }

    fn effect(&self) -> Effect<'_> {
        Effect::ConsumeBucket {
            consumed_bucket: self.bucket_id,
            destination: BucketDestination::Worktop,
        }
    }
}

/// Burns the bucket.
#[derive(Debug, Clone, PartialEq, Eq, ManifestSbor, ScryptoDescribe)]
pub struct BurnResource {
    pub bucket_id: ManifestBucket,
}

impl ManifestInstruction for BurnResource {
    const IDENT: &'static str = "BURN_RESOURCE";
    const ID: u8 = INSTRUCTION_BURN_RESOURCE_DISCRIMINATOR;

    fn decompile(
        &self,
        _context: &mut DecompilationContext,
    ) -> Result<DecompiledInstruction, DecompileError> {
        let instruction = DecompiledInstruction::new(Self::IDENT).add_argument(self.bucket_id);
        Ok(instruction)
    }

    fn effect(&self) -> Effect<'_> {
        Effect::ConsumeBucket {
            consumed_bucket: self.bucket_id,
            destination: BucketDestination::Burned,
        }
    }
}

//======================================================================
// region:Resource Assertions
//======================================================================

/// Asserts that the worktop contains any positive amount of the specified resource.
#[derive(Debug, Clone, PartialEq, Eq, ManifestSbor, ScryptoDescribe)]
pub struct AssertWorktopContainsAny {
    pub resource_address: ResourceAddress,
}

impl ManifestInstruction for AssertWorktopContainsAny {
    const IDENT: &'static str = "ASSERT_WORKTOP_CONTAINS_ANY";
    const ID: u8 = INSTRUCTION_ASSERT_WORKTOP_CONTAINS_ANY_DISCRIMINATOR;

    fn decompile(
        &self,
        _context: &mut DecompilationContext,
    ) -> Result<DecompiledInstruction, DecompileError> {
        let instruction =
            DecompiledInstruction::new(Self::IDENT).add_argument(self.resource_address);
        Ok(instruction)
    }

    fn effect(&self) -> Effect<'_> {
        Effect::ResourceAssertion {
            assertion: ResourceAssertion::Worktop(WorktopAssertion::ResourceNonZeroAmount {
                resource_address: &self.resource_address,
            }),
        }
    }
}

/// Asserts that the worktop contains at least the given amount of the specified resource.
#[derive(Debug, Clone, PartialEq, Eq, ManifestSbor, ScryptoDescribe)]
pub struct AssertWorktopContains {
    pub resource_address: ResourceAddress,
    pub amount: Decimal,
}

impl ManifestInstruction for AssertWorktopContains {
    const IDENT: &'static str = "ASSERT_WORKTOP_CONTAINS";
    const ID: u8 = INSTRUCTION_ASSERT_WORKTOP_CONTAINS_DISCRIMINATOR;

    fn decompile(
        &self,
        _context: &mut DecompilationContext,
    ) -> Result<DecompiledInstruction, DecompileError> {
        let instruction = DecompiledInstruction::new(Self::IDENT)
            .add_argument(self.resource_address)
            .add_argument(self.amount);
        Ok(instruction)
    }

    fn effect(&self) -> Effect<'_> {
        Effect::ResourceAssertion {
            assertion: ResourceAssertion::Worktop(WorktopAssertion::ResourceAtLeastAmount {
                resource_address: &self.resource_address,
                amount: self.amount,
            }),
        }
    }
}

/// Asserts that the worktop contains at least the given non-fungible ids of the specified resource.
#[derive(Debug, Clone, PartialEq, Eq, ManifestSbor, ScryptoDescribe)]
pub struct AssertWorktopContainsNonFungibles {
    pub resource_address: ResourceAddress,
    pub ids: Vec<NonFungibleLocalId>,
}

impl ManifestInstruction for AssertWorktopContainsNonFungibles {
    const IDENT: &'static str = "ASSERT_WORKTOP_CONTAINS_NON_FUNGIBLES";
    const ID: u8 = INSTRUCTION_ASSERT_WORKTOP_CONTAINS_NON_FUNGIBLES_DISCRIMINATOR;

    fn decompile(
        &self,
        _context: &mut DecompilationContext,
    ) -> Result<DecompiledInstruction, DecompileError> {
        let instruction = DecompiledInstruction::new(Self::IDENT)
            .add_argument(self.resource_address)
            .add_argument(&self.ids);
        Ok(instruction)
    }

    fn effect(&self) -> Effect<'_> {
        Effect::ResourceAssertion {
            assertion: ResourceAssertion::Worktop(WorktopAssertion::ResourceAtLeastNonFungibles {
                resource_address: &self.resource_address,
                ids: &self.ids,
            }),
        }
    }
}

/// Asserts that the worktop contains only these specified resources.
///
/// Each of the specified resources must satisfy the given constraints.
#[derive(Debug, Clone, PartialEq, Eq, ManifestSbor, ScryptoDescribe)]
pub struct AssertWorktopResourcesOnly {
    pub constraints: ManifestResourceConstraints,
}

impl ManifestInstruction for AssertWorktopResourcesOnly {
    const IDENT: &'static str = "ASSERT_WORKTOP_RESOURCES_ONLY";
    const ID: u8 = INSTRUCTION_ASSERT_WORKTOP_RESOURCES_ONLY_DISCRIMINATOR;

    fn decompile(
        &self,
        _context: &mut DecompilationContext,
    ) -> Result<DecompiledInstruction, DecompileError> {
        let instruction = if self.constraints.specified_resources().is_empty() {
            DecompiledInstruction::new("ASSERT_WORKTOP_IS_EMPTY")
        } else {
            DecompiledInstruction::new(Self::IDENT).add_argument(&self.constraints)
        };

        Ok(instruction)
    }

    fn effect(&self) -> Effect<'_> {
        Effect::ResourceAssertion {
            assertion: ResourceAssertion::Worktop(WorktopAssertion::ResourcesOnly {
                constraints: &self.constraints,
            }),
        }
    }
}

/// Asserts that the worktop includes these specified resources, and may
/// also include other unspecified resources.
///
/// Each of the specified resources must satisfy the given constraints.
#[derive(Debug, Clone, PartialEq, Eq, ManifestSbor, ScryptoDescribe)]
pub struct AssertWorktopResourcesInclude {
    pub constraints: ManifestResourceConstraints,
}

impl ManifestInstruction for AssertWorktopResourcesInclude {
    const IDENT: &'static str = "ASSERT_WORKTOP_RESOURCES_INCLUDE";
    const ID: u8 = INSTRUCTION_ASSERT_WORKTOP_RESOURCES_INCLUDE_DISCRIMINATOR;

    fn decompile(
        &self,
        _context: &mut DecompilationContext,
    ) -> Result<DecompiledInstruction, DecompileError> {
        let instruction = DecompiledInstruction::new(Self::IDENT).add_argument(&self.constraints);
        Ok(instruction)
    }

    fn effect(&self) -> Effect<'_> {
        Effect::ResourceAssertion {
            assertion: ResourceAssertion::Worktop(WorktopAssertion::ResourcesInclude {
                constraints: &self.constraints,
            }),
        }
    }
}

/// Asserts that the next invocation (`CALL` / `YIELD`) in the manifest
/// returns only these specified resources.
///
/// Each of the specified resources must satisfy the given constraints.
///
/// Only one `ASSERT_NEXT_CALL_RETURNS_...` instruction may be specified
/// per `CALL` / `YIELD`, and it must immediately precede it.
#[derive(Debug, Clone, PartialEq, Eq, ManifestSbor, ScryptoDescribe)]
pub struct AssertNextCallReturnsOnly {
    pub constraints: ManifestResourceConstraints,
}

impl ManifestInstruction for AssertNextCallReturnsOnly {
    const IDENT: &'static str = "ASSERT_NEXT_CALL_RETURNS_ONLY";
    const ID: u8 = INSTRUCTION_ASSERT_NEXT_CALL_RETURNS_ONLY_DISCRIMINATOR;

    fn decompile(
        &self,
        _context: &mut DecompilationContext,
    ) -> Result<DecompiledInstruction, DecompileError> {
        let instruction = DecompiledInstruction::new(Self::IDENT).add_argument(&self.constraints);
        Ok(instruction)
    }

    fn effect(&self) -> Effect<'_> {
        Effect::ResourceAssertion {
            assertion: ResourceAssertion::NextCall(NextCallAssertion::ReturnsOnly {
                constraints: &self.constraints,
            }),
        }
    }
}

/// Asserts that the next invocation (`CALL` / `YIELD`) in the manifest
/// returns these specified resources, and may also include other
/// unspecified resources.
///
/// Each of the specified resources must satisfy the given constraints.
///
/// Only one `ASSERT_NEXT_CALL_RETURNS_...` instruction may be specified
/// per `CALL` / `YIELD`, and it must immediately precede it.
#[derive(Debug, Clone, PartialEq, Eq, ManifestSbor, ScryptoDescribe)]
pub struct AssertNextCallReturnsInclude {
    pub constraints: ManifestResourceConstraints,
}

impl ManifestInstruction for AssertNextCallReturnsInclude {
    const IDENT: &'static str = "ASSERT_NEXT_CALL_RETURNS_INCLUDE";
    const ID: u8 = INSTRUCTION_ASSERT_NEXT_CALL_RETURNS_INCLUDE_DISCRIMINATOR;

    fn decompile(
        &self,
        _context: &mut DecompilationContext,
    ) -> Result<DecompiledInstruction, DecompileError> {
        let instruction = DecompiledInstruction::new(Self::IDENT).add_argument(&self.constraints);
        Ok(instruction)
    }

    fn effect(&self) -> Effect<'_> {
        Effect::ResourceAssertion {
            assertion: ResourceAssertion::NextCall(NextCallAssertion::ReturnsInclude {
                constraints: &self.constraints,
            }),
        }
    }
}

/// Asserts that the contents of the named bucket satisfy the given constraints.
#[derive(Debug, Clone, PartialEq, Eq, ManifestSbor, ScryptoDescribe)]
pub struct AssertBucketContents {
    pub bucket_id: ManifestBucket,
    pub constraint: ManifestResourceConstraint,
}

impl ManifestInstruction for AssertBucketContents {
    const IDENT: &'static str = "ASSERT_BUCKET_CONTENTS";
    const ID: u8 = INSTRUCTION_ASSERT_BUCKET_CONTENTS_DISCRIMINATOR;

    fn decompile(
        &self,
        _context: &mut DecompilationContext,
    ) -> Result<DecompiledInstruction, DecompileError> {
        let instruction = DecompiledInstruction::new(Self::IDENT)
            .add_argument(self.bucket_id)
            .add_argument(&self.constraint);
        Ok(instruction)
    }

    fn effect(&self) -> Effect<'_> {
        Effect::ResourceAssertion {
            assertion: ResourceAssertion::Bucket(BucketAssertion::Contents {
                bucket: self.bucket_id,
                constraint: &self.constraint,
            }),
        }
    }
}

//======================================================================
// region:Proof Lifecycle
//======================================================================

/// Creates a proof of the specific amount of the given resource,
/// backed by the contents of this bucket. The proof must be dropped
/// before the bucket can be fully emptied.
#[derive(Debug, Clone, PartialEq, Eq, ManifestSbor, ScryptoDescribe)]
pub struct CreateProofFromBucketOfAmount {
    pub bucket_id: ManifestBucket,
    pub amount: Decimal,
}

impl ManifestInstruction for CreateProofFromBucketOfAmount {
    const IDENT: &'static str = "CREATE_PROOF_FROM_BUCKET_OF_AMOUNT";
    const ID: u8 = INSTRUCTION_CREATE_PROOF_FROM_BUCKET_OF_AMOUNT_DISCRIMINATOR;

    fn decompile(
        &self,
        context: &mut DecompilationContext,
    ) -> Result<DecompiledInstruction, DecompileError> {
        let instruction = DecompiledInstruction::new(Self::IDENT)
            .add_argument(self.bucket_id)
            .add_argument(self.amount)
            .add_argument(context.new_proof());
        Ok(instruction)
    }

    fn effect(&self) -> Effect<'_> {
        Effect::CreateProof {
            source_amount: ProofSourceAmount::BucketAmount {
                bucket: self.bucket_id,
                amount: self.amount,
            },
        }
    }
}

/// Creates a proof of the specific non-fungibles of the given resource,
/// backed by the contents of this bucket. The proof must be dropped
/// before the bucket can be fully emptied.
#[derive(Debug, Clone, PartialEq, Eq, ManifestSbor, ScryptoDescribe)]
pub struct CreateProofFromBucketOfNonFungibles {
    pub bucket_id: ManifestBucket,
    pub ids: Vec<NonFungibleLocalId>,
}

impl ManifestInstruction for CreateProofFromBucketOfNonFungibles {
    const IDENT: &'static str = "CREATE_PROOF_FROM_BUCKET_OF_NON_FUNGIBLES";
    const ID: u8 = INSTRUCTION_CREATE_PROOF_FROM_BUCKET_OF_NON_FUNGIBLES_DISCRIMINATOR;

    fn decompile(
        &self,
        context: &mut DecompilationContext,
    ) -> Result<DecompiledInstruction, DecompileError> {
        let instruction = DecompiledInstruction::new(Self::IDENT)
            .add_argument(self.bucket_id)
            .add_argument(&self.ids)
            .add_argument(context.new_proof());
        Ok(instruction)
    }

    fn effect(&self) -> Effect<'_> {
        Effect::CreateProof {
            source_amount: ProofSourceAmount::BucketNonFungibles {
                bucket: self.bucket_id,
                ids: &self.ids,
            },
        }
    }
}

/// Creates a proof of the given resource, backed by the contents
/// of this bucket. The proof must be dropped before the bucket can
/// be fully emptied.
#[derive(Debug, Clone, PartialEq, Eq, ManifestSbor, ScryptoDescribe)]
pub struct CreateProofFromBucketOfAll {
    pub bucket_id: ManifestBucket,
}

impl ManifestInstruction for CreateProofFromBucketOfAll {
    const IDENT: &'static str = "CREATE_PROOF_FROM_BUCKET_OF_ALL";
    const ID: u8 = INSTRUCTION_CREATE_PROOF_FROM_BUCKET_OF_ALL_DISCRIMINATOR;

    fn decompile(
        &self,
        context: &mut DecompilationContext,
    ) -> Result<DecompiledInstruction, DecompileError> {
        let instruction = DecompiledInstruction::new(Self::IDENT)
            .add_argument(self.bucket_id)
            .add_argument(context.new_proof());
        Ok(instruction)
    }

    fn effect(&self) -> Effect<'_> {
        Effect::CreateProof {
            source_amount: ProofSourceAmount::BucketAllOf {
                bucket: self.bucket_id,
            },
        }
    }
}

/// Creates a proof of the given amount, by combining the backing from
/// one or more proofs available in the auth zone.
#[derive(Debug, Clone, PartialEq, Eq, ManifestSbor, ScryptoDescribe)]
pub struct CreateProofFromAuthZoneOfAmount {
    pub resource_address: ResourceAddress,
    pub amount: Decimal,
}

impl ManifestInstruction for CreateProofFromAuthZoneOfAmount {
    const IDENT: &'static str = "CREATE_PROOF_FROM_AUTH_ZONE_OF_AMOUNT";
    const ID: u8 = INSTRUCTION_CREATE_PROOF_FROM_AUTH_ZONE_OF_AMOUNT_DISCRIMINATOR;

    fn decompile(
        &self,
        context: &mut DecompilationContext,
    ) -> Result<DecompiledInstruction, DecompileError> {
        let instruction = DecompiledInstruction::new(Self::IDENT)
            .add_argument(self.resource_address)
            .add_argument(self.amount)
            .add_argument(context.new_proof());
        Ok(instruction)
    }

    fn effect(&self) -> Effect<'_> {
        Effect::CreateProof {
            source_amount: ProofSourceAmount::AuthZoneAmount {
                resource_address: &self.resource_address,
                amount: self.amount,
            },
        }
    }
}

/// Creates a proof of the given non-fungible ids, by combining the backing from
/// one or more proofs available in the auth zone.
#[derive(Debug, Clone, PartialEq, Eq, ManifestSbor, ScryptoDescribe)]
pub struct CreateProofFromAuthZoneOfNonFungibles {
    pub resource_address: ResourceAddress,
    pub ids: Vec<NonFungibleLocalId>,
}

impl ManifestInstruction for CreateProofFromAuthZoneOfNonFungibles {
    const IDENT: &'static str = "CREATE_PROOF_FROM_AUTH_ZONE_OF_NON_FUNGIBLES";
    const ID: u8 = INSTRUCTION_CREATE_PROOF_FROM_AUTH_ZONE_OF_NON_FUNGIBLES_DISCRIMINATOR;

    fn decompile(
        &self,
        context: &mut DecompilationContext,
    ) -> Result<DecompiledInstruction, DecompileError> {
        let instruction = DecompiledInstruction::new(Self::IDENT)
            .add_argument(self.resource_address)
            .add_argument(&self.ids)
            .add_argument(context.new_proof());
        Ok(instruction)
    }

    fn effect(&self) -> Effect<'_> {
        Effect::CreateProof {
            source_amount: ProofSourceAmount::AuthZoneNonFungibles {
                resource_address: &self.resource_address,
                ids: &self.ids,
            },
        }
    }
}

/// Creates a proof of the given resource, by combining the backing from
/// all of the proofs for that resource in the auth zone.
#[derive(Debug, Clone, PartialEq, Eq, ManifestSbor, ScryptoDescribe)]
pub struct CreateProofFromAuthZoneOfAll {
    pub resource_address: ResourceAddress,
}

impl ManifestInstruction for CreateProofFromAuthZoneOfAll {
    const IDENT: &'static str = "CREATE_PROOF_FROM_AUTH_ZONE_OF_ALL";
    const ID: u8 = INSTRUCTION_CREATE_PROOF_FROM_AUTH_ZONE_OF_ALL_DISCRIMINATOR;

    fn decompile(
        &self,
        context: &mut DecompilationContext,
    ) -> Result<DecompiledInstruction, DecompileError> {
        let instruction = DecompiledInstruction::new(Self::IDENT)
            .add_argument(self.resource_address)
            .add_argument(context.new_proof());
        Ok(instruction)
    }

    fn effect(&self) -> Effect<'_> {
        Effect::CreateProof {
            source_amount: ProofSourceAmount::AuthZoneAllOf {
                resource_address: &self.resource_address,
            },
        }
    }
}

/// Clones a named proof (first argument), creating a new named proof (second argument).
#[derive(Debug, Clone, PartialEq, Eq, ManifestSbor, ScryptoDescribe)]
pub struct CloneProof {
    pub proof_id: ManifestProof,
}

impl ManifestInstruction for CloneProof {
    const IDENT: &'static str = "CLONE_PROOF";
    const ID: u8 = INSTRUCTION_CLONE_PROOF_DISCRIMINATOR;

    fn decompile(
        &self,
        context: &mut DecompilationContext,
    ) -> Result<DecompiledInstruction, DecompileError> {
        let instruction = DecompiledInstruction::new(Self::IDENT)
            .add_argument(self.proof_id)
            .add_argument(context.new_proof());
        Ok(instruction)
    }

    fn effect(&self) -> Effect<'_> {
        Effect::CloneProof {
            cloned_proof: self.proof_id,
        }
    }
}

/// Drops a named proof.
#[derive(Debug, Clone, PartialEq, Eq, ManifestSbor, ScryptoDescribe)]
pub struct DropProof {
    pub proof_id: ManifestProof,
}

impl ManifestInstruction for DropProof {
    const IDENT: &'static str = "DROP_PROOF";
    const ID: u8 = INSTRUCTION_DROP_PROOF_DISCRIMINATOR;

    fn decompile(
        &self,
        _context: &mut DecompilationContext,
    ) -> Result<DecompiledInstruction, DecompileError> {
        let instruction = DecompiledInstruction::new(Self::IDENT).add_argument(self.proof_id);
        Ok(instruction)
    }

    fn effect(&self) -> Effect<'_> {
        Effect::ConsumeProof {
            consumed_proof: self.proof_id,
            destination: ProofDestination::Drop,
        }
    }
}

/// Puts a named proof into the auth zone.
#[derive(Debug, Clone, PartialEq, Eq, ManifestSbor, ScryptoDescribe)]
pub struct PushToAuthZone {
    pub proof_id: ManifestProof,
}

impl ManifestInstruction for PushToAuthZone {
    const IDENT: &'static str = "PUSH_TO_AUTH_ZONE";
    const ID: u8 = INSTRUCTION_PUSH_TO_AUTH_ZONE_DISCRIMINATOR;

    fn decompile(
        &self,
        _context: &mut DecompilationContext,
    ) -> Result<DecompiledInstruction, DecompileError> {
        let instruction = DecompiledInstruction::new(Self::IDENT).add_argument(self.proof_id);
        Ok(instruction)
    }

    fn effect(&self) -> Effect<'_> {
        Effect::ConsumeProof {
            consumed_proof: self.proof_id,
            destination: ProofDestination::AuthZone,
        }
    }
}

/// Takes the last proof from the auth zone, and makes it a named proof.
#[derive(Debug, Clone, PartialEq, Eq, ManifestSbor, ScryptoDescribe)]
pub struct PopFromAuthZone;

impl ManifestInstruction for PopFromAuthZone {
    const IDENT: &'static str = "POP_FROM_AUTH_ZONE";
    const ID: u8 = INSTRUCTION_POP_FROM_AUTH_ZONE_DISCRIMINATOR;

    fn decompile(
        &self,
        context: &mut DecompilationContext,
    ) -> Result<DecompiledInstruction, DecompileError> {
        let instruction = DecompiledInstruction::new(Self::IDENT).add_argument(context.new_proof());
        Ok(instruction)
    }

    fn effect(&self) -> Effect<'_> {
        Effect::CreateProof {
            source_amount: ProofSourceAmount::AuthZonePopLastAddedProof,
        }
    }
}

/// Drops all the proofs in the auth zone, potentially freeing up the assets locked in any containers backing the proofs.
///
/// Named proofs owned by the transaction processor are NOT dropped.
#[derive(Debug, Clone, PartialEq, Eq, ManifestSbor, ScryptoDescribe)]
pub struct DropAuthZoneProofs;

impl ManifestInstruction for DropAuthZoneProofs {
    const IDENT: &'static str = "DROP_AUTH_ZONE_PROOFS";
    const ID: u8 = INSTRUCTION_DROP_AUTH_ZONE_PROOFS_DISCRIMINATOR;

    fn decompile(
        &self,
        _context: &mut DecompilationContext,
    ) -> Result<DecompiledInstruction, DecompileError> {
        let instruction = DecompiledInstruction::new(Self::IDENT);
        Ok(instruction)
    }

    fn effect(&self) -> Effect<'_> {
        Effect::DropManyProofs {
            drop_all_named_proofs: false,
            drop_all_authzone_signature_proofs: true,
            drop_all_authzone_non_signature_proofs: true,
        }
    }
}

/// Drops all the non-signature proofs in the auth zone, potentially freeing up the assets locked in any containers backing the proofs.
///
/// Signature proofs on the auth zone are NOT dropped. Named proofs owned by the transaction processor are also NOT dropped.
#[derive(Debug, Clone, PartialEq, Eq, ManifestSbor, ScryptoDescribe)]
pub struct DropAuthZoneRegularProofs;

impl ManifestInstruction for DropAuthZoneRegularProofs {
    const IDENT: &'static str = "DROP_AUTH_ZONE_REGULAR_PROOFS";
    const ID: u8 = INSTRUCTION_DROP_AUTH_ZONE_REGULAR_PROOFS_DISCRIMINATOR;

    fn decompile(
        &self,
        _context: &mut DecompilationContext,
    ) -> Result<DecompiledInstruction, DecompileError> {
        let instruction = DecompiledInstruction::new(Self::IDENT);
        Ok(instruction)
    }

    fn effect(&self) -> Effect<'_> {
        Effect::DropManyProofs {
            drop_all_named_proofs: false,
            drop_all_authzone_signature_proofs: false,
            drop_all_authzone_non_signature_proofs: true,
        }
    }
}

/// Drops all the signature proofs in the auth zone, preventing any further calls from making use of signature-based authentication.
///
/// Regular proofs on the auth zone are NOT dropped, and named proofs owned by the transaction processor are also NOT dropped.
#[derive(Debug, Clone, PartialEq, Eq, ManifestSbor, ScryptoDescribe)]
pub struct DropAuthZoneSignatureProofs;

impl ManifestInstruction for DropAuthZoneSignatureProofs {
    const IDENT: &'static str = "DROP_AUTH_ZONE_SIGNATURE_PROOFS";
    const ID: u8 = INSTRUCTION_DROP_AUTH_ZONE_SIGNATURE_PROOFS_DISCRIMINATOR;

    fn decompile(
        &self,
        _context: &mut DecompilationContext,
    ) -> Result<DecompiledInstruction, DecompileError> {
        let instruction = DecompiledInstruction::new(Self::IDENT);
        Ok(instruction)
    }

    fn effect(&self) -> Effect<'_> {
        Effect::DropManyProofs {
            drop_all_named_proofs: false,
            drop_all_authzone_signature_proofs: true,
            drop_all_authzone_non_signature_proofs: false,
        }
    }
}

/// Drops all named proofs owned by the transaction processor.
///
/// The proofs on the auth zone are NOT dropped.
#[derive(Debug, Clone, PartialEq, Eq, ManifestSbor, ScryptoDescribe)]
pub struct DropNamedProofs;

impl ManifestInstruction for DropNamedProofs {
    const IDENT: &'static str = "DROP_NAMED_PROOFS";
    const ID: u8 = INSTRUCTION_DROP_NAMED_PROOFS_DISCRIMINATOR;

    fn decompile(
        &self,
        _context: &mut DecompilationContext,
    ) -> Result<DecompiledInstruction, DecompileError> {
        let instruction = DecompiledInstruction::new(Self::IDENT);
        Ok(instruction)
    }

    fn effect(&self) -> Effect<'_> {
        Effect::DropManyProofs {
            drop_all_named_proofs: true,
            drop_all_authzone_signature_proofs: false,
            drop_all_authzone_non_signature_proofs: false,
        }
    }
}

/// Drops all proofs, both named proofs and auth zone proofs.
#[derive(Debug, Clone, PartialEq, Eq, ManifestSbor, ScryptoDescribe)]
pub struct DropAllProofs;

impl ManifestInstruction for DropAllProofs {
    const IDENT: &'static str = "DROP_ALL_PROOFS";
    const ID: u8 = INSTRUCTION_DROP_ALL_PROOFS_DISCRIMINATOR;

    fn decompile(
        &self,
        _context: &mut DecompilationContext,
    ) -> Result<DecompiledInstruction, DecompileError> {
        let instruction = DecompiledInstruction::new(Self::IDENT);
        Ok(instruction)
    }

    fn effect(&self) -> Effect<'_> {
        Effect::DropManyProofs {
            drop_all_named_proofs: true,
            drop_all_authzone_signature_proofs: true,
            drop_all_authzone_non_signature_proofs: true,
        }
    }
}

//======================================================================
// region:Invocations
//======================================================================

#[derive(Debug, Clone, PartialEq, Eq, ManifestSbor, ScryptoDescribe)]
pub struct CallFunction {
    pub package_address: ManifestPackageAddress,
    pub blueprint_name: String,
    pub function_name: String,
    pub args: ManifestValue,
}

impl CallFunction {
    fn decompile_header(&self) -> DecompiledInstruction {
        if let ManifestPackageAddress::Static(package_address) = &self.package_address {
            match (
                package_address,
                self.blueprint_name.as_str(),
                self.function_name.as_str(),
            ) {
                (&PACKAGE_PACKAGE, PACKAGE_BLUEPRINT, PACKAGE_PUBLISH_WASM_IDENT) => {
                    return DecompiledInstruction::new("PUBLISH_PACKAGE");
                }
                (&PACKAGE_PACKAGE, PACKAGE_BLUEPRINT, PACKAGE_PUBLISH_WASM_ADVANCED_IDENT) => {
                    return DecompiledInstruction::new("PUBLISH_PACKAGE_ADVANCED");
                }
                (&ACCOUNT_PACKAGE, ACCOUNT_BLUEPRINT, ACCOUNT_CREATE_ADVANCED_IDENT) => {
                    return DecompiledInstruction::new("CREATE_ACCOUNT_ADVANCED");
                }
                (&ACCOUNT_PACKAGE, ACCOUNT_BLUEPRINT, ACCOUNT_CREATE_IDENT) => {
                    return DecompiledInstruction::new("CREATE_ACCOUNT");
                }
                (&IDENTITY_PACKAGE, IDENTITY_BLUEPRINT, IDENTITY_CREATE_ADVANCED_IDENT) => {
                    return DecompiledInstruction::new("CREATE_IDENTITY_ADVANCED");
                }
                (&IDENTITY_PACKAGE, IDENTITY_BLUEPRINT, IDENTITY_CREATE_IDENT) => {
                    return DecompiledInstruction::new("CREATE_IDENTITY");
                }
                (
                    &ACCESS_CONTROLLER_PACKAGE,
                    ACCESS_CONTROLLER_BLUEPRINT,
                    ACCESS_CONTROLLER_CREATE_IDENT,
                ) => {
                    return DecompiledInstruction::new("CREATE_ACCESS_CONTROLLER");
                }
                (
                    &RESOURCE_PACKAGE,
                    FUNGIBLE_RESOURCE_MANAGER_BLUEPRINT,
                    FUNGIBLE_RESOURCE_MANAGER_CREATE_IDENT,
                ) => {
                    return DecompiledInstruction::new("CREATE_FUNGIBLE_RESOURCE");
                }
                (
                    &RESOURCE_PACKAGE,
                    FUNGIBLE_RESOURCE_MANAGER_BLUEPRINT,
                    FUNGIBLE_RESOURCE_MANAGER_CREATE_WITH_INITIAL_SUPPLY_IDENT,
                ) => {
                    return DecompiledInstruction::new(
                        "CREATE_FUNGIBLE_RESOURCE_WITH_INITIAL_SUPPLY",
                    );
                }
                (
                    &RESOURCE_PACKAGE,
                    NON_FUNGIBLE_RESOURCE_MANAGER_BLUEPRINT,
                    NON_FUNGIBLE_RESOURCE_MANAGER_CREATE_IDENT,
                ) => {
                    return DecompiledInstruction::new("CREATE_NON_FUNGIBLE_RESOURCE");
                }
                (
                    &RESOURCE_PACKAGE,
                    NON_FUNGIBLE_RESOURCE_MANAGER_BLUEPRINT,
                    NON_FUNGIBLE_RESOURCE_MANAGER_CREATE_WITH_INITIAL_SUPPLY_IDENT,
                ) => {
                    return DecompiledInstruction::new(
                        "CREATE_NON_FUNGIBLE_RESOURCE_WITH_INITIAL_SUPPLY",
                    );
                }
                _ => {}
            }
        }
        DecompiledInstruction::new(Self::IDENT)
            .add_argument(self.package_address)
            .add_argument(&self.blueprint_name)
            .add_argument(&self.function_name)
    }
}

impl ManifestInstruction for CallFunction {
    const IDENT: &'static str = "CALL_FUNCTION";
    const ID: u8 = INSTRUCTION_CALL_FUNCTION_DISCRIMINATOR;

    fn decompile(
        &self,
        _context: &mut DecompilationContext,
    ) -> Result<DecompiledInstruction, DecompileError> {
        self.decompile_header()
            .add_separated_tuple_value_arguments(&self.args)
    }

    fn effect(&self) -> Effect<'_> {
        Effect::Invocation {
            kind: InvocationKind::Function {
                address: &self.package_address,
                blueprint: &self.blueprint_name,
                function: &self.function_name,
            },
            args: &self.args,
        }
    }
}

#[derive(Debug, Clone, PartialEq, Eq, ManifestSbor, ScryptoDescribe)]
pub struct CallMethod {
    pub address: ManifestGlobalAddress,
    pub method_name: String,
    pub args: ManifestValue,
}

impl CallMethod {
    fn decompile_header(&self) -> DecompiledInstruction {
        if let ManifestGlobalAddress::Static(global_address) = &self.address {
            match (global_address.as_node_id(), self.method_name.as_str()) {
                (address, PACKAGE_CLAIM_ROYALTIES_IDENT) if address.is_global_package() => {
                    return DecompiledInstruction::new("CLAIM_PACKAGE_ROYALTIES")
                        .add_argument(global_address);
                }
                (address, FUNGIBLE_RESOURCE_MANAGER_MINT_IDENT)
                    if address.is_global_fungible_resource_manager() =>
                {
                    return DecompiledInstruction::new("MINT_FUNGIBLE")
                        .add_argument(global_address);
                }
                (address, NON_FUNGIBLE_RESOURCE_MANAGER_MINT_IDENT)
                    if address.is_global_non_fungible_resource_manager() =>
                {
                    return DecompiledInstruction::new("MINT_NON_FUNGIBLE")
                        .add_argument(global_address);
                }
                (address, NON_FUNGIBLE_RESOURCE_MANAGER_MINT_RUID_IDENT)
                    if address.is_global_non_fungible_resource_manager() =>
                {
                    return DecompiledInstruction::new("MINT_RUID_NON_FUNGIBLE")
                        .add_argument(global_address);
                }
                (address, CONSENSUS_MANAGER_CREATE_VALIDATOR_IDENT)
                    if address.is_global_consensus_manager() =>
                {
                    return DecompiledInstruction::new("CREATE_VALIDATOR");
                }
                _ => {}
            }
        }
        DecompiledInstruction::new(Self::IDENT)
            .add_argument(self.address)
            .add_argument(&self.method_name)
    }
}

impl ManifestInstruction for CallMethod {
    const IDENT: &'static str = "CALL_METHOD";
    const ID: u8 = INSTRUCTION_CALL_METHOD_DISCRIMINATOR;

    fn decompile(
        &self,
        _context: &mut DecompilationContext,
    ) -> Result<DecompiledInstruction, DecompileError> {
        self.decompile_header()
            .add_separated_tuple_value_arguments(&self.args)
    }

    fn effect(&self) -> Effect<'_> {
        Effect::Invocation {
            kind: InvocationKind::Method {
                address: &self.address,
                module_id: ModuleId::Main,
                method: &self.method_name,
            },
            args: &self.args,
        }
    }
}

#[derive(Debug, Clone, PartialEq, Eq, ManifestSbor, ScryptoDescribe)]
pub struct CallRoyaltyMethod {
    pub address: ManifestGlobalAddress,
    pub method_name: String,
    pub args: ManifestValue,
}

impl CallRoyaltyMethod {
    fn decompile_header(&self) -> DecompiledInstruction {
        match self.method_name.as_str() {
            COMPONENT_ROYALTY_SET_ROYALTY_IDENT => {
                return DecompiledInstruction::new("SET_COMPONENT_ROYALTY")
                    .add_argument(self.address);
            }
            COMPONENT_ROYALTY_LOCK_ROYALTY_IDENT => {
                return DecompiledInstruction::new("LOCK_COMPONENT_ROYALTY")
                    .add_argument(self.address);
            }
            COMPONENT_ROYALTY_CLAIM_ROYALTIES_IDENT => {
                return DecompiledInstruction::new("CLAIM_COMPONENT_ROYALTIES")
                    .add_argument(self.address);
            }
            _ => {}
        }
        DecompiledInstruction::new(Self::IDENT)
            .add_argument(self.address)
            .add_argument(&self.method_name)
    }
}

impl ManifestInstruction for CallRoyaltyMethod {
    const IDENT: &'static str = "CALL_ROYALTY_METHOD";
    const ID: u8 = INSTRUCTION_CALL_ROYALTY_METHOD_DISCRIMINATOR;

    fn decompile(
        &self,
        _context: &mut DecompilationContext,
    ) -> Result<DecompiledInstruction, DecompileError> {
        self.decompile_header()
            .add_separated_tuple_value_arguments(&self.args)
    }

    fn effect(&self) -> Effect<'_> {
        Effect::Invocation {
            kind: InvocationKind::Method {
                address: &self.address,
                module_id: ModuleId::Royalty,
                method: &self.method_name,
            },
            args: &self.args,
        }
    }
}

#[derive(Debug, Clone, PartialEq, Eq, ManifestSbor, ScryptoDescribe)]
pub struct CallMetadataMethod {
    pub address: ManifestGlobalAddress,
    pub method_name: String,
    pub args: ManifestValue,
}

impl CallMetadataMethod {
    fn decompile_header(&self) -> DecompiledInstruction {
        match self.method_name.as_str() {
            METADATA_SET_IDENT => {
                return DecompiledInstruction::new("SET_METADATA").add_argument(self.address);
            }
            METADATA_REMOVE_IDENT => {
                return DecompiledInstruction::new("REMOVE_METADATA").add_argument(self.address);
            }
            METADATA_LOCK_IDENT => {
                return DecompiledInstruction::new("LOCK_METADATA").add_argument(self.address);
            }
            _ => {}
        }
        DecompiledInstruction::new(Self::IDENT)
            .add_argument(self.address)
            .add_argument(&self.method_name)
    }
}

impl ManifestInstruction for CallMetadataMethod {
    const IDENT: &'static str = "CALL_METADATA_METHOD";
    const ID: u8 = INSTRUCTION_CALL_METADATA_METHOD_DISCRIMINATOR;

    fn decompile(
        &self,
        _context: &mut DecompilationContext,
    ) -> Result<DecompiledInstruction, DecompileError> {
        self.decompile_header()
            .add_separated_tuple_value_arguments(&self.args)
    }

    fn effect(&self) -> Effect<'_> {
        Effect::Invocation {
            kind: InvocationKind::Method {
                address: &self.address,
                module_id: ModuleId::Metadata,
                method: &self.method_name,
            },
            args: &self.args,
        }
    }
}

#[derive(Debug, Clone, PartialEq, Eq, ManifestSbor, ScryptoDescribe)]
pub struct CallRoleAssignmentMethod {
    pub address: ManifestGlobalAddress,
    pub method_name: String,
    pub args: ManifestValue,
}

impl CallRoleAssignmentMethod {
    fn decompile_header(&self) -> DecompiledInstruction {
        match self.method_name.as_str() {
            ROLE_ASSIGNMENT_SET_OWNER_IDENT => {
                return DecompiledInstruction::new("SET_OWNER_ROLE").add_argument(self.address);
            }
            ROLE_ASSIGNMENT_LOCK_OWNER_IDENT => {
                return DecompiledInstruction::new("LOCK_OWNER_ROLE").add_argument(self.address);
            }
            ROLE_ASSIGNMENT_SET_IDENT => {
                return DecompiledInstruction::new("SET_ROLE").add_argument(self.address);
            }
            _ => {}
        }
        DecompiledInstruction::new(Self::IDENT)
            .add_argument(self.address)
            .add_argument(&self.method_name)
    }
}

impl ManifestInstruction for CallRoleAssignmentMethod {
    const IDENT: &'static str = "CALL_ROLE_ASSIGNMENT_METHOD";
    const ID: u8 = INSTRUCTION_CALL_ROLE_ASSIGNMENT_METHOD_DISCRIMINATOR;

    fn decompile(
        &self,
        _context: &mut DecompilationContext,
    ) -> Result<DecompiledInstruction, DecompileError> {
        self.decompile_header()
            .add_separated_tuple_value_arguments(&self.args)
    }

    fn effect(&self) -> Effect<'_> {
        Effect::Invocation {
            kind: InvocationKind::Method {
                address: &self.address,
                module_id: ModuleId::RoleAssignment,
                method: &self.method_name,
            },
            args: &self.args,
        }
    }
}

#[derive(Debug, Clone, PartialEq, Eq, ManifestSbor, ScryptoDescribe)]
pub struct CallDirectVaultMethod {
    pub address: InternalAddress,
    pub method_name: String,
    pub args: ManifestValue,
}

impl CallDirectVaultMethod {
    fn decompile_header(&self) -> DecompiledInstruction {
        match self.method_name.as_str() {
            VAULT_RECALL_IDENT => {
                return DecompiledInstruction::new("RECALL_FROM_VAULT").add_argument(self.address);
            }
            VAULT_FREEZE_IDENT => {
                return DecompiledInstruction::new("FREEZE_VAULT").add_argument(self.address);
            }
            VAULT_UNFREEZE_IDENT => {
                return DecompiledInstruction::new("UNFREEZE_VAULT").add_argument(self.address);
            }
            NON_FUNGIBLE_VAULT_RECALL_NON_FUNGIBLES_IDENT => {
                return DecompiledInstruction::new("RECALL_NON_FUNGIBLES_FROM_VAULT")
                    .add_argument(self.address);
            }
            _ => {}
        }
        DecompiledInstruction::new(Self::IDENT)
            .add_argument(self.address)
            .add_argument(&self.method_name)
    }
}

impl ManifestInstruction for CallDirectVaultMethod {
    const IDENT: &'static str = "CALL_DIRECT_VAULT_METHOD";
    const ID: u8 = INSTRUCTION_CALL_DIRECT_VAULT_METHOD_DISCRIMINATOR;

    fn decompile(
        &self,
        _context: &mut DecompilationContext,
    ) -> Result<DecompiledInstruction, DecompileError> {
        self.decompile_header()
            .add_separated_tuple_value_arguments(&self.args)
    }

    fn effect(&self) -> Effect<'_> {
        Effect::Invocation {
            kind: InvocationKind::DirectMethod {
                address: &self.address,
                method: &self.method_name,
            },
            args: &self.args,
        }
    }
}

//======================================================================
// region:Address Allocation
//======================================================================

/// Preallocates a global address for an object of the given blueprint.
/// The package address and blueprint name must be provided, followed
/// by a new `AddressReservation("name")` and a new `NamedAddress("name")`.
///
/// The address reservation can be passed into a constructor to be used
/// to create the object at that address. The named address can be
/// used in the place of another address in an invocation or other
/// manifest instruction.
#[derive(Debug, Clone, PartialEq, Eq, ManifestSbor, ScryptoDescribe)]
pub struct AllocateGlobalAddress {
    pub package_address: PackageAddress,
    pub blueprint_name: String,
}

impl ManifestInstruction for AllocateGlobalAddress {
    const IDENT: &'static str = "ALLOCATE_GLOBAL_ADDRESS";
    const ID: u8 = INSTRUCTION_ALLOCATE_GLOBAL_ADDRESS_DISCRIMINATOR;

    fn decompile(
        &self,
        context: &mut DecompilationContext,
    ) -> Result<DecompiledInstruction, DecompileError> {
        let instruction = DecompiledInstruction::new(Self::IDENT)
            .add_argument(self.package_address)
            .add_argument(&self.blueprint_name)
            .add_argument(context.new_address_reservation())
            .add_argument(context.new_address());
        Ok(instruction)
    }

    fn effect(&self) -> Effect<'_> {
        Effect::CreateAddressAndReservation {
            package_address: &self.package_address,
            blueprint_name: &self.blueprint_name,
        }
    }
}

//======================================================================
// region:Interactions with other intents
//======================================================================

/// This instruction is only allowed in subintent manifests. It passes
/// control to a parent intent, and takes an optional list of arguments,
/// to enable passing buckets to the parent intent. Other objects are not
/// allowed to be passed.
///
/// Every subintent must end with a `YIELD_TO_PARENT` to end the subintent
/// and return constrol to the parent intent.
///
/// `YIELD_TO_PARENT` instructions which are not at the end of the subintent
/// instead temporarily pause execution, and hand over control to the parent.
/// Control is resumed when the parent intent calls `YIELD_TO_CHILD` on this subintent.
///
/// The validation and runtime guarantee that all subintents are run to
/// completion by their parents.
#[derive(Debug, Clone, PartialEq, Eq, ManifestSbor, ScryptoDescribe)]
pub struct YieldToParent {
    pub args: ManifestValue,
}

impl YieldToParent {
    pub fn empty() -> Self {
        Self {
            args: ManifestValue::unit(),
        }
    }
}

impl ManifestInstruction for YieldToParent {
    const IDENT: &'static str = "YIELD_TO_PARENT";
    const ID: u8 = INSTRUCTION_YIELD_TO_PARENT_DISCRIMINATOR;

    fn decompile(
        &self,
        _context: &mut DecompilationContext,
    ) -> Result<DecompiledInstruction, DecompileError> {
        DecompiledInstruction::new(Self::IDENT).add_separated_tuple_value_arguments(&self.args)
    }

    fn effect(&self) -> Effect<'_> {
        Effect::Invocation {
            kind: InvocationKind::YieldToParent,
            args: &self.args,
        }
    }
}

/// This instruction passes control to the given child subintent.
/// It takes an optional list of arguments, to enable passing buckets to
/// the child subintent. Other objects are not allowed to be passed.
///
/// `YIELD_TO_CHILD` instructions temporarily pause execution, and
/// hand over control to the child. Control is resumed when the child
/// subintent calls `YIELD_TO_PARENT`.
///
/// The validation and runtime guarantee that subintents end with a
/// `YIELD_TO_PARENT`, and that the number of `YIELD_TO_PARENT` calls in
/// a child matches the number of `YIELD_TO_CHILD` calls in the parent.
#[derive(Debug, Clone, PartialEq, Eq, ManifestSbor, ScryptoDescribe)]
pub struct YieldToChild {
    /// Ideally this would be a ManifestNamedIntent - but there wasn't time
    /// to version ManifestSbor and add this in - so instead, we use a raw u32
    /// here.
    pub child_index: ManifestNamedIntentIndex,
    pub args: ManifestValue,
}

impl YieldToChild {
    pub fn empty(index: u32) -> Self {
        Self {
            child_index: ManifestNamedIntentIndex(index),
            args: ManifestValue::unit(),
        }
    }
}

impl ManifestInstruction for YieldToChild {
    const IDENT: &'static str = "YIELD_TO_CHILD";
    const ID: u8 = INSTRUCTION_YIELD_TO_CHILD_DISCRIMINATOR;

    fn decompile(
        &self,
        context: &mut DecompilationContext,
    ) -> Result<DecompiledInstruction, DecompileError> {
        let intent_name = context.object_names.intent_name(self.child_index.into());
        DecompiledInstruction::new(Self::IDENT)
            .add_raw_argument(format!("NamedIntent(\"{intent_name}\")"))
            .add_separated_tuple_value_arguments(&self.args)
    }

    fn effect(&self) -> Effect<'_> {
        Effect::Invocation {
            kind: InvocationKind::YieldToChild {
                child_index: self.child_index.into(),
            },
            args: &self.args,
        }
    }
}

/// This instruction is used to run an access rule assertion against
/// the parent manifest's auth zone.
///
/// This can be used by a subintent to perform a counterparty check,
/// to ensure their subintent can only be directly used by a particular
/// counterparty.
#[derive(Debug, Clone, PartialEq, Eq, ManifestSbor, ScryptoDescribe)]
pub struct VerifyParent {
    pub access_rule: AccessRule,
}

impl ManifestInstruction for VerifyParent {
    const IDENT: &'static str = "VERIFY_PARENT";
    const ID: u8 = INSTRUCTION_VERIFY_PARENT_DISCRIMINATOR;

    fn decompile(
        &self,
        _context: &mut DecompilationContext,
    ) -> Result<DecompiledInstruction, DecompileError> {
        let instruction = DecompiledInstruction::new(Self::IDENT).add_argument(&self.access_rule);
        Ok(instruction)
    }

    fn effect(&self) -> Effect<'_> {
        Effect::Verification {
            verification: VerificationKind::Parent,
            access_rule: &self.access_rule,
        }
    }
}

//===============================================================
// region:Discriminators
//===============================================================
// These discriminators have to be constant, but have been regrouped
// below into a more logical grouping, to put similar instructions
// together.
//===============================================================

//==============
// Bucket Lifecycle
//==============
const INSTRUCTION_TAKE_FROM_WORKTOP_DISCRIMINATOR: u8 = 0x00;
const INSTRUCTION_TAKE_NON_FUNGIBLES_FROM_WORKTOP_DISCRIMINATOR: u8 = 0x01;
const INSTRUCTION_TAKE_ALL_FROM_WORKTOP_DISCRIMINATOR: u8 = 0x02;
const INSTRUCTION_RETURN_TO_WORKTOP_DISCRIMINATOR: u8 = 0x03;
const INSTRUCTION_BURN_RESOURCE_DISCRIMINATOR: u8 = 0x24;

//==============
// Resource Assertions
//==============
const INSTRUCTION_ASSERT_WORKTOP_CONTAINS_DISCRIMINATOR: u8 = 0x04;
const INSTRUCTION_ASSERT_WORKTOP_CONTAINS_NON_FUNGIBLES_DISCRIMINATOR: u8 = 0x05;
const INSTRUCTION_ASSERT_WORKTOP_CONTAINS_ANY_DISCRIMINATOR: u8 = 0x06;

const INSTRUCTION_ASSERT_WORKTOP_RESOURCES_ONLY_DISCRIMINATOR: u8 = 0x08;
const INSTRUCTION_ASSERT_WORKTOP_RESOURCES_INCLUDE_DISCRIMINATOR: u8 = 0x09;
const INSTRUCTION_ASSERT_NEXT_CALL_RETURNS_ONLY_DISCRIMINATOR: u8 = 0x0A;
const INSTRUCTION_ASSERT_NEXT_CALL_RETURNS_INCLUDE_DISCRIMINATOR: u8 = 0x0B;
const INSTRUCTION_ASSERT_BUCKET_CONTENTS_DISCRIMINATOR: u8 = 0x0C;

//==============
// Proof Lifecycle
//==============
const INSTRUCTION_CREATE_PROOF_FROM_BUCKET_OF_AMOUNT_DISCRIMINATOR: u8 = 0x21;
const INSTRUCTION_CREATE_PROOF_FROM_BUCKET_OF_NON_FUNGIBLES_DISCRIMINATOR: u8 = 0x22;
const INSTRUCTION_CREATE_PROOF_FROM_BUCKET_OF_ALL_DISCRIMINATOR: u8 = 0x23;

const INSTRUCTION_CREATE_PROOF_FROM_AUTH_ZONE_OF_AMOUNT_DISCRIMINATOR: u8 = 0x14;
const INSTRUCTION_CREATE_PROOF_FROM_AUTH_ZONE_OF_NON_FUNGIBLES_DISCRIMINATOR: u8 = 0x15;
const INSTRUCTION_CREATE_PROOF_FROM_AUTH_ZONE_OF_ALL_DISCRIMINATOR: u8 = 0x16;

const INSTRUCTION_CLONE_PROOF_DISCRIMINATOR: u8 = 0x30;
const INSTRUCTION_DROP_PROOF_DISCRIMINATOR: u8 = 0x31;

const INSTRUCTION_POP_FROM_AUTH_ZONE_DISCRIMINATOR: u8 = 0x10;
const INSTRUCTION_PUSH_TO_AUTH_ZONE_DISCRIMINATOR: u8 = 0x11;

const INSTRUCTION_DROP_AUTH_ZONE_PROOFS_DISCRIMINATOR: u8 = 0x12;
const INSTRUCTION_DROP_AUTH_ZONE_REGULAR_PROOFS_DISCRIMINATOR: u8 = 0x13;
const INSTRUCTION_DROP_AUTH_ZONE_SIGNATURE_PROOFS_DISCRIMINATOR: u8 = 0x17;

const INSTRUCTION_DROP_NAMED_PROOFS_DISCRIMINATOR: u8 = 0x52;
const INSTRUCTION_DROP_ALL_PROOFS_DISCRIMINATOR: u8 = 0x50;

//==============
// Invocation
//==============
const INSTRUCTION_CALL_FUNCTION_DISCRIMINATOR: u8 = 0x40;
const INSTRUCTION_CALL_METHOD_DISCRIMINATOR: u8 = 0x41;
const INSTRUCTION_CALL_ROYALTY_METHOD_DISCRIMINATOR: u8 = 0x42;
const INSTRUCTION_CALL_METADATA_METHOD_DISCRIMINATOR: u8 = 0x43;
const INSTRUCTION_CALL_ROLE_ASSIGNMENT_METHOD_DISCRIMINATOR: u8 = 0x44;
const INSTRUCTION_CALL_DIRECT_VAULT_METHOD_DISCRIMINATOR: u8 = 0x45;

//==============
// Address Allocation
//==============
const INSTRUCTION_ALLOCATE_GLOBAL_ADDRESS_DISCRIMINATOR: u8 = 0x51;

//==============
// Interactions with other intents
//==============
const INSTRUCTION_YIELD_TO_PARENT_DISCRIMINATOR: u8 = 0x60;
const INSTRUCTION_YIELD_TO_CHILD_DISCRIMINATOR: u8 = 0x61;
const INSTRUCTION_VERIFY_PARENT_DISCRIMINATOR: u8 = 0x62;