@hyperscale0/hsx 2.4.1 → 3.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (249) hide show
  1. package/CHANGELOG.md +4 -406
  2. package/README.md +3 -92
  3. package/dist/src/ast.d.ts +99 -310
  4. package/dist/src/ast.d.ts.map +1 -1
  5. package/dist/src/ast.js +16 -69
  6. package/dist/src/ast.js.map +1 -1
  7. package/dist/src/cli.d.ts +6 -19
  8. package/dist/src/cli.d.ts.map +1 -1
  9. package/dist/src/cli.js +77 -315
  10. package/dist/src/cli.js.map +1 -1
  11. package/dist/src/compile.d.ts +23 -73
  12. package/dist/src/compile.d.ts.map +1 -1
  13. package/dist/src/compile.js +1113 -148
  14. package/dist/src/compile.js.map +1 -1
  15. package/dist/src/cost.d.ts +8 -77
  16. package/dist/src/cost.d.ts.map +1 -1
  17. package/dist/src/cost.js +13 -422
  18. package/dist/src/cost.js.map +1 -1
  19. package/dist/src/format.d.ts +8 -7
  20. package/dist/src/format.d.ts.map +1 -1
  21. package/dist/src/format.js +9 -175
  22. package/dist/src/format.js.map +1 -1
  23. package/dist/src/headers.d.ts +35 -0
  24. package/dist/src/headers.d.ts.map +1 -0
  25. package/dist/src/headers.js +108 -0
  26. package/dist/src/headers.js.map +1 -0
  27. package/dist/src/index.d.ts +6 -12
  28. package/dist/src/index.d.ts.map +1 -1
  29. package/dist/src/index.js +4 -9
  30. package/dist/src/index.js.map +1 -1
  31. package/dist/src/lex.d.ts +8 -28
  32. package/dist/src/lex.d.ts.map +1 -1
  33. package/dist/src/lex.js +88 -146
  34. package/dist/src/lex.js.map +1 -1
  35. package/dist/src/parse.d.ts +4 -17
  36. package/dist/src/parse.d.ts.map +1 -1
  37. package/dist/src/parse.js +402 -1040
  38. package/dist/src/parse.js.map +1 -1
  39. package/dist/src/std-bundle.d.ts.map +1 -1
  40. package/dist/src/std-bundle.js +12 -20
  41. package/dist/src/std-bundle.js.map +1 -1
  42. package/dist/src/std-library.d.ts +1 -1
  43. package/dist/src/std-library.d.ts.map +1 -1
  44. package/dist/src/std-library.js +1 -5
  45. package/dist/src/std-library.js.map +1 -1
  46. package/dist/src/tunables.d.ts +7 -0
  47. package/dist/src/tunables.d.ts.map +1 -0
  48. package/dist/src/tunables.js +26 -0
  49. package/dist/src/tunables.js.map +1 -0
  50. package/dist/src/version.d.ts +2 -4
  51. package/dist/src/version.d.ts.map +1 -1
  52. package/dist/src/version.js +2 -4
  53. package/dist/src/version.js.map +1 -1
  54. package/docs/README.md +179 -41
  55. package/docs/headers.md +44 -0
  56. package/examples/cost-table.json +99 -751
  57. package/examples/library.hsx +59 -0
  58. package/package.json +9 -17
  59. package/src/ast.ts +82 -441
  60. package/src/cli.ts +78 -362
  61. package/src/compile.ts +1535 -247
  62. package/src/cost.ts +28 -671
  63. package/src/format.ts +12 -256
  64. package/src/headers.ts +126 -0
  65. package/src/index.ts +7 -39
  66. package/src/lex.ts +99 -195
  67. package/src/parse.ts +403 -1209
  68. package/src/std-bundle.ts +12 -20
  69. package/src/std-library.ts +2 -7
  70. package/src/tunables.ts +31 -0
  71. package/src/version.ts +2 -5
  72. package/std/approvals.hsx +17 -0
  73. package/std/cards.hsx +63 -0
  74. package/std/collections.hsx +31 -0
  75. package/std/escrow.hsx +43 -0
  76. package/std/financing.hsx +372 -0
  77. package/std/insurance.hsx +59 -0
  78. package/std/lending.hsx +115 -0
  79. package/std/marketplace.hsx +24 -0
  80. package/std/money.hsx +195 -0
  81. package/std/savings.hsx +44 -0
  82. package/std/travel.hsx +98 -0
  83. package/std/wallet.hsx +41 -0
  84. package/dist/src/diagnostics.d.ts +0 -13
  85. package/dist/src/diagnostics.d.ts.map +0 -1
  86. package/dist/src/diagnostics.js +0 -587
  87. package/dist/src/diagnostics.js.map +0 -1
  88. package/dist/src/emit.d.ts +0 -51
  89. package/dist/src/emit.d.ts.map +0 -1
  90. package/dist/src/emit.js +0 -192
  91. package/dist/src/emit.js.map +0 -1
  92. package/dist/src/entry-overrides.d.ts +0 -58
  93. package/dist/src/entry-overrides.d.ts.map +0 -1
  94. package/dist/src/entry-overrides.js +0 -284
  95. package/dist/src/entry-overrides.js.map +0 -1
  96. package/dist/src/ir.d.ts +0 -73
  97. package/dist/src/ir.d.ts.map +0 -1
  98. package/dist/src/ir.js +0 -15
  99. package/dist/src/ir.js.map +0 -1
  100. package/dist/src/limits.d.ts +0 -23
  101. package/dist/src/limits.d.ts.map +0 -1
  102. package/dist/src/limits.js +0 -23
  103. package/dist/src/limits.js.map +0 -1
  104. package/dist/src/lsp/server.d.ts +0 -32
  105. package/dist/src/lsp/server.d.ts.map +0 -1
  106. package/dist/src/lsp/server.js +0 -391
  107. package/dist/src/lsp/server.js.map +0 -1
  108. package/dist/src/modules.d.ts +0 -38
  109. package/dist/src/modules.d.ts.map +0 -1
  110. package/dist/src/modules.js +0 -372
  111. package/dist/src/modules.js.map +0 -1
  112. package/dist/src/typecheck.d.ts +0 -8
  113. package/dist/src/typecheck.d.ts.map +0 -1
  114. package/dist/src/typecheck.js +0 -4160
  115. package/dist/src/typecheck.js.map +0 -1
  116. package/docs/guide/01-first-program.md +0 -24
  117. package/docs/guide/02-money.md +0 -25
  118. package/docs/guide/03-instruments.md +0 -93
  119. package/docs/guide/04-lifecycles.md +0 -40
  120. package/docs/guide/05-fees-and-splits.md +0 -45
  121. package/docs/guide/06-schedules.md +0 -26
  122. package/docs/guide/07-composition.md +0 -52
  123. package/docs/guide/08-writing-a-module.md +0 -85
  124. package/docs/guide/09-cost.md +0 -24
  125. package/docs/guide/10-diagnostics.md +0 -27
  126. package/docs/llms-full.txt +0 -3684
  127. package/docs/llms.txt +0 -44
  128. package/docs/piece-plans.md +0 -120
  129. package/docs/playground.md +0 -55
  130. package/docs/reference/cli.md +0 -36
  131. package/docs/reference/diagnostics.md +0 -901
  132. package/docs/reference/grammar.md +0 -38
  133. package/docs/reference/std/advance.md +0 -112
  134. package/docs/reference/std/cancellable_booking.md +0 -159
  135. package/docs/reference/std/captured_payment.md +0 -115
  136. package/docs/reference/std/conditional_disbursement.md +0 -101
  137. package/docs/reference/std/credit_facility.md +0 -108
  138. package/docs/reference/std/held_payment.md +0 -173
  139. package/docs/reference/std/instant_transfer.md +0 -97
  140. package/docs/reference/std/metered.md +0 -89
  141. package/docs/reference/std/pooled_split.md +0 -95
  142. package/docs/reference/std/premium_forward.md +0 -119
  143. package/docs/reference/std/reconciled_payout.md +0 -103
  144. package/docs/reference/std/rotating_pool.md +0 -130
  145. package/docs/reference/std/scheduled.md +0 -136
  146. package/docs/reference/std/security_deposit.md +0 -138
  147. package/docs/reference/std/settlement_batch.md +0 -123
  148. package/docs/reference/std/swap.md +0 -133
  149. package/docs/reference/std/threshold_pool.md +0 -138
  150. package/docs/reference/std/weighted_distribution.md +0 -135
  151. package/docs/reference/types.md +0 -61
  152. package/docs/reference/udl-output.md +0 -13
  153. package/examples/01-first-program/README.md +0 -45
  154. package/examples/01-first-program/tip-jar.hsx +0 -17
  155. package/examples/02-imports-and-modules/README.md +0 -96
  156. package/examples/02-imports-and-modules/photo-booth.hsx +0 -37
  157. package/examples/03-diagnostics/README.md +0 -68
  158. package/examples/03-diagnostics/corner-shop-fixed.hsx +0 -22
  159. package/examples/03-diagnostics/corner-shop.hsx +0 -19
  160. package/examples/04-complete-product/README.md +0 -84
  161. package/examples/04-complete-product/study-hall.hsx +0 -67
  162. package/examples/05-authored-instrument/README.md +0 -5
  163. package/examples/05-authored-instrument/payment.hsx +0 -37
  164. package/examples/05-watch-club/README.md +0 -6
  165. package/examples/05-watch-club/watch-club.hsx +0 -123
  166. package/examples/README.md +0 -48
  167. package/examples/advance/README.md +0 -3
  168. package/examples/advance/advance.hsx +0 -13
  169. package/examples/advance/advance.udl +0 -367
  170. package/examples/cancellable_booking/README.md +0 -3
  171. package/examples/cancellable_booking/cancellable_booking.hsx +0 -14
  172. package/examples/cancellable_booking/cancellable_booking.udl +0 -413
  173. package/examples/captured_payment/README.md +0 -3
  174. package/examples/captured_payment/captured_payment.hsx +0 -17
  175. package/examples/captured_payment/captured_payment.udl +0 -686
  176. package/examples/conditional_disbursement/README.md +0 -3
  177. package/examples/conditional_disbursement/conditional_disbursement.hsx +0 -15
  178. package/examples/conditional_disbursement/conditional_disbursement.udl +0 -418
  179. package/examples/credit_facility/README.md +0 -3
  180. package/examples/credit_facility/credit_facility.hsx +0 -24
  181. package/examples/credit_facility/credit_facility.udl +0 -1396
  182. package/examples/held_payment/README.md +0 -3
  183. package/examples/held_payment/held_payment.hsx +0 -13
  184. package/examples/held_payment/held_payment.udl +0 -569
  185. package/examples/instant_transfer/README.md +0 -3
  186. package/examples/instant_transfer/instant_transfer.hsx +0 -16
  187. package/examples/instant_transfer/instant_transfer.udl +0 -376
  188. package/examples/metered/README.md +0 -3
  189. package/examples/metered/metered.hsx +0 -13
  190. package/examples/metered/metered.udl +0 -253
  191. package/examples/pooled_split/README.md +0 -3
  192. package/examples/pooled_split/pooled_split.hsx +0 -15
  193. package/examples/pooled_split/pooled_split.udl +0 -432
  194. package/examples/premium_forward/README.md +0 -3
  195. package/examples/premium_forward/premium_forward.hsx +0 -19
  196. package/examples/premium_forward/premium_forward.udl +0 -604
  197. package/examples/reconciled_payout/README.md +0 -3
  198. package/examples/reconciled_payout/reconciled_payout.hsx +0 -13
  199. package/examples/reconciled_payout/reconciled_payout.udl +0 -312
  200. package/examples/rotating_pool/README.md +0 -3
  201. package/examples/rotating_pool/rotating_pool.hsx +0 -18
  202. package/examples/rotating_pool/rotating_pool.udl +0 -4370
  203. package/examples/scheduled/README.md +0 -3
  204. package/examples/scheduled/scheduled.hsx +0 -12
  205. package/examples/scheduled/scheduled.udl +0 -355
  206. package/examples/security_deposit/README.md +0 -3
  207. package/examples/security_deposit/security_deposit.hsx +0 -21
  208. package/examples/security_deposit/security_deposit.udl +0 -320
  209. package/examples/settlement_batch/README.md +0 -3
  210. package/examples/settlement_batch/settlement_batch.hsx +0 -19
  211. package/examples/settlement_batch/settlement_batch.udl +0 -757
  212. package/examples/swap/README.md +0 -3
  213. package/examples/swap/swap.hsx +0 -19
  214. package/examples/swap/swap.udl +0 -892
  215. package/examples/threshold_pool/README.md +0 -3
  216. package/examples/threshold_pool/threshold_pool.hsx +0 -16
  217. package/examples/threshold_pool/threshold_pool.udl +0 -680
  218. package/examples/weighted_distribution/README.md +0 -3
  219. package/examples/weighted_distribution/weighted_distribution.hsx +0 -20
  220. package/examples/weighted_distribution/weighted_distribution.udl +0 -348
  221. package/skills/hsx/SKILL.md +0 -449
  222. package/src/diagnostics.ts +0 -620
  223. package/src/emit.ts +0 -282
  224. package/src/entry-overrides.ts +0 -428
  225. package/src/ir.ts +0 -113
  226. package/src/limits.ts +0 -22
  227. package/src/lsp/server.ts +0 -460
  228. package/src/modules.ts +0 -452
  229. package/src/typecheck.ts +0 -5515
  230. package/std/SEMANTICS.md +0 -44
  231. package/std/money_flows/advance.hsx +0 -235
  232. package/std/money_flows/cancellable_booking.hsx +0 -402
  233. package/std/money_flows/captured_payment.hsx +0 -220
  234. package/std/money_flows/conditional_disbursement.hsx +0 -226
  235. package/std/money_flows/credit_facility.hsx +0 -214
  236. package/std/money_flows/held_payment.hsx +0 -812
  237. package/std/money_flows/index.hsx +0 -4
  238. package/std/money_flows/instant_transfer.hsx +0 -231
  239. package/std/money_flows/metered.hsx +0 -104
  240. package/std/money_flows/pooled_split.hsx +0 -109
  241. package/std/money_flows/premium_forward.hsx +0 -307
  242. package/std/money_flows/reconciled_payout.hsx +0 -119
  243. package/std/money_flows/rotating_pool.hsx +0 -305
  244. package/std/money_flows/scheduled.hsx +0 -599
  245. package/std/money_flows/security_deposit.hsx +0 -248
  246. package/std/money_flows/settlement_batch.hsx +0 -173
  247. package/std/money_flows/swap.hsx +0 -1192
  248. package/std/money_flows/threshold_pool.hsx +0 -307
  249. package/std/money_flows/weighted_distribution.hsx +0 -237
