@hyperscale0/hsx 2.4.0 → 3.0.0

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 +2 -400
  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 +76 -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 +77 -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 -4131
  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 -5381
  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,3 +0,0 @@
1
- # threshold_pool
2
-
3
- This example applies the `threshold_pool` standard-library module. Its sibling UDL file pins the canonical compiler output byte for byte. The company and parties are invented.
@@ -1,16 +0,0 @@
1
- program capital_pool_example "Capital pool example"
2
- import { threshold_pool } from "std/money_flows"
3
- party contributor: person
4
- party company: business
5
- settlement round = threshold_pool {
6
- contributor: contributor
7
- beneficiary: company
8
- target: targetAmount: money(SAR)
9
- commitment: commitmentAmount: money(SAR)
10
- max_contributors: 100
11
- close_by: closeBy
12
- close_policy: threshold
13
- overfund_policy: reject
14
- cancel_policy: before_close
15
- fail_policy: whole_commitment_refund
16
- }
@@ -1,680 +0,0 @@
1
- {
2
- "instruments": [
3
- {
4
- "actionOrder": [
5
- "create",
6
- "activate",
7
- "fail",
8
- "close"
9
- ],
10
- "actions": {
11
- "activate": {
12
- "due": {
13
- "field": "closeBy"
14
- },
15
- "effects": {
16
- "reads": [
17
- {
18
- "signature": "reads.requires_aggregate",
19
- "source": "requiresAggregate"
20
- }
21
- ],
22
- "schedules": [
23
- {
24
- "signature": "schedules.due",
25
- "source": "due"
26
- }
27
- ]
28
- },
29
- "moves": [],
30
- "requiresAggregate": [
31
- {
32
- "check": {
33
- "amountField": "amount",
34
- "kind": "sum_at_least",
35
- "targetField": "targetAmount"
36
- },
37
- "instrumentId": "round_commitment",
38
- "over": "children",
39
- "refField": "roundId",
40
- "statuses": [
41
- "committed"
42
- ]
43
- }
44
- ],
45
- "steps": [],
46
- "summary": "Activate when commitments meet the target"
47
- },
48
- "close": {
49
- "agentDescription": "Settle the pool once every admitted commitment is collected or was cancelled before activation. The pool must be active. No money moves here, collect already paid the beneficiary.",
50
- "effects": {
51
- "reads": [
52
- {
53
- "signature": "reads.requires_aggregate",
54
- "source": "requiresAggregate"
55
- }
56
- ]
57
- },
58
- "moves": [],
59
- "publicAction": "closeRound",
60
- "requiresAggregate": [
61
- {
62
- "check": {
63
- "kind": "all_in"
64
- },
65
- "instrumentId": "round_commitment",
66
- "over": "children",
67
- "refField": "roundId",
68
- "statuses": [
69
- "cancelled",
70
- "collected"
71
- ]
72
- }
73
- ],
74
- "steps": [],
75
- "summary": "Settle after every admitted row is collected or was cancelled before activation"
76
- },
77
- "create": {
78
- "agentDescription": "Open the pool before any commitment exists. The caller supplies the target, the currency, the beneficiary account, the close anchor, and the pinned contributor count. No money moves and the pool opens for commitments.",
79
- "moves": [],
80
- "publicAction": "createRound",
81
- "steps": [],
82
- "summary": "Open the contribution pool"
83
- },
84
- "fail": {
85
- "due": {
86
- "field": "closeBy"
87
- },
88
- "effects": {
89
- "reads": [
90
- {
91
- "signature": "reads.requires_aggregate",
92
- "source": "requiresAggregate"
93
- }
94
- ],
95
- "schedules": [
96
- {
97
- "signature": "schedules.due",
98
- "source": "due"
99
- }
100
- ]
101
- },
102
- "moves": [],
103
- "requiresAggregate": [
104
- {
105
- "check": {
106
- "amountField": "amount",
107
- "kind": "sum_below",
108
- "targetField": "targetAmount"
109
- },
110
- "instrumentId": "round_commitment",
111
- "over": "children",
112
- "refField": "roundId",
113
- "statuses": [
114
- "committed"
115
- ]
116
- }
117
- ],
118
- "steps": [],
119
- "summary": "Fail when commitments remain below target"
120
- }
121
- },
122
- "agentDescription": "Reach for threshold pool when many contributors commit toward one target and nothing is collected unless the pool reaches it by the close date. Commitments sit in escrow until the pool activates or fails. Pick weighted distribution to pay a pool out and instant transfer for a single payment.",
123
- "aggregateInvariants": [
124
- {
125
- "childField": "amount",
126
- "childInstrumentId": "round_commitment",
127
- "childRefField": "roundId",
128
- "childStatuses": [
129
- "committed"
130
- ],
131
- "parentField": "targetAmount"
132
- },
133
- {
134
- "childInstrumentId": "round_commitment",
135
- "childRefField": "roundId",
136
- "childStatuses": [
137
- "committed"
138
- ],
139
- "count": true,
140
- "parentField": "maxContributors"
141
- }
142
- ],
143
- "description": "All-or-nothing aggregate contribution threshold",
144
- "fields": {
145
- "closeBy": {
146
- "description": "Stored close anchor",
147
- "format": "hyperscale-date-time",
148
- "type": "string"
149
- },
150
- "companyAccountId": {
151
- "description": "The company account",
152
- "pattern": "^acct_(sandbox|live)_[a-z0-9]{8,64}$",
153
- "type": "string",
154
- "x-hyperscale-reference-filter": {
155
- "column": "role",
156
- "values": [
157
- "customer_balance"
158
- ]
159
- }
160
- },
161
- "currency": {
162
- "description": "ISO 4217 currency code",
163
- "maxLength": 3,
164
- "minLength": 3,
165
- "pattern": "^[A-Z]{3}$",
166
- "type": "string"
167
- },
168
- "maxContributors": {
169
- "const": 100,
170
- "description": "Exactly 100 admitted contributors",
171
- "type": "integer"
172
- },
173
- "targetAmount": {
174
- "description": "Funding target in SAR minor units",
175
- "pattern": "^[1-9][0-9]{0,17}$",
176
- "type": "string",
177
- "x-hyperscale-currency": "SAR"
178
- }
179
- },
180
- "id": "round",
181
- "idPrefix": "roun",
182
- "lifecycle": {
183
- "initial": "open",
184
- "states": [
185
- "open",
186
- "active",
187
- "failed",
188
- "settled"
189
- ],
190
- "transitions": {
191
- "activate": {
192
- "from": [
193
- "open"
194
- ],
195
- "to": "active"
196
- },
197
- "close": {
198
- "from": [
199
- "active"
200
- ],
201
- "to": "settled"
202
- },
203
- "fail": {
204
- "from": [
205
- "open"
206
- ],
207
- "to": "failed"
208
- }
209
- }
210
- },
211
- "parties": {
212
- "beneficiary": "companyAccountId"
213
- },
214
- "required": [
215
- "companyAccountId",
216
- "currency",
217
- "targetAmount",
218
- "closeBy",
219
- "maxContributors"
220
- ],
221
- "summary": "Threshold contribution pool for company",
222
- "templateBinding": {
223
- "id": "threshold_pool",
224
- "parameters": {
225
- "beneficiaryAccount": false,
226
- "contributionInstrument": false,
227
- "fundingJoin": false,
228
- "maxContributors": 100,
229
- "memo": false,
230
- "wording": false
231
- }
232
- },
233
- "title": "Round"
234
- },
235
- {
236
- "actionOrder": [
237
- "create",
238
- "cancel",
239
- "collect",
240
- "refund"
241
- ],
242
- "actions": {
243
- "cancel": {
244
- "agentDescription": "Pull one commitment back out of escrow to the contributor. The pool must still be open, so this is unavailable once the pool activates or fails. The money returns and the commitment is closed.",
245
- "effects": {
246
- "moves": [
247
- {
248
- "signature": "moves.transfer.internal",
249
- "source": "moves[0]"
250
- }
251
- ],
252
- "reads": [
253
- {
254
- "signature": "reads.requires_refs",
255
- "source": "requiresRefs"
256
- }
257
- ]
258
- },
259
- "moves": [
260
- {
261
- "bind": {
262
- "amount": {
263
- "from": "instance",
264
- "path": "fields.amount"
265
- },
266
- "currency": {
267
- "from": "const",
268
- "value": "SAR"
269
- },
270
- "destinationAccountId": {
271
- "from": "instance",
272
- "path": "fields.contributorAccountId"
273
- },
274
- "metadata.instrumentId": {
275
- "from": "const",
276
- "value": "round_commitment"
277
- },
278
- "metadata.instrumentInstanceId": {
279
- "from": "instance",
280
- "path": "instrumentInstanceId"
281
- },
282
- "metadata.phase": {
283
- "from": "const",
284
- "value": "cancel"
285
- },
286
- "productId": {
287
- "from": "instance",
288
- "path": "productId"
289
- },
290
- "sourceAccountId": {
291
- "from": "instance",
292
- "path": "refs.escrowAccountId"
293
- }
294
- },
295
- "capture": {
296
- "cancelCancelTransferId": "transferId"
297
- },
298
- "key": "cancel",
299
- "operation": "internal_transfer.create"
300
- }
301
- ],
302
- "publicAction": "cancelRoundCommitment",
303
- "requiresRefs": [
304
- {
305
- "field": "roundId",
306
- "match": {
307
- "fields.companyAccountId": "fields.companyAccountId",
308
- "fields.currency": "fields.currency"
309
- },
310
- "statuses": [
311
- "open"
312
- ]
313
- }
314
- ],
315
- "steps": [],
316
- "summary": "Cancel one commitment while the pool is open"
317
- },
318
- "collect": {
319
- "agentDescription": "Release one commitment out of escrow to the beneficiary. The pool must be active, which happens only once commitments meet the target. The money moves for good.",
320
- "effects": {
321
- "moves": [
322
- {
323
- "signature": "moves.transfer.internal",
324
- "source": "moves[0]"
325
- }
326
- ],
327
- "reads": [
328
- {
329
- "signature": "reads.requires_refs",
330
- "source": "requiresRefs"
331
- }
332
- ]
333
- },
334
- "moves": [
335
- {
336
- "bind": {
337
- "amount": {
338
- "from": "instance",
339
- "path": "fields.amount"
340
- },
341
- "currency": {
342
- "from": "const",
343
- "value": "SAR"
344
- },
345
- "destinationAccountId": {
346
- "from": "instance",
347
- "path": "fields.companyAccountId"
348
- },
349
- "metadata.instrumentId": {
350
- "from": "const",
351
- "value": "round_commitment"
352
- },
353
- "metadata.instrumentInstanceId": {
354
- "from": "instance",
355
- "path": "instrumentInstanceId"
356
- },
357
- "metadata.phase": {
358
- "from": "const",
359
- "value": "collect"
360
- },
361
- "productId": {
362
- "from": "instance",
363
- "path": "productId"
364
- },
365
- "sourceAccountId": {
366
- "from": "instance",
367
- "path": "refs.escrowAccountId"
368
- }
369
- },
370
- "capture": {
371
- "collectCollectTransferId": "transferId"
372
- },
373
- "key": "collect",
374
- "operation": "internal_transfer.create"
375
- }
376
- ],
377
- "publicAction": "collectRoundCommitment",
378
- "requiresRefs": [
379
- {
380
- "field": "roundId",
381
- "match": {
382
- "fields.companyAccountId": "fields.companyAccountId",
383
- "fields.currency": "fields.currency"
384
- },
385
- "statuses": [
386
- "active"
387
- ]
388
- }
389
- ],
390
- "steps": [],
391
- "summary": "Collect one successful commitment whole"
392
- },
393
- "create": {
394
- "agentDescription": "Commit one whole amount into the pool escrow. The pool must still be open, the currency and beneficiary account must match it, and the committed total plus this amount must stay within the target. The money leaves the contributor now.",
395
- "effects": {
396
- "moves": [
397
- {
398
- "signature": "moves.collection.pay_in",
399
- "source": "moves[0]"
400
- }
401
- ],
402
- "reads": [
403
- {
404
- "signature": "reads.requires_refs",
405
- "source": "requiresRefs"
406
- }
407
- ]
408
- },
409
- "moves": [
410
- {
411
- "bind": {
412
- "amount": {
413
- "from": "instance",
414
- "path": "fields.amount"
415
- },
416
- "currency": {
417
- "from": "const",
418
- "value": "SAR"
419
- },
420
- "destinationAccountId": {
421
- "from": "instance",
422
- "path": "refs.escrowAccountId"
423
- },
424
- "metadata.instrumentId": {
425
- "from": "const",
426
- "value": "round_commitment"
427
- },
428
- "metadata.instrumentInstanceId": {
429
- "from": "instance",
430
- "path": "instrumentInstanceId"
431
- },
432
- "metadata.phase": {
433
- "from": "const",
434
- "value": "create"
435
- },
436
- "productId": {
437
- "from": "instance",
438
- "path": "productId"
439
- },
440
- "sourceAccountId": {
441
- "from": "instance",
442
- "path": "fields.contributorAccountId"
443
- }
444
- },
445
- "capture": {
446
- "createCommitTransferId": "transferId"
447
- },
448
- "key": "commit",
449
- "operation": "internal_transfer.create"
450
- }
451
- ],
452
- "publicAction": "createRoundCommitment",
453
- "requiresExposure": [
454
- {
455
- "amountField": "amount",
456
- "anchorField": "roundId",
457
- "capField": "targetAmount",
458
- "capOnAnchor": true,
459
- "childInstrumentId": "round_commitment",
460
- "statuses": [
461
- "committed"
462
- ]
463
- }
464
- ],
465
- "requiresRefs": [
466
- {
467
- "bind": {
468
- "companyAccountId": "fields.companyAccountId",
469
- "currency": "fields.currency"
470
- },
471
- "field": "roundId",
472
- "statuses": [
473
- "open"
474
- ]
475
- }
476
- ],
477
- "steps": [
478
- {
479
- "bind": {
480
- "currency": {
481
- "from": "const",
482
- "value": "SAR"
483
- },
484
- "owner.id": {
485
- "from": "instance",
486
- "path": "productId"
487
- },
488
- "owner.type": {
489
- "from": "const",
490
- "value": "product"
491
- },
492
- "productId": {
493
- "from": "instance",
494
- "path": "productId"
495
- },
496
- "role": {
497
- "from": "const",
498
- "value": "product_escrow"
499
- }
500
- },
501
- "capture": {
502
- "escrowAccountId": "accountId"
503
- },
504
- "operation": "account.escrow.provision"
505
- }
506
- ],
507
- "summary": "Store one whole commitment without exceeding the pool target"
508
- },
509
- "refund": {
510
- "agentDescription": "Return one commitment out of escrow to the contributor after the pool failed to reach its target. The pool must be in failed. The money returns and the commitment is closed.",
511
- "effects": {
512
- "moves": [
513
- {
514
- "signature": "moves.transfer.internal",
515
- "source": "moves[0]"
516
- }
517
- ],
518
- "reads": [
519
- {
520
- "signature": "reads.requires_refs",
521
- "source": "requiresRefs"
522
- }
523
- ]
524
- },
525
- "moves": [
526
- {
527
- "bind": {
528
- "amount": {
529
- "from": "instance",
530
- "path": "fields.amount"
531
- },
532
- "currency": {
533
- "from": "const",
534
- "value": "SAR"
535
- },
536
- "destinationAccountId": {
537
- "from": "instance",
538
- "path": "fields.contributorAccountId"
539
- },
540
- "metadata.instrumentId": {
541
- "from": "const",
542
- "value": "round_commitment"
543
- },
544
- "metadata.instrumentInstanceId": {
545
- "from": "instance",
546
- "path": "instrumentInstanceId"
547
- },
548
- "metadata.phase": {
549
- "from": "const",
550
- "value": "refund"
551
- },
552
- "productId": {
553
- "from": "instance",
554
- "path": "productId"
555
- },
556
- "sourceAccountId": {
557
- "from": "instance",
558
- "path": "refs.escrowAccountId"
559
- }
560
- },
561
- "capture": {
562
- "refundRefundTransferId": "transferId"
563
- },
564
- "key": "refund",
565
- "operation": "internal_transfer.create"
566
- }
567
- ],
568
- "publicAction": "refundRoundCommitment",
569
- "requiresRefs": [
570
- {
571
- "field": "roundId",
572
- "match": {
573
- "fields.companyAccountId": "fields.companyAccountId",
574
- "fields.currency": "fields.currency"
575
- },
576
- "statuses": [
577
- "failed"
578
- ]
579
- }
580
- ],
581
- "steps": [],
582
- "summary": "Refund one failed-pool commitment whole"
583
- }
584
- },
585
- "agentDescription": "Reach for this child row to record one whole commitment into a round. Each contributor commits once, the money sits in the product escrow, and whether it is collected or refunded depends on the pool reaching its target.",
586
- "description": "One whole commitment linked to round",
587
- "fields": {
588
- "amount": {
589
- "description": "One whole commitment amount",
590
- "pattern": "^[1-9][0-9]{0,17}$",
591
- "type": "string",
592
- "x-hyperscale-currency": "SAR"
593
- },
594
- "companyAccountId": {
595
- "description": "The company account",
596
- "pattern": "^acct_(sandbox|live)_[a-z0-9]{8,64}$",
597
- "type": "string",
598
- "x-hyperscale-reference-filter": {
599
- "column": "role",
600
- "values": [
601
- "customer_balance"
602
- ]
603
- }
604
- },
605
- "contributorAccountId": {
606
- "description": "The contributor account",
607
- "pattern": "^acct_(sandbox|live)_[a-z0-9]{8,64}$",
608
- "type": "string",
609
- "x-hyperscale-reference-filter": {
610
- "column": "role",
611
- "values": [
612
- "customer_balance"
613
- ]
614
- }
615
- },
616
- "currency": {
617
- "description": "ISO 4217 currency code",
618
- "maxLength": 3,
619
- "minLength": 3,
620
- "pattern": "^[A-Z]{3}$",
621
- "type": "string"
622
- },
623
- "roundId": {
624
- "description": "The exact round",
625
- "pattern": "^roun_(sandbox|live)_[a-z0-9]{8,64}$",
626
- "type": "string"
627
- }
628
- },
629
- "id": "round_commitment",
630
- "idPrefix": "zzaa",
631
- "lifecycle": {
632
- "initial": "committed",
633
- "states": [
634
- "committed",
635
- "cancelled",
636
- "collected",
637
- "refunded"
638
- ],
639
- "transitions": {
640
- "cancel": {
641
- "from": [
642
- "committed"
643
- ],
644
- "to": "cancelled"
645
- },
646
- "collect": {
647
- "from": [
648
- "committed"
649
- ],
650
- "to": "collected"
651
- },
652
- "refund": {
653
- "from": [
654
- "committed"
655
- ],
656
- "to": "refunded"
657
- }
658
- }
659
- },
660
- "parties": {
661
- "beneficiary": "companyAccountId",
662
- "payer": "contributorAccountId"
663
- },
664
- "required": [
665
- "companyAccountId",
666
- "contributorAccountId",
667
- "amount",
668
- "currency",
669
- "roundId"
670
- ],
671
- "summary": "Whole commitment to round",
672
- "title": "Round Commitment"
673
- }
674
- ],
675
- "product": "capital_pool_example",
676
- "subjects": [],
677
- "title": "Capital pool example",
678
- "udl": 1,
679
- "version": 1
680
- }