@hyperscale0/hsx 2.0.0 → 2.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +25 -0
- package/dist/src/cli.d.ts +1 -1
- package/dist/src/diagnostics.d.ts.map +1 -1
- package/dist/src/diagnostics.js +7 -0
- package/dist/src/diagnostics.js.map +1 -1
- package/dist/src/std-bundle.js +19 -19
- package/dist/src/std-bundle.js.map +1 -1
- package/dist/src/typecheck.js +89 -1
- package/dist/src/typecheck.js.map +1 -1
- package/dist/src/version.d.ts +1 -1
- package/dist/src/version.js +1 -1
- package/docs/guide/01-first-program.md +1 -1
- package/docs/guide/09-cost.md +1 -1
- package/docs/llms-full.txt +64 -39
- package/docs/llms.txt +2 -2
- package/docs/reference/cli.md +2 -2
- package/docs/reference/diagnostics.md +21 -1
- package/docs/reference/grammar.md +1 -1
- package/docs/reference/std/advance.md +1 -1
- package/docs/reference/std/cancellable_booking.md +1 -1
- package/docs/reference/std/captured_payment.md +1 -1
- package/docs/reference/std/conditional_disbursement.md +1 -1
- package/docs/reference/std/credit_facility.md +1 -1
- package/docs/reference/std/held_payment.md +41 -36
- package/docs/reference/std/instant_transfer.md +1 -1
- package/docs/reference/std/metered.md +1 -1
- package/docs/reference/std/pooled_split.md +1 -1
- package/docs/reference/std/premium_forward.md +1 -1
- package/docs/reference/std/reconciled_payout.md +1 -1
- package/docs/reference/std/recurring_collection.md +1 -1
- package/docs/reference/std/rotating_pool.md +1 -1
- package/docs/reference/std/scheduled.md +1 -1
- package/docs/reference/std/security_deposit.md +1 -1
- package/docs/reference/std/settlement_batch.md +1 -1
- package/docs/reference/std/swap.md +1 -1
- package/docs/reference/std/threshold_pool.md +1 -1
- package/docs/reference/std/weighted_distribution.md +1 -1
- package/docs/reference/types.md +1 -1
- package/docs/reference/udl-output.md +1 -1
- package/examples/advance/advance.udl +6 -6
- package/examples/cancellable_booking/cancellable_booking.udl +10 -10
- package/examples/captured_payment/captured_payment.udl +6 -6
- package/examples/conditional_disbursement/conditional_disbursement.udl +2 -2
- package/examples/cost-table.json +18 -78
- package/examples/credit_facility/credit_facility.udl +10 -10
- package/examples/held_payment/held_payment.udl +23 -12
- package/examples/instant_transfer/instant_transfer.udl +6 -6
- package/examples/metered/metered.udl +4 -4
- package/examples/pooled_split/pooled_split.udl +10 -10
- package/examples/premium_forward/premium_forward.udl +12 -12
- package/examples/recurring_collection/recurring_collection.udl +8 -8
- package/examples/rotating_pool/rotating_pool.udl +78 -78
- package/examples/scheduled/scheduled.udl +6 -6
- package/examples/security_deposit/security_deposit.udl +2 -2
- package/examples/swap/swap.udl +22 -22
- package/examples/threshold_pool/threshold_pool.udl +10 -10
- package/examples/weighted_distribution/weighted_distribution.udl +2 -2
- package/package.json +3 -3
- package/skills/hsx/SKILL.md +2 -2
- package/src/diagnostics.ts +10 -0
- package/src/std-bundle.ts +19 -19
- package/src/typecheck.ts +105 -1
- package/src/version.ts +1 -1
- package/std/money_flows/advance.hsx +45 -0
- package/std/money_flows/cancellable_booking.hsx +45 -0
- package/std/money_flows/captured_payment.hsx +55 -0
- package/std/money_flows/conditional_disbursement.hsx +46 -0
- package/std/money_flows/credit_facility.hsx +57 -0
- package/std/money_flows/held_payment.hsx +152 -3
- package/std/money_flows/instant_transfer.hsx +42 -0
- package/std/money_flows/metered.hsx +41 -0
- package/std/money_flows/pooled_split.hsx +41 -0
- package/std/money_flows/premium_forward.hsx +51 -0
- package/std/money_flows/reconciled_payout.hsx +42 -0
- package/std/money_flows/recurring_collection.hsx +45 -0
- package/std/money_flows/rotating_pool.hsx +51 -0
- package/std/money_flows/scheduled.hsx +53 -0
- package/std/money_flows/security_deposit.hsx +58 -0
- package/std/money_flows/settlement_batch.hsx +51 -0
- package/std/money_flows/swap.hsx +53 -0
- package/std/money_flows/threshold_pool.hsx +51 -0
- package/std/money_flows/weighted_distribution.hsx +54 -0
|
@@ -606,8 +606,8 @@
|
|
|
606
606
|
"path": "fields.contributionAmount"
|
|
607
607
|
},
|
|
608
608
|
"currency": {
|
|
609
|
-
"from": "
|
|
610
|
-
"
|
|
609
|
+
"from": "const",
|
|
610
|
+
"value": "SAR"
|
|
611
611
|
},
|
|
612
612
|
"destinationAccountId": {
|
|
613
613
|
"from": "instance",
|
|
@@ -686,8 +686,8 @@
|
|
|
686
686
|
"path": "fields.contributionAmount"
|
|
687
687
|
},
|
|
688
688
|
"currency": {
|
|
689
|
-
"from": "
|
|
690
|
-
"
|
|
689
|
+
"from": "const",
|
|
690
|
+
"value": "SAR"
|
|
691
691
|
},
|
|
692
692
|
"destinationAccountId": {
|
|
693
693
|
"from": "instance",
|
|
@@ -765,8 +765,8 @@
|
|
|
765
765
|
"path": "fields.contributionAmount"
|
|
766
766
|
},
|
|
767
767
|
"currency": {
|
|
768
|
-
"from": "
|
|
769
|
-
"
|
|
768
|
+
"from": "const",
|
|
769
|
+
"value": "SAR"
|
|
770
770
|
},
|
|
771
771
|
"destinationAccountId": {
|
|
772
772
|
"from": "instance",
|
|
@@ -845,8 +845,8 @@
|
|
|
845
845
|
{
|
|
846
846
|
"bind": {
|
|
847
847
|
"currency": {
|
|
848
|
-
"from": "
|
|
849
|
-
"
|
|
848
|
+
"from": "const",
|
|
849
|
+
"value": "SAR"
|
|
850
850
|
},
|
|
851
851
|
"owner.id": {
|
|
852
852
|
"from": "instance",
|
|
@@ -897,8 +897,8 @@
|
|
|
897
897
|
"path": "fields.contributionAmount"
|
|
898
898
|
},
|
|
899
899
|
"currency": {
|
|
900
|
-
"from": "
|
|
901
|
-
"
|
|
900
|
+
"from": "const",
|
|
901
|
+
"value": "SAR"
|
|
902
902
|
},
|
|
903
903
|
"destinationAccountId": {
|
|
904
904
|
"from": "instance",
|
|
@@ -968,8 +968,8 @@
|
|
|
968
968
|
"path": "fields.contributionAmount"
|
|
969
969
|
},
|
|
970
970
|
"currency": {
|
|
971
|
-
"from": "
|
|
972
|
-
"
|
|
971
|
+
"from": "const",
|
|
972
|
+
"value": "SAR"
|
|
973
973
|
},
|
|
974
974
|
"destinationAccountId": {
|
|
975
975
|
"from": "instance",
|
|
@@ -1039,8 +1039,8 @@
|
|
|
1039
1039
|
"path": "fields.contributionAmount"
|
|
1040
1040
|
},
|
|
1041
1041
|
"currency": {
|
|
1042
|
-
"from": "
|
|
1043
|
-
"
|
|
1042
|
+
"from": "const",
|
|
1043
|
+
"value": "SAR"
|
|
1044
1044
|
},
|
|
1045
1045
|
"destinationAccountId": {
|
|
1046
1046
|
"from": "instance",
|
|
@@ -1202,8 +1202,8 @@
|
|
|
1202
1202
|
"path": "fields.contributionAmount"
|
|
1203
1203
|
},
|
|
1204
1204
|
"currency": {
|
|
1205
|
-
"from": "
|
|
1206
|
-
"
|
|
1205
|
+
"from": "const",
|
|
1206
|
+
"value": "SAR"
|
|
1207
1207
|
},
|
|
1208
1208
|
"destinationAccountId": {
|
|
1209
1209
|
"from": "instance",
|
|
@@ -1274,8 +1274,8 @@
|
|
|
1274
1274
|
"path": "fields.contributionAmount"
|
|
1275
1275
|
},
|
|
1276
1276
|
"currency": {
|
|
1277
|
-
"from": "
|
|
1278
|
-
"
|
|
1277
|
+
"from": "const",
|
|
1278
|
+
"value": "SAR"
|
|
1279
1279
|
},
|
|
1280
1280
|
"destinationAccountId": {
|
|
1281
1281
|
"from": "instance",
|
|
@@ -1345,8 +1345,8 @@
|
|
|
1345
1345
|
"path": "fields.contributionAmount"
|
|
1346
1346
|
},
|
|
1347
1347
|
"currency": {
|
|
1348
|
-
"from": "
|
|
1349
|
-
"
|
|
1348
|
+
"from": "const",
|
|
1349
|
+
"value": "SAR"
|
|
1350
1350
|
},
|
|
1351
1351
|
"destinationAccountId": {
|
|
1352
1352
|
"from": "instance",
|
|
@@ -1416,8 +1416,8 @@
|
|
|
1416
1416
|
"path": "fields.contributionAmount"
|
|
1417
1417
|
},
|
|
1418
1418
|
"currency": {
|
|
1419
|
-
"from": "
|
|
1420
|
-
"
|
|
1419
|
+
"from": "const",
|
|
1420
|
+
"value": "SAR"
|
|
1421
1421
|
},
|
|
1422
1422
|
"destinationAccountId": {
|
|
1423
1423
|
"from": "instance",
|
|
@@ -1487,8 +1487,8 @@
|
|
|
1487
1487
|
"path": "fields.contributionAmount"
|
|
1488
1488
|
},
|
|
1489
1489
|
"currency": {
|
|
1490
|
-
"from": "
|
|
1491
|
-
"
|
|
1490
|
+
"from": "const",
|
|
1491
|
+
"value": "SAR"
|
|
1492
1492
|
},
|
|
1493
1493
|
"destinationAccountId": {
|
|
1494
1494
|
"from": "instance",
|
|
@@ -1558,8 +1558,8 @@
|
|
|
1558
1558
|
"path": "fields.contributionAmount"
|
|
1559
1559
|
},
|
|
1560
1560
|
"currency": {
|
|
1561
|
-
"from": "
|
|
1562
|
-
"
|
|
1561
|
+
"from": "const",
|
|
1562
|
+
"value": "SAR"
|
|
1563
1563
|
},
|
|
1564
1564
|
"destinationAccountId": {
|
|
1565
1565
|
"from": "instance",
|
|
@@ -1876,8 +1876,8 @@
|
|
|
1876
1876
|
"path": "fields.contributionAmount"
|
|
1877
1877
|
},
|
|
1878
1878
|
"currency": {
|
|
1879
|
-
"from": "
|
|
1880
|
-
"
|
|
1879
|
+
"from": "const",
|
|
1880
|
+
"value": "SAR"
|
|
1881
1881
|
},
|
|
1882
1882
|
"destinationAccountId": {
|
|
1883
1883
|
"from": "instance",
|
|
@@ -1956,8 +1956,8 @@
|
|
|
1956
1956
|
"path": "fields.contributionAmount"
|
|
1957
1957
|
},
|
|
1958
1958
|
"currency": {
|
|
1959
|
-
"from": "
|
|
1960
|
-
"
|
|
1959
|
+
"from": "const",
|
|
1960
|
+
"value": "SAR"
|
|
1961
1961
|
},
|
|
1962
1962
|
"destinationAccountId": {
|
|
1963
1963
|
"from": "instance",
|
|
@@ -2035,8 +2035,8 @@
|
|
|
2035
2035
|
"path": "fields.contributionAmount"
|
|
2036
2036
|
},
|
|
2037
2037
|
"currency": {
|
|
2038
|
-
"from": "
|
|
2039
|
-
"
|
|
2038
|
+
"from": "const",
|
|
2039
|
+
"value": "SAR"
|
|
2040
2040
|
},
|
|
2041
2041
|
"destinationAccountId": {
|
|
2042
2042
|
"from": "instance",
|
|
@@ -2115,8 +2115,8 @@
|
|
|
2115
2115
|
{
|
|
2116
2116
|
"bind": {
|
|
2117
2117
|
"currency": {
|
|
2118
|
-
"from": "
|
|
2119
|
-
"
|
|
2118
|
+
"from": "const",
|
|
2119
|
+
"value": "SAR"
|
|
2120
2120
|
},
|
|
2121
2121
|
"owner.id": {
|
|
2122
2122
|
"from": "instance",
|
|
@@ -2167,8 +2167,8 @@
|
|
|
2167
2167
|
"path": "fields.contributionAmount"
|
|
2168
2168
|
},
|
|
2169
2169
|
"currency": {
|
|
2170
|
-
"from": "
|
|
2171
|
-
"
|
|
2170
|
+
"from": "const",
|
|
2171
|
+
"value": "SAR"
|
|
2172
2172
|
},
|
|
2173
2173
|
"destinationAccountId": {
|
|
2174
2174
|
"from": "instance",
|
|
@@ -2238,8 +2238,8 @@
|
|
|
2238
2238
|
"path": "fields.contributionAmount"
|
|
2239
2239
|
},
|
|
2240
2240
|
"currency": {
|
|
2241
|
-
"from": "
|
|
2242
|
-
"
|
|
2241
|
+
"from": "const",
|
|
2242
|
+
"value": "SAR"
|
|
2243
2243
|
},
|
|
2244
2244
|
"destinationAccountId": {
|
|
2245
2245
|
"from": "instance",
|
|
@@ -2309,8 +2309,8 @@
|
|
|
2309
2309
|
"path": "fields.contributionAmount"
|
|
2310
2310
|
},
|
|
2311
2311
|
"currency": {
|
|
2312
|
-
"from": "
|
|
2313
|
-
"
|
|
2312
|
+
"from": "const",
|
|
2313
|
+
"value": "SAR"
|
|
2314
2314
|
},
|
|
2315
2315
|
"destinationAccountId": {
|
|
2316
2316
|
"from": "instance",
|
|
@@ -2472,8 +2472,8 @@
|
|
|
2472
2472
|
"path": "fields.contributionAmount"
|
|
2473
2473
|
},
|
|
2474
2474
|
"currency": {
|
|
2475
|
-
"from": "
|
|
2476
|
-
"
|
|
2475
|
+
"from": "const",
|
|
2476
|
+
"value": "SAR"
|
|
2477
2477
|
},
|
|
2478
2478
|
"destinationAccountId": {
|
|
2479
2479
|
"from": "instance",
|
|
@@ -2544,8 +2544,8 @@
|
|
|
2544
2544
|
"path": "fields.contributionAmount"
|
|
2545
2545
|
},
|
|
2546
2546
|
"currency": {
|
|
2547
|
-
"from": "
|
|
2548
|
-
"
|
|
2547
|
+
"from": "const",
|
|
2548
|
+
"value": "SAR"
|
|
2549
2549
|
},
|
|
2550
2550
|
"destinationAccountId": {
|
|
2551
2551
|
"from": "instance",
|
|
@@ -2615,8 +2615,8 @@
|
|
|
2615
2615
|
"path": "fields.contributionAmount"
|
|
2616
2616
|
},
|
|
2617
2617
|
"currency": {
|
|
2618
|
-
"from": "
|
|
2619
|
-
"
|
|
2618
|
+
"from": "const",
|
|
2619
|
+
"value": "SAR"
|
|
2620
2620
|
},
|
|
2621
2621
|
"destinationAccountId": {
|
|
2622
2622
|
"from": "instance",
|
|
@@ -2686,8 +2686,8 @@
|
|
|
2686
2686
|
"path": "fields.contributionAmount"
|
|
2687
2687
|
},
|
|
2688
2688
|
"currency": {
|
|
2689
|
-
"from": "
|
|
2690
|
-
"
|
|
2689
|
+
"from": "const",
|
|
2690
|
+
"value": "SAR"
|
|
2691
2691
|
},
|
|
2692
2692
|
"destinationAccountId": {
|
|
2693
2693
|
"from": "instance",
|
|
@@ -2757,8 +2757,8 @@
|
|
|
2757
2757
|
"path": "fields.contributionAmount"
|
|
2758
2758
|
},
|
|
2759
2759
|
"currency": {
|
|
2760
|
-
"from": "
|
|
2761
|
-
"
|
|
2760
|
+
"from": "const",
|
|
2761
|
+
"value": "SAR"
|
|
2762
2762
|
},
|
|
2763
2763
|
"destinationAccountId": {
|
|
2764
2764
|
"from": "instance",
|
|
@@ -2828,8 +2828,8 @@
|
|
|
2828
2828
|
"path": "fields.contributionAmount"
|
|
2829
2829
|
},
|
|
2830
2830
|
"currency": {
|
|
2831
|
-
"from": "
|
|
2832
|
-
"
|
|
2831
|
+
"from": "const",
|
|
2832
|
+
"value": "SAR"
|
|
2833
2833
|
},
|
|
2834
2834
|
"destinationAccountId": {
|
|
2835
2835
|
"from": "instance",
|
|
@@ -3146,8 +3146,8 @@
|
|
|
3146
3146
|
"path": "fields.contributionAmount"
|
|
3147
3147
|
},
|
|
3148
3148
|
"currency": {
|
|
3149
|
-
"from": "
|
|
3150
|
-
"
|
|
3149
|
+
"from": "const",
|
|
3150
|
+
"value": "SAR"
|
|
3151
3151
|
},
|
|
3152
3152
|
"destinationAccountId": {
|
|
3153
3153
|
"from": "instance",
|
|
@@ -3226,8 +3226,8 @@
|
|
|
3226
3226
|
"path": "fields.contributionAmount"
|
|
3227
3227
|
},
|
|
3228
3228
|
"currency": {
|
|
3229
|
-
"from": "
|
|
3230
|
-
"
|
|
3229
|
+
"from": "const",
|
|
3230
|
+
"value": "SAR"
|
|
3231
3231
|
},
|
|
3232
3232
|
"destinationAccountId": {
|
|
3233
3233
|
"from": "instance",
|
|
@@ -3305,8 +3305,8 @@
|
|
|
3305
3305
|
"path": "fields.contributionAmount"
|
|
3306
3306
|
},
|
|
3307
3307
|
"currency": {
|
|
3308
|
-
"from": "
|
|
3309
|
-
"
|
|
3308
|
+
"from": "const",
|
|
3309
|
+
"value": "SAR"
|
|
3310
3310
|
},
|
|
3311
3311
|
"destinationAccountId": {
|
|
3312
3312
|
"from": "instance",
|
|
@@ -3385,8 +3385,8 @@
|
|
|
3385
3385
|
{
|
|
3386
3386
|
"bind": {
|
|
3387
3387
|
"currency": {
|
|
3388
|
-
"from": "
|
|
3389
|
-
"
|
|
3388
|
+
"from": "const",
|
|
3389
|
+
"value": "SAR"
|
|
3390
3390
|
},
|
|
3391
3391
|
"owner.id": {
|
|
3392
3392
|
"from": "instance",
|
|
@@ -3437,8 +3437,8 @@
|
|
|
3437
3437
|
"path": "fields.contributionAmount"
|
|
3438
3438
|
},
|
|
3439
3439
|
"currency": {
|
|
3440
|
-
"from": "
|
|
3441
|
-
"
|
|
3440
|
+
"from": "const",
|
|
3441
|
+
"value": "SAR"
|
|
3442
3442
|
},
|
|
3443
3443
|
"destinationAccountId": {
|
|
3444
3444
|
"from": "instance",
|
|
@@ -3508,8 +3508,8 @@
|
|
|
3508
3508
|
"path": "fields.contributionAmount"
|
|
3509
3509
|
},
|
|
3510
3510
|
"currency": {
|
|
3511
|
-
"from": "
|
|
3512
|
-
"
|
|
3511
|
+
"from": "const",
|
|
3512
|
+
"value": "SAR"
|
|
3513
3513
|
},
|
|
3514
3514
|
"destinationAccountId": {
|
|
3515
3515
|
"from": "instance",
|
|
@@ -3579,8 +3579,8 @@
|
|
|
3579
3579
|
"path": "fields.contributionAmount"
|
|
3580
3580
|
},
|
|
3581
3581
|
"currency": {
|
|
3582
|
-
"from": "
|
|
3583
|
-
"
|
|
3582
|
+
"from": "const",
|
|
3583
|
+
"value": "SAR"
|
|
3584
3584
|
},
|
|
3585
3585
|
"destinationAccountId": {
|
|
3586
3586
|
"from": "instance",
|
|
@@ -3742,8 +3742,8 @@
|
|
|
3742
3742
|
"path": "fields.contributionAmount"
|
|
3743
3743
|
},
|
|
3744
3744
|
"currency": {
|
|
3745
|
-
"from": "
|
|
3746
|
-
"
|
|
3745
|
+
"from": "const",
|
|
3746
|
+
"value": "SAR"
|
|
3747
3747
|
},
|
|
3748
3748
|
"destinationAccountId": {
|
|
3749
3749
|
"from": "instance",
|
|
@@ -3814,8 +3814,8 @@
|
|
|
3814
3814
|
"path": "fields.contributionAmount"
|
|
3815
3815
|
},
|
|
3816
3816
|
"currency": {
|
|
3817
|
-
"from": "
|
|
3818
|
-
"
|
|
3817
|
+
"from": "const",
|
|
3818
|
+
"value": "SAR"
|
|
3819
3819
|
},
|
|
3820
3820
|
"destinationAccountId": {
|
|
3821
3821
|
"from": "instance",
|
|
@@ -3885,8 +3885,8 @@
|
|
|
3885
3885
|
"path": "fields.contributionAmount"
|
|
3886
3886
|
},
|
|
3887
3887
|
"currency": {
|
|
3888
|
-
"from": "
|
|
3889
|
-
"
|
|
3888
|
+
"from": "const",
|
|
3889
|
+
"value": "SAR"
|
|
3890
3890
|
},
|
|
3891
3891
|
"destinationAccountId": {
|
|
3892
3892
|
"from": "instance",
|
|
@@ -3956,8 +3956,8 @@
|
|
|
3956
3956
|
"path": "fields.contributionAmount"
|
|
3957
3957
|
},
|
|
3958
3958
|
"currency": {
|
|
3959
|
-
"from": "
|
|
3960
|
-
"
|
|
3959
|
+
"from": "const",
|
|
3960
|
+
"value": "SAR"
|
|
3961
3961
|
},
|
|
3962
3962
|
"destinationAccountId": {
|
|
3963
3963
|
"from": "instance",
|
|
@@ -4027,8 +4027,8 @@
|
|
|
4027
4027
|
"path": "fields.contributionAmount"
|
|
4028
4028
|
},
|
|
4029
4029
|
"currency": {
|
|
4030
|
-
"from": "
|
|
4031
|
-
"
|
|
4030
|
+
"from": "const",
|
|
4031
|
+
"value": "SAR"
|
|
4032
4032
|
},
|
|
4033
4033
|
"destinationAccountId": {
|
|
4034
4034
|
"from": "instance",
|
|
@@ -4098,8 +4098,8 @@
|
|
|
4098
4098
|
"path": "fields.contributionAmount"
|
|
4099
4099
|
},
|
|
4100
4100
|
"currency": {
|
|
4101
|
-
"from": "
|
|
4102
|
-
"
|
|
4101
|
+
"from": "const",
|
|
4102
|
+
"value": "SAR"
|
|
4103
4103
|
},
|
|
4104
4104
|
"destinationAccountId": {
|
|
4105
4105
|
"from": "instance",
|
|
@@ -41,8 +41,8 @@
|
|
|
41
41
|
"path": "fields.installment1Amount"
|
|
42
42
|
},
|
|
43
43
|
"currency": {
|
|
44
|
-
"from": "
|
|
45
|
-
"
|
|
44
|
+
"from": "const",
|
|
45
|
+
"value": "SAR"
|
|
46
46
|
},
|
|
47
47
|
"destinationAccountId": {
|
|
48
48
|
"from": "instance",
|
|
@@ -107,8 +107,8 @@
|
|
|
107
107
|
"path": "fields.installment2Amount"
|
|
108
108
|
},
|
|
109
109
|
"currency": {
|
|
110
|
-
"from": "
|
|
111
|
-
"
|
|
110
|
+
"from": "const",
|
|
111
|
+
"value": "SAR"
|
|
112
112
|
},
|
|
113
113
|
"destinationAccountId": {
|
|
114
114
|
"from": "instance",
|
|
@@ -172,8 +172,8 @@
|
|
|
172
172
|
"path": "fields.installment3Amount"
|
|
173
173
|
},
|
|
174
174
|
"currency": {
|
|
175
|
-
"from": "
|
|
176
|
-
"
|
|
175
|
+
"from": "const",
|
|
176
|
+
"value": "SAR"
|
|
177
177
|
},
|
|
178
178
|
"destinationAccountId": {
|
|
179
179
|
"from": "instance",
|
package/examples/swap/swap.udl
CHANGED
|
@@ -43,8 +43,8 @@
|
|
|
43
43
|
"path": "fields.buyerAmount"
|
|
44
44
|
},
|
|
45
45
|
"currency": {
|
|
46
|
-
"from": "
|
|
47
|
-
"
|
|
46
|
+
"from": "const",
|
|
47
|
+
"value": "SAR"
|
|
48
48
|
},
|
|
49
49
|
"destinationAccountId": {
|
|
50
50
|
"from": "instance",
|
|
@@ -84,8 +84,8 @@
|
|
|
84
84
|
"path": "fields.sellerAmount"
|
|
85
85
|
},
|
|
86
86
|
"currency": {
|
|
87
|
-
"from": "
|
|
88
|
-
"
|
|
87
|
+
"from": "const",
|
|
88
|
+
"value": "SAR"
|
|
89
89
|
},
|
|
90
90
|
"destinationAccountId": {
|
|
91
91
|
"from": "instance",
|
|
@@ -131,8 +131,8 @@
|
|
|
131
131
|
{
|
|
132
132
|
"bind": {
|
|
133
133
|
"currency": {
|
|
134
|
-
"from": "
|
|
135
|
-
"
|
|
134
|
+
"from": "const",
|
|
135
|
+
"value": "SAR"
|
|
136
136
|
},
|
|
137
137
|
"owner.id": {
|
|
138
138
|
"from": "instance",
|
|
@@ -232,8 +232,8 @@
|
|
|
232
232
|
"path": "fields.buyerAmount"
|
|
233
233
|
},
|
|
234
234
|
"currency": {
|
|
235
|
-
"from": "
|
|
236
|
-
"
|
|
235
|
+
"from": "const",
|
|
236
|
+
"value": "SAR"
|
|
237
237
|
},
|
|
238
238
|
"destinationAccountId": {
|
|
239
239
|
"from": "instance",
|
|
@@ -277,8 +277,8 @@
|
|
|
277
277
|
"path": "fields.sellerAmount"
|
|
278
278
|
},
|
|
279
279
|
"currency": {
|
|
280
|
-
"from": "
|
|
281
|
-
"
|
|
280
|
+
"from": "const",
|
|
281
|
+
"value": "SAR"
|
|
282
282
|
},
|
|
283
283
|
"destinationAccountId": {
|
|
284
284
|
"from": "instance",
|
|
@@ -356,8 +356,8 @@
|
|
|
356
356
|
"path": "fields.buyerAmount"
|
|
357
357
|
},
|
|
358
358
|
"currency": {
|
|
359
|
-
"from": "
|
|
360
|
-
"
|
|
359
|
+
"from": "const",
|
|
360
|
+
"value": "SAR"
|
|
361
361
|
},
|
|
362
362
|
"destinationAccountId": {
|
|
363
363
|
"from": "instance",
|
|
@@ -397,8 +397,8 @@
|
|
|
397
397
|
"path": "fields.sellerAmount"
|
|
398
398
|
},
|
|
399
399
|
"currency": {
|
|
400
|
-
"from": "
|
|
401
|
-
"
|
|
400
|
+
"from": "const",
|
|
401
|
+
"value": "SAR"
|
|
402
402
|
},
|
|
403
403
|
"destinationAccountId": {
|
|
404
404
|
"from": "instance",
|
|
@@ -438,8 +438,8 @@
|
|
|
438
438
|
"path": "fields.buyerFee"
|
|
439
439
|
},
|
|
440
440
|
"currency": {
|
|
441
|
-
"from": "
|
|
442
|
-
"
|
|
441
|
+
"from": "const",
|
|
442
|
+
"value": "SAR"
|
|
443
443
|
},
|
|
444
444
|
"destinationAccountId": {
|
|
445
445
|
"from": "instance",
|
|
@@ -479,8 +479,8 @@
|
|
|
479
479
|
"path": "fields.sellerFee"
|
|
480
480
|
},
|
|
481
481
|
"currency": {
|
|
482
|
-
"from": "
|
|
483
|
-
"
|
|
482
|
+
"from": "const",
|
|
483
|
+
"value": "SAR"
|
|
484
484
|
},
|
|
485
485
|
"destinationAccountId": {
|
|
486
486
|
"from": "instance",
|
|
@@ -604,8 +604,8 @@
|
|
|
604
604
|
"path": "fields.buyerAmount"
|
|
605
605
|
},
|
|
606
606
|
"currency": {
|
|
607
|
-
"from": "
|
|
608
|
-
"
|
|
607
|
+
"from": "const",
|
|
608
|
+
"value": "SAR"
|
|
609
609
|
},
|
|
610
610
|
"destinationAccountId": {
|
|
611
611
|
"from": "instance",
|
|
@@ -649,8 +649,8 @@
|
|
|
649
649
|
"path": "fields.sellerAmount"
|
|
650
650
|
},
|
|
651
651
|
"currency": {
|
|
652
|
-
"from": "
|
|
653
|
-
"
|
|
652
|
+
"from": "const",
|
|
653
|
+
"value": "SAR"
|
|
654
654
|
},
|
|
655
655
|
"destinationAccountId": {
|
|
656
656
|
"from": "instance",
|
|
@@ -253,8 +253,8 @@
|
|
|
253
253
|
"path": "fields.amount"
|
|
254
254
|
},
|
|
255
255
|
"currency": {
|
|
256
|
-
"from": "
|
|
257
|
-
"
|
|
256
|
+
"from": "const",
|
|
257
|
+
"value": "SAR"
|
|
258
258
|
},
|
|
259
259
|
"destinationAccountId": {
|
|
260
260
|
"from": "instance",
|
|
@@ -328,8 +328,8 @@
|
|
|
328
328
|
"path": "fields.amount"
|
|
329
329
|
},
|
|
330
330
|
"currency": {
|
|
331
|
-
"from": "
|
|
332
|
-
"
|
|
331
|
+
"from": "const",
|
|
332
|
+
"value": "SAR"
|
|
333
333
|
},
|
|
334
334
|
"destinationAccountId": {
|
|
335
335
|
"from": "instance",
|
|
@@ -403,8 +403,8 @@
|
|
|
403
403
|
"path": "fields.amount"
|
|
404
404
|
},
|
|
405
405
|
"currency": {
|
|
406
|
-
"from": "
|
|
407
|
-
"
|
|
406
|
+
"from": "const",
|
|
407
|
+
"value": "SAR"
|
|
408
408
|
},
|
|
409
409
|
"destinationAccountId": {
|
|
410
410
|
"from": "instance",
|
|
@@ -467,8 +467,8 @@
|
|
|
467
467
|
{
|
|
468
468
|
"bind": {
|
|
469
469
|
"currency": {
|
|
470
|
-
"from": "
|
|
471
|
-
"
|
|
470
|
+
"from": "const",
|
|
471
|
+
"value": "SAR"
|
|
472
472
|
},
|
|
473
473
|
"owner.id": {
|
|
474
474
|
"from": "instance",
|
|
@@ -519,8 +519,8 @@
|
|
|
519
519
|
"path": "fields.amount"
|
|
520
520
|
},
|
|
521
521
|
"currency": {
|
|
522
|
-
"from": "
|
|
523
|
-
"
|
|
522
|
+
"from": "const",
|
|
523
|
+
"value": "SAR"
|
|
524
524
|
},
|
|
525
525
|
"destinationAccountId": {
|
|
526
526
|
"from": "instance",
|