@@ -1,892 +0,0 @@
1
- {
2
- "instruments": [
3
- {
4
- "actionOrder": [
5
- "abandon",
6
- "cancel",
7
- "create",
8
- "dispute",
9
- "fund",
10
- "post",
11
- "release"
12
- ],
13
- "actions": {
14
- "abandon": {
15
- "agentDescription": "Walk away from a trade that never funded. Only a created trade abandons, and its escrow account must hold nothing, so there is nothing to refund. No money moves.",
16
- "moves": [],
17
- "publicAction": "abandonExchange",
18
- "requiresDrainedAccount": {
19
- "path": "refs.escrowAccountId"
20
- },
21
- "steps": [],
22
- "summary": "Abandon the trade before its atomic funding batch"
23
- },
24
- "cancel": {
25
- "agentDescription": "Unwind a funded trade before release. Both principals return from escrow to their own sides in one batch. The trade must be funded and not yet released. The service fees taken at funding stay with the platform.",
26
- "effects": {
27
- "moves": [
28
- {
29
- "signature": "moves.transfer.internal",
30
- "source": "moves[0]"
31
- },
32
- {
33
- "signature": "moves.transfer.internal",
34
- "source": "moves[1]"
35
- }
36
- ]
37
- },
38
- "moves": [
39
- {
40
- "bind": {
41
- "amount": {
42
- "from": "instance",
43
- "path": "fields.buyerAmount"
44
- },
45
- "currency": {
46
- "from": "const",
47
- "value": "SAR"
48
- },
49
- "destinationAccountId": {
50
- "from": "instance",
51
- "path": "fields.buyerAccountId"
52
- },
53
- "metadata.instrumentId": {
54
- "from": "const",
55
- "value": "exchange"
56
- },
57
- "metadata.instrumentInstanceId": {
58
- "from": "instance",
59
- "path": "instrumentInstanceId"
60
- },
61
- "metadata.phase": {
62
- "from": "const",
63
- "value": "cancel"
64
- },
65
- "productId": {
66
- "from": "instance",
67
- "path": "productId"
68
- },
69
- "sourceAccountId": {
70
- "from": "instance",
71
- "path": "refs.escrowAccountId"
72
- }
73
- },
74
- "capture": {
75
- "cancelSideARefundTransferId": "transferId"
76
- },
77
- "key": "side_a_refund",
78
- "operation": "internal_transfer.create"
79
- },
80
- {
81
- "bind": {
82
- "amount": {
83
- "from": "instance",
84
- "path": "fields.sellerAmount"
85
- },
86
- "currency": {
87
- "from": "const",
88
- "value": "SAR"
89
- },
90
- "destinationAccountId": {
91
- "from": "instance",
92
- "path": "fields.sellerAccountId"
93
- },
94
- "metadata.instrumentId": {
95
- "from": "const",
96
- "value": "exchange"
97
- },
98
- "metadata.instrumentInstanceId": {
99
- "from": "instance",
100
- "path": "instrumentInstanceId"
101
- },
102
- "metadata.phase": {
103
- "from": "const",
104
- "value": "cancel"
105
- },
106
- "productId": {
107
- "from": "instance",
108
- "path": "productId"
109
- },
110
- "sourceAccountId": {
111
- "from": "instance",
112
- "path": "refs.escrowAccountId"
113
- }
114
- },
115
- "capture": {
116
- "cancelSideBRefundTransferId": "transferId"
117
- },
118
- "key": "side_b_refund",
119
- "operation": "internal_transfer.create"
120
- }
121
- ],
122
- "publicAction": "cancelExchange",
123
- "steps": [],
124
- "summary": "Cancel and return both trade principals atomically"
125
- },
126
- "create": {
127
- "agentDescription": "Open a trade and provision its escrow account. No money moves. Both principals and both exact service fees are fixed here and cannot change afterwards.",
128
- "moves": [],
129
- "publicAction": "createExchange",
130
- "steps": [
131
- {
132
- "bind": {
133
- "currency": {
134
- "from": "const",
135
- "value": "SAR"
136
- },
137
- "owner.id": {
138
- "from": "instance",
139
- "path": "productId"
140
- },
141
- "owner.type": {
142
- "from": "const",
143
- "value": "product"
144
- },
145
- "productId": {
146
- "from": "instance",
147
- "path": "productId"
148
- },
149
- "role": {
150
- "from": "const",
151
- "value": "product_escrow"
152
- }
153
- },
154
- "capture": {
155
- "escrowAccountId": "accountId"
156
- },
157
- "operation": "account.escrow.provision"
158
- }
159
- ],
160
- "summary": "Create a exchange atomic trade"
161
- },
162
- "dispute": {
163
- "agentDescription": "Claw back a released trade inside its dispute window. Both cross-payment reservations void and both principals return from escrow in one batch. The trade must be released and the clawback moment must not have passed. The dispute port's declared parties may call it.",
164
- "deadline": {
165
- "field": "clawbackAt"
166
- },
167
- "effects": {
168
- "decides": [
169
- {
170
- "signature": "decides.tenant_port",
171
- "source": "port"
172
- }
173
- ],
174
- "moves": [
175
- {
176
- "signature": "moves.transfer.internal",
177
- "source": "moves[0]"
178
- },
179
- {
180
- "signature": "moves.transfer.internal",
181
- "source": "moves[1]"
182
- },
183
- {
184
- "signature": "moves.transfer.internal",
185
- "source": "moves[2]"
186
- },
187
- {
188
- "signature": "moves.transfer.internal",
189
- "source": "moves[3]"
190
- }
191
- ],
192
- "schedules": [
193
- {
194
- "signature": "schedules.deadline",
195
- "source": "deadline"
196
- }
197
- ]
198
- },
199
- "moves": [
200
- {
201
- "bind": {
202
- "reason": {
203
- "from": "const",
204
- "value": "Whole trade disputed inside the clawback window"
205
- },
206
- "transferId": {
207
- "from": "instance",
208
- "path": "refs.releaseSideATransferId"
209
- }
210
- },
211
- "key": "side_a_void",
212
- "operation": "internal_transfer.void"
213
- },
214
- {
215
- "bind": {
216
- "reason": {
217
- "from": "const",
218
- "value": "Whole trade disputed inside the clawback window"
219
- },
220
- "transferId": {
221
- "from": "instance",
222
- "path": "refs.releaseSideBTransferId"
223
- }
224
- },
225
- "key": "side_b_void",
226
- "operation": "internal_transfer.void"
227
- },
228
- {
229
- "bind": {
230
- "amount": {
231
- "from": "instance",
232
- "path": "fields.buyerAmount"
233
- },
234
- "currency": {
235
- "from": "const",
236
- "value": "SAR"
237
- },
238
- "destinationAccountId": {
239
- "from": "instance",
240
- "path": "fields.buyerAccountId"
241
- },
242
- "metadata.clawbackOfTransferId": {
243
- "from": "instance",
244
- "path": "refs.releaseSideATransferId"
245
- },
246
- "metadata.instrumentId": {
247
- "from": "const",
248
- "value": "exchange"
249
- },
250
- "metadata.instrumentInstanceId": {
251
- "from": "instance",
252
- "path": "instrumentInstanceId"
253
- },
254
- "metadata.phase": {
255
- "from": "const",
256
- "value": "dispute"
257
- },
258
- "productId": {
259
- "from": "instance",
260
- "path": "productId"
261
- },
262
- "sourceAccountId": {
263
- "from": "instance",
264
- "path": "refs.escrowAccountId"
265
- }
266
- },
267
- "capture": {
268
- "disputeSideARefundTransferId": "transferId"
269
- },
270
- "key": "side_a_refund",
271
- "operation": "internal_transfer.create"
272
- },
273
- {
274
- "bind": {
275
- "amount": {
276
- "from": "instance",
277
- "path": "fields.sellerAmount"
278
- },
279
- "currency": {
280
- "from": "const",
281
- "value": "SAR"
282
- },
283
- "destinationAccountId": {
284
- "from": "instance",
285
- "path": "fields.sellerAccountId"
286
- },
287
- "metadata.clawbackOfTransferId": {
288
- "from": "instance",
289
- "path": "refs.releaseSideBTransferId"
290
- },
291
- "metadata.instrumentId": {
292
- "from": "const",
293
- "value": "exchange"
294
- },
295
- "metadata.instrumentInstanceId": {
296
- "from": "instance",
297
- "path": "instrumentInstanceId"
298
- },
299
- "metadata.phase": {
300
- "from": "const",
301
- "value": "dispute"
302
- },
303
- "productId": {
304
- "from": "instance",
305
- "path": "productId"
306
- },
307
- "sourceAccountId": {
308
- "from": "instance",
309
- "path": "refs.escrowAccountId"
310
- }
311
- },
312
- "capture": {
313
- "disputeSideBRefundTransferId": "transferId"
314
- },
315
- "key": "side_b_refund",
316
- "operation": "internal_transfer.create"
317
- }
318
- ],
319
- "port": {
320
- "allowedParties": [
321
- "payer",
322
- "beneficiary"
323
- ]
324
- },
325
- "publicAction": "disputeExchange",
326
- "steps": [],
327
- "summary": "Void both reservations, then refund both principals atomically"
328
- },
329
- "fund": {
330
- "agentDescription": "Fund both sides at once. Each side pays its principal into escrow and its service fee to the platform account, four transfers in one batch. The trade must be created and unfunded. This moves real money from both parties.",
331
- "effects": {
332
- "moves": [
333
- {
334
- "signature": "moves.collection.pay_in",
335
- "source": "moves[0]"
336
- },
337
- {
338
- "signature": "moves.collection.pay_in",
339
- "source": "moves[1]"
340
- },
341
- {
342
- "signature": "moves.transfer.internal",
343
- "source": "moves[2]"
344
- },
345
- {
346
- "signature": "moves.transfer.internal",
347
- "source": "moves[3]"
348
- }
349
- ]
350
- },
351
- "moves": [
352
- {
353
- "bind": {
354
- "amount": {
355
- "from": "instance",
356
- "path": "fields.buyerAmount"
357
- },
358
- "currency": {
359
- "from": "const",
360
- "value": "SAR"
361
- },
362
- "destinationAccountId": {
363
- "from": "instance",
364
- "path": "refs.escrowAccountId"
365
- },
366
- "metadata.instrumentId": {
367
- "from": "const",
368
- "value": "exchange"
369
- },
370
- "metadata.instrumentInstanceId": {
371
- "from": "instance",
372
- "path": "instrumentInstanceId"
373
- },
374
- "metadata.phase": {
375
- "from": "const",
376
- "value": "fund"
377
- },
378
- "productId": {
379
- "from": "instance",
380
- "path": "productId"
381
- },
382
- "sourceAccountId": {
383
- "from": "instance",
384
- "path": "fields.buyerAccountId"
385
- }
386
- },
387
- "capture": {
388
- "fundSideAPrincipalTransferId": "transferId"
389
- },
390
- "key": "side_a_principal",
391
- "operation": "internal_transfer.create"
392
- },
393
- {
394
- "bind": {
395
- "amount": {
396
- "from": "instance",
397
- "path": "fields.sellerAmount"
398
- },
399
- "currency": {
400
- "from": "const",
401
- "value": "SAR"
402
- },
403
- "destinationAccountId": {
404
- "from": "instance",
405
- "path": "refs.escrowAccountId"
406
- },
407
- "metadata.instrumentId": {
408
- "from": "const",
409
- "value": "exchange"
410
- },
411
- "metadata.instrumentInstanceId": {
412
- "from": "instance",
413
- "path": "instrumentInstanceId"
414
- },
415
- "metadata.phase": {
416
- "from": "const",
417
- "value": "fund"
418
- },
419
- "productId": {
420
- "from": "instance",
421
- "path": "productId"
422
- },
423
- "sourceAccountId": {
424
- "from": "instance",
425
- "path": "fields.sellerAccountId"
426
- }
427
- },
428
- "capture": {
429
- "fundSideBPrincipalTransferId": "transferId"
430
- },
431
- "key": "side_b_principal",
432
- "operation": "internal_transfer.create"
433
- },
434
- {
435
- "bind": {
436
- "amount": {
437
- "from": "instance",
438
- "path": "fields.buyerFee"
439
- },
440
- "currency": {
441
- "from": "const",
442
- "value": "SAR"
443
- },
444
- "destinationAccountId": {
445
- "from": "instance",
446
- "path": "fields.platformAccountId"
447
- },
448
- "metadata.instrumentId": {
449
- "from": "const",
450
- "value": "exchange"
451
- },
452
- "metadata.instrumentInstanceId": {
453
- "from": "instance",
454
- "path": "instrumentInstanceId"
455
- },
456
- "metadata.phase": {
457
- "from": "const",
458
- "value": "fund"
459
- },
460
- "productId": {
461
- "from": "instance",
462
- "path": "productId"
463
- },
464
- "sourceAccountId": {
465
- "from": "instance",
466
- "path": "fields.buyerAccountId"
467
- }
468
- },
469
- "capture": {
470
- "fundSideAServiceFeeTransferId": "transferId"
471
- },
472
- "key": "side_a_service_fee",
473
- "operation": "internal_transfer.create"
474
- },
475
- {
476
- "bind": {
477
- "amount": {
478
- "from": "instance",
479
- "path": "fields.sellerFee"
480
- },
481
- "currency": {
482
- "from": "const",
483
- "value": "SAR"
484
- },
485
- "destinationAccountId": {
486
- "from": "instance",
487
- "path": "fields.platformAccountId"
488
- },
489
- "metadata.instrumentId": {
490
- "from": "const",
491
- "value": "exchange"
492
- },
493
- "metadata.instrumentInstanceId": {
494
- "from": "instance",
495
- "path": "instrumentInstanceId"
496
- },
497
- "metadata.phase": {
498
- "from": "const",
499
- "value": "fund"
500
- },
501
- "productId": {
502
- "from": "instance",
503
- "path": "productId"
504
- },
505
- "sourceAccountId": {
506
- "from": "instance",
507
- "path": "fields.sellerAccountId"
508
- }
509
- },
510
- "capture": {
511
- "fundSideBServiceFeeTransferId": "transferId"
512
- },
513
- "key": "side_b_service_fee",
514
- "operation": "internal_transfer.create"
515
- }
516
- ],
517
- "publicAction": "fundExchange",
518
- "sandboxFailurePoint": "funding",
519
- "steps": [],
520
- "summary": "Fund both trade sides and collect on-top fees atomically"
521
- },
522
- "post": {
523
- "due": {
524
- "field": "clawbackAt"
525
- },
526
- "effects": {
527
- "moves": [
528
- {
529
- "signature": "moves.transfer.internal",
530
- "source": "moves[0]"
531
- },
532
- {
533
- "signature": "moves.transfer.internal",
534
- "source": "moves[1]"
535
- }
536
- ],
537
- "schedules": [
538
- {
539
- "signature": "schedules.due",
540
- "source": "due"
541
- }
542
- ]
543
- },
544
- "moves": [
545
- {
546
- "bind": {
547
- "transferId": {
548
- "from": "instance",
549
- "path": "refs.releaseSideATransferId"
550
- }
551
- },
552
- "key": "side_a",
553
- "operation": "internal_transfer.post"
554
- },
555
- {
556
- "bind": {
557
- "transferId": {
558
- "from": "instance",
559
- "path": "refs.releaseSideBTransferId"
560
- }
561
- },
562
- "key": "side_b",
563
- "operation": "internal_transfer.post"
564
- }
565
- ],
566
- "steps": [],
567
- "summary": "Post both trade reservations when the clawback window matures"
568
- },
569
- "release": {
570
- "agentDescription": "Reserve each side's principal for the other side and start the dispute window. The trade must be funded. Money is reserved, not settled. It posts on its own when the window matures, and dispute unwinds it before then. The release port's declared parties may call it.",
571
- "effects": {
572
- "decides": [
573
- {
574
- "signature": "decides.tenant_port",
575
- "source": "port"
576
- }
577
- ],
578
- "holds": [
579
- {
580
- "signature": "holds.reserve",
581
- "source": "moves[0]"
582
- },
583
- {
584
- "signature": "holds.reserve",
585
- "source": "moves[1]"
586
- }
587
- ],
588
- "moves": [
589
- {
590
- "signature": "moves.transfer.internal",
591
- "source": "moves[0]"
592
- },
593
- {
594
- "signature": "moves.transfer.internal",
595
- "source": "moves[1]"
596
- }
597
- ]
598
- },
599
- "moves": [
600
- {
601
- "bind": {
602
- "amount": {
603
- "from": "instance",
604
- "path": "fields.buyerAmount"
605
- },
606
- "currency": {
607
- "from": "const",
608
- "value": "SAR"
609
- },
610
- "destinationAccountId": {
611
- "from": "instance",
612
- "path": "fields.sellerAccountId"
613
- },
614
- "metadata.clawbackAt": {
615
- "from": "instance",
616
- "path": "fields.clawbackAt"
617
- },
618
- "metadata.instrumentId": {
619
- "from": "const",
620
- "value": "exchange"
621
- },
622
- "metadata.instrumentInstanceId": {
623
- "from": "instance",
624
- "path": "instrumentInstanceId"
625
- },
626
- "metadata.phase": {
627
- "from": "const",
628
- "value": "release"
629
- },
630
- "productId": {
631
- "from": "instance",
632
- "path": "productId"
633
- },
634
- "sourceAccountId": {
635
- "from": "instance",
636
- "path": "refs.escrowAccountId"
637
- }
638
- },
639
- "capture": {
640
- "releaseSideATransferId": "transferId"
641
- },
642
- "key": "side_a",
643
- "operation": "internal_transfer.reserve"
644
- },
645
- {
646
- "bind": {
647
- "amount": {
648
- "from": "instance",
649
- "path": "fields.sellerAmount"
650
- },
651
- "currency": {
652
- "from": "const",
653
- "value": "SAR"
654
- },
655
- "destinationAccountId": {
656
- "from": "instance",
657
- "path": "fields.buyerAccountId"
658
- },
659
- "metadata.clawbackAt": {
660
- "from": "instance",
661
- "path": "fields.clawbackAt"
662
- },
663
- "metadata.instrumentId": {
664
- "from": "const",
665
- "value": "exchange"
666
- },
667
- "metadata.instrumentInstanceId": {
668
- "from": "instance",
669
- "path": "instrumentInstanceId"
670
- },
671
- "metadata.phase": {
672
- "from": "const",
673
- "value": "release"
674
- },
675
- "productId": {
676
- "from": "instance",
677
- "path": "productId"
678
- },
679
- "sourceAccountId": {
680
- "from": "instance",
681
- "path": "refs.escrowAccountId"
682
- }
683
- },
684
- "capture": {
685
- "releaseSideBTransferId": "transferId"
686
- },
687
- "key": "side_b",
688
- "operation": "internal_transfer.reserve"
689
- }
690
- ],
691
- "port": {
692
- "allowedParties": [
693
- "payer",
694
- "beneficiary"
695
- ]
696
- },
697
- "publicAction": "releaseExchange",
698
- "sandboxFailurePoint": "release",
699
- "setsAt": {
700
- "field": "clawbackAt",
701
- "offset": "P7D"
702
- },
703
- "steps": [],
704
- "summary": "Reserve both cross-payments for the whole-trade clawback window"
705
- }
706
- },
707
- "agentDescription": "Reach for swap when two named parties pay each other in one atomic trade and neither leg may settle alone. Both principals fund one escrow together, both cross-payments reserve together, and one dispute unwinds both. A single payer paying a single payee is instant transfer instead.",
708
- "description": "Atomic swap between buyer and seller; half-funded and half-released states do not exist",
709
- "distinctParties": true,
710
- "feeRules": [
711
- {
712
- "amountField": "buyerFee",
713
- "baseField": "buyerAmount",
714
- "bearerField": "buyerAccountId",
715
- "position": "on_top",
716
- "rule": {
717
- "currencyField": "currency",
718
- "field": "buyerFee",
719
- "kind": "exact"
720
- }
721
- },
722
- {
723
- "amountField": "sellerFee",
724
- "baseField": "sellerAmount",
725
- "bearerField": "sellerAccountId",
726
- "position": "on_top",
727
- "rule": {
728
- "currencyField": "currency",
729
- "field": "sellerFee",
730
- "kind": "exact"
731
- }
732
- }
733
- ],
734
- "fields": {
735
- "buyerAccountId": {
736
- "description": "The buyer account",
737
- "pattern": "^acct_(sandbox|live)_[a-z0-9]{8,64}$",
738
- "type": "string",
739
- "x-hyperscale-reference-filter": {
740
- "column": "role",
741
- "values": [
742
- "customer_balance"
743
- ]
744
- }
745
- },
746
- "buyerAmount": {
747
- "description": "Side A amount in SAR minor units, held against the whole trade",
748
- "pattern": "^[1-9][0-9]{0,17}$",
749
- "type": "string",
750
- "x-hyperscale-currency": "SAR"
751
- },
752
- "buyerFee": {
753
- "description": "Immutable exact buyer service fee in SAR minor units",
754
- "pattern": "^[1-9][0-9]{0,17}$",
755
- "type": "string",
756
- "x-hyperscale-currency": "SAR"
757
- },
758
- "clawbackAt": {
759
- "description": "Machine-owned end of the P7D whole-trade dispute window",
760
- "format": "hyperscale-date-time",
761
- "type": "string"
762
- },
763
- "currency": {
764
- "description": "ISO 4217 currency code",
765
- "maxLength": 3,
766
- "minLength": 3,
767
- "pattern": "^[A-Z]{3}$",
768
- "type": "string"
769
- },
770
- "platformAccountId": {
771
- "description": "The product fee collection account",
772
- "pattern": "^acct_(sandbox|live)_[a-z0-9]{8,64}$",
773
- "type": "string",
774
- "x-hyperscale-fee-collection-port": true,
775
- "x-hyperscale-reference-filter": {
776
- "column": "role",
777
- "values": [
778
- "customer_balance",
779
- "product_revenue"
780
- ]
781
- }
782
- },
783
- "sellerAccountId": {
784
- "description": "The seller account",
785
- "pattern": "^acct_(sandbox|live)_[a-z0-9]{8,64}$",
786
- "type": "string",
787
- "x-hyperscale-reference-filter": {
788
- "column": "role",
789
- "values": [
790
- "customer_balance"
791
- ]
792
- }
793
- },
794
- "sellerAmount": {
795
- "description": "Side B amount in SAR minor units, held against the whole trade",
796
- "pattern": "^[1-9][0-9]{0,17}$",
797
- "type": "string",
798
- "x-hyperscale-currency": "SAR"
799
- },
800
- "sellerFee": {
801
- "description": "Immutable exact seller service fee in SAR minor units",
802
- "pattern": "^[1-9][0-9]{0,17}$",
803
- "type": "string",
804
- "x-hyperscale-currency": "SAR"
805
- }
806
- },
807
- "id": "exchange",
808
- "idPrefix": "exch",
809
- "lifecycle": {
810
- "initial": "created",
811
- "states": [
812
- "created",
813
- "abandoned",
814
- "funded",
815
- "cancelled",
816
- "released",
817
- "settled",
818
- "clawed_back"
819
- ],
820
- "transitions": {
821
- "abandon": {
822
- "from": [
823
- "created"
824
- ],
825
- "to": "abandoned"
826
- },
827
- "cancel": {
828
- "from": [
829
- "funded"
830
- ],
831
- "to": "cancelled"
832
- },
833
- "dispute": {
834
- "from": [
835
- "released"
836
- ],
837
- "to": "clawed_back"
838
- },
839
- "fund": {
840
- "from": [
841
- "created"
842
- ],
843
- "to": "funded"
844
- },
845
- "post": {
846
- "from": [
847
- "released"
848
- ],
849
- "to": "settled"
850
- },
851
- "release": {
852
- "from": [
853
- "funded"
854
- ],
855
- "to": "released"
856
- }
857
- }
858
- },
859
- "parties": {
860
- "beneficiary": "sellerAccountId",
861
- "payer": "buyerAccountId"
862
- },
863
- "required": [
864
- "buyerAccountId",
865
- "sellerAccountId",
866
- "platformAccountId",
867
- "buyerAmount",
868
- "sellerAmount",
869
- "buyerFee",
870
- "sellerFee",
871
- "currency"
872
- ],
873
- "summary": "Two-party atomic trade between buyer and seller",
874
- "templateBinding": {
875
- "id": "swap",
876
- "parameters": {
877
- "actionBindings": false,
878
- "fixedPrefix": false,
879
- "lifecycleStateOrder": false,
880
- "parkedStates": false,
881
- "sideNames": false
882
- }
883
- },
884
- "title": "Exchange"
885
- }
886
- ],
887
- "product": "swap_example",
888
- "subjects": [],
889
- "title": "Swap example",
890
- "udl": 1,
891
- "version": 1
892
- }