@hyperscale0/hsx 1.0.0-alpha.6 → 1.0.0-rc.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.
- package/CHANGELOG.md +48 -10
- package/LICENSING.md +3 -3
- package/README.md +37 -149
- package/TRADEMARKS.md +4 -4
- package/dist/src/ast.d.ts +129 -10
- package/dist/src/ast.d.ts.map +1 -1
- package/dist/src/cli.d.ts +2 -1
- package/dist/src/cli.d.ts.map +1 -1
- package/dist/src/cli.js +148 -12
- package/dist/src/cli.js.map +1 -1
- package/dist/src/compile.d.ts +41 -4
- package/dist/src/compile.d.ts.map +1 -1
- package/dist/src/compile.js +82 -15
- package/dist/src/compile.js.map +1 -1
- package/dist/src/cost.d.ts +78 -0
- package/dist/src/cost.d.ts.map +1 -0
- package/dist/src/cost.js +369 -0
- package/dist/src/cost.js.map +1 -0
- package/dist/src/diagnostics.d.ts +11 -0
- package/dist/src/diagnostics.d.ts.map +1 -0
- package/dist/src/diagnostics.js +420 -0
- package/dist/src/diagnostics.js.map +1 -0
- package/dist/src/emit.d.ts +35 -0
- package/dist/src/emit.d.ts.map +1 -0
- package/dist/src/emit.js +359 -0
- package/dist/src/emit.js.map +1 -0
- package/dist/src/entry-overrides.d.ts +17 -3
- package/dist/src/entry-overrides.d.ts.map +1 -1
- package/dist/src/entry-overrides.js +180 -35
- package/dist/src/entry-overrides.js.map +1 -1
- package/dist/src/format.d.ts +10 -0
- package/dist/src/format.d.ts.map +1 -0
- package/dist/src/format.js +183 -0
- package/dist/src/format.js.map +1 -0
- package/dist/src/index.d.ts +10 -4
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/index.js +8 -3
- package/dist/src/index.js.map +1 -1
- package/dist/src/ir.d.ts +66 -0
- package/dist/src/ir.d.ts.map +1 -0
- package/dist/src/ir.js +15 -0
- package/dist/src/ir.js.map +1 -0
- package/dist/src/lex.d.ts +9 -1
- package/dist/src/lex.d.ts.map +1 -1
- package/dist/src/lex.js +50 -4
- package/dist/src/lex.js.map +1 -1
- package/dist/src/limits.d.ts +2 -3
- package/dist/src/limits.d.ts.map +1 -1
- package/dist/src/limits.js +2 -3
- package/dist/src/limits.js.map +1 -1
- package/dist/src/modules.d.ts +36 -0
- package/dist/src/modules.d.ts.map +1 -0
- package/dist/src/modules.js +372 -0
- package/dist/src/modules.js.map +1 -0
- package/dist/src/parse.d.ts.map +1 -1
- package/dist/src/parse.js +590 -17
- package/dist/src/parse.js.map +1 -1
- package/dist/src/typecheck.d.ts +8 -0
- package/dist/src/typecheck.d.ts.map +1 -0
- package/dist/src/typecheck.js +2958 -0
- package/dist/src/typecheck.js.map +1 -0
- package/dist/src/version.d.ts +4 -15
- package/dist/src/version.d.ts.map +1 -1
- package/dist/src/version.js +4 -15
- package/dist/src/version.js.map +1 -1
- package/docs/README.md +23 -0
- package/docs/guide/01-first-program.md +24 -0
- package/docs/guide/02-money.md +25 -0
- package/docs/guide/03-instruments.md +22 -0
- package/docs/guide/04-lifecycles.md +25 -0
- package/docs/guide/05-fees-and-splits.md +45 -0
- package/docs/guide/06-schedules.md +22 -0
- package/docs/guide/07-composition.md +46 -0
- package/docs/guide/08-writing-a-module.md +26 -0
- package/docs/guide/09-cost.md +24 -0
- package/docs/guide/10-diagnostics.md +27 -0
- package/docs/llms-full.txt +1738 -0
- package/docs/llms.txt +45 -0
- package/docs/reference/cli.md +33 -0
- package/docs/reference/diagnostics.md +619 -0
- package/docs/reference/grammar.md +39 -0
- package/docs/reference/std/advance.md +35 -0
- package/docs/reference/std/cancellable_booking.md +35 -0
- package/docs/reference/std/captured_payment.md +43 -0
- package/docs/reference/std/conditional_disbursement.md +33 -0
- package/docs/reference/std/credit_facility.md +35 -0
- package/docs/reference/std/held_payment.md +64 -0
- package/docs/reference/std/instant_transfer.md +30 -0
- package/docs/reference/std/metered.md +27 -0
- package/docs/reference/std/pooled_split.md +26 -0
- package/docs/reference/std/premium_forward.md +39 -0
- package/docs/reference/std/reconciled_payout.md +33 -0
- package/docs/reference/std/recurring_collection.md +25 -0
- package/docs/reference/std/rotating_pool.md +42 -0
- package/docs/reference/std/scheduled.md +51 -0
- package/docs/reference/std/security_deposit.md +46 -0
- package/docs/reference/std/settlement_batch.md +42 -0
- package/docs/reference/std/swap.md +46 -0
- package/docs/reference/std/threshold_pool.md +47 -0
- package/docs/reference/std/weighted_distribution.md +39 -0
- package/docs/reference/types.md +20 -0
- package/docs/reference/udl-output.md +14 -0
- package/docs/sessions/2026-09-02-two-instruments.hsx +21 -0
- package/docs/sessions/2026-09-02-two-instruments.md +41 -0
- package/examples/01-first-program/README.md +45 -0
- package/examples/01-first-program/tip-jar.hsx +17 -0
- package/examples/02-imports-and-archetypes/README.md +99 -0
- package/examples/02-imports-and-archetypes/photo-booth.hsx +37 -0
- package/examples/03-diagnostics/README.md +68 -0
- package/examples/03-diagnostics/corner-shop-fixed.hsx +22 -0
- package/examples/03-diagnostics/corner-shop.hsx +19 -0
- package/examples/04-complete-product/README.md +87 -0
- package/examples/04-complete-product/study-hall.hsx +67 -0
- package/examples/05-watch-club/README.md +9 -0
- package/examples/05-watch-club/watch-club.hsx +124 -0
- package/examples/README.md +18 -0
- package/examples/advance/README.md +3 -0
- package/examples/advance/advance.hsx +13 -0
- package/examples/advance/advance.udl +339 -0
- package/examples/cancellable_booking/README.md +3 -0
- package/examples/cancellable_booking/cancellable_booking.hsx +14 -0
- package/examples/cancellable_booking/cancellable_booking.udl +391 -0
- package/examples/captured_payment/README.md +3 -0
- package/examples/captured_payment/captured_payment.hsx +21 -0
- package/examples/captured_payment/captured_payment.udl +677 -0
- package/examples/conditional_disbursement/README.md +3 -0
- package/examples/conditional_disbursement/conditional_disbursement.hsx +17 -0
- package/examples/conditional_disbursement/conditional_disbursement.udl +412 -0
- package/examples/cost-table.json +386 -0
- package/examples/credit_facility/README.md +3 -0
- package/examples/credit_facility/credit_facility.hsx +27 -0
- package/examples/credit_facility/credit_facility.udl +1373 -0
- package/examples/held_payment/README.md +3 -0
- package/examples/held_payment/held_payment.hsx +13 -0
- package/examples/held_payment/held_payment.udl +507 -0
- package/examples/instant_transfer/README.md +3 -0
- package/examples/instant_transfer/instant_transfer.hsx +16 -0
- package/examples/instant_transfer/instant_transfer.udl +364 -0
- package/examples/metered/README.md +3 -0
- package/examples/metered/metered.hsx +13 -0
- package/examples/metered/metered.udl +247 -0
- package/examples/pooled_split/README.md +3 -0
- package/examples/pooled_split/pooled_split.hsx +15 -0
- package/examples/pooled_split/pooled_split.udl +425 -0
- package/examples/premium_forward/README.md +3 -0
- package/examples/premium_forward/premium_forward.hsx +19 -0
- package/examples/premium_forward/premium_forward.udl +594 -0
- package/examples/reconciled_payout/README.md +3 -0
- package/examples/reconciled_payout/reconciled_payout.hsx +13 -0
- package/examples/reconciled_payout/reconciled_payout.udl +303 -0
- package/examples/recurring_collection/README.md +3 -0
- package/examples/recurring_collection/recurring_collection.hsx +21 -0
- package/examples/recurring_collection/recurring_collection.udl +1130 -0
- package/examples/rotating_pool/README.md +3 -0
- package/examples/rotating_pool/rotating_pool.hsx +18 -0
- package/examples/rotating_pool/rotating_pool.udl +4352 -0
- package/examples/scheduled/README.md +3 -0
- package/examples/scheduled/scheduled.hsx +12 -0
- package/examples/scheduled/scheduled.udl +335 -0
- package/examples/security_deposit/README.md +3 -0
- package/examples/security_deposit/security_deposit.hsx +21 -0
- package/examples/security_deposit/security_deposit.udl +293 -0
- package/examples/settlement_batch/README.md +3 -0
- package/examples/settlement_batch/settlement_batch.hsx +19 -0
- package/examples/settlement_batch/settlement_batch.udl +753 -0
- package/examples/swap/README.md +3 -0
- package/examples/swap/swap.hsx +19 -0
- package/examples/swap/swap.udl +876 -0
- package/examples/threshold_pool/README.md +3 -0
- package/examples/threshold_pool/threshold_pool.hsx +16 -0
- package/examples/threshold_pool/threshold_pool.udl +667 -0
- package/examples/weighted_distribution/README.md +3 -0
- package/examples/weighted_distribution/weighted_distribution.hsx +20 -0
- package/examples/weighted_distribution/weighted_distribution.udl +337 -0
- package/package.json +19 -6
- package/skills/hsx/SKILL.md +483 -0
- package/src/ast.ts +163 -9
- package/src/cli.ts +164 -12
- package/src/compile.ts +160 -20
- package/src/cost.ts +579 -0
- package/src/diagnostics.ts +442 -0
- package/src/emit.ts +447 -0
- package/src/entry-overrides.ts +263 -48
- package/src/format.ts +261 -0
- package/src/index.ts +32 -4
- package/src/ir.ts +99 -0
- package/src/lex.ts +59 -4
- package/src/limits.ts +2 -3
- package/src/modules.ts +444 -0
- package/src/parse.ts +655 -21
- package/src/typecheck.ts +3876 -0
- package/src/version.ts +4 -16
- package/std/SEMANTICS.md +130 -0
- package/std/settlements/advance.hsx +177 -0
- package/std/settlements/cancellable_booking.hsx +87 -0
- package/std/settlements/captured_payment.hsx +144 -0
- package/std/settlements/conditional_disbursement.hsx +185 -0
- package/std/settlements/credit_facility.hsx +167 -0
- package/std/settlements/held_payment.hsx +578 -0
- package/std/settlements/index.hsx +3 -0
- package/std/settlements/instant_transfer.hsx +190 -0
- package/std/settlements/metered.hsx +67 -0
- package/std/settlements/pooled_split.hsx +68 -0
- package/std/settlements/premium_forward.hsx +257 -0
- package/std/settlements/reconciled_payout.hsx +77 -0
- package/std/settlements/recurring_collection.hsx +27 -0
- package/std/settlements/rotating_pool.hsx +252 -0
- package/std/settlements/scheduled.hsx +641 -0
- package/std/settlements/security_deposit.hsx +166 -0
- package/std/settlements/settlement_batch.hsx +122 -0
- package/std/settlements/swap.hsx +1114 -0
- package/std/settlements/threshold_pool.hsx +221 -0
- package/std/settlements/weighted_distribution.hsx +141 -0
- package/dist/src/archetypes.d.ts +0 -17
- package/dist/src/archetypes.d.ts.map +0 -1
- package/dist/src/archetypes.js +0 -327
- package/dist/src/archetypes.js.map +0 -1
- package/dist/src/check.d.ts +0 -12
- package/dist/src/check.d.ts.map +0 -1
- package/dist/src/check.js +0 -1910
- package/dist/src/check.js.map +0 -1
- package/dist/src/lower.d.ts +0 -146
- package/dist/src/lower.d.ts.map +0 -1
- package/dist/src/lower.js +0 -4570
- package/dist/src/lower.js.map +0 -1
- package/dist/src/model.d.ts +0 -467
- package/dist/src/model.d.ts.map +0 -1
- package/dist/src/model.js +0 -15
- package/dist/src/model.js.map +0 -1
- package/spec/hsx-ir.schema.json +0 -920
- package/src/archetypes.ts +0 -340
- package/src/check.ts +0 -2938
- package/src/lower.ts +0 -5416
- package/src/model.ts +0 -519
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
program capital_pool_example "Capital pool example"
|
|
2
|
+
import { threshold_pool } from "std/settlements"
|
|
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
|
+
}
|
|
@@ -0,0 +1,667 @@
|
|
|
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
|
+
}
|
|
178
|
+
},
|
|
179
|
+
"id": "round",
|
|
180
|
+
"idPrefix": "roun",
|
|
181
|
+
"lifecycle": {
|
|
182
|
+
"initial": "open",
|
|
183
|
+
"states": [
|
|
184
|
+
"open",
|
|
185
|
+
"active",
|
|
186
|
+
"failed",
|
|
187
|
+
"settled"
|
|
188
|
+
],
|
|
189
|
+
"transitions": {
|
|
190
|
+
"activate": {
|
|
191
|
+
"from": [
|
|
192
|
+
"open"
|
|
193
|
+
],
|
|
194
|
+
"to": "active"
|
|
195
|
+
},
|
|
196
|
+
"close": {
|
|
197
|
+
"from": [
|
|
198
|
+
"active"
|
|
199
|
+
],
|
|
200
|
+
"to": "settled"
|
|
201
|
+
},
|
|
202
|
+
"fail": {
|
|
203
|
+
"from": [
|
|
204
|
+
"open"
|
|
205
|
+
],
|
|
206
|
+
"to": "failed"
|
|
207
|
+
}
|
|
208
|
+
}
|
|
209
|
+
},
|
|
210
|
+
"parties": {
|
|
211
|
+
"beneficiary": "companyAccountId"
|
|
212
|
+
},
|
|
213
|
+
"required": [
|
|
214
|
+
"companyAccountId",
|
|
215
|
+
"currency",
|
|
216
|
+
"targetAmount",
|
|
217
|
+
"closeBy",
|
|
218
|
+
"maxContributors"
|
|
219
|
+
],
|
|
220
|
+
"summary": "Threshold contribution pool for company",
|
|
221
|
+
"title": "Round"
|
|
222
|
+
},
|
|
223
|
+
{
|
|
224
|
+
"actionOrder": [
|
|
225
|
+
"create",
|
|
226
|
+
"cancel",
|
|
227
|
+
"collect",
|
|
228
|
+
"refund"
|
|
229
|
+
],
|
|
230
|
+
"actions": {
|
|
231
|
+
"cancel": {
|
|
232
|
+
"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.",
|
|
233
|
+
"effects": {
|
|
234
|
+
"moves": [
|
|
235
|
+
{
|
|
236
|
+
"signature": "moves.transfer.internal",
|
|
237
|
+
"source": "moves[0]"
|
|
238
|
+
}
|
|
239
|
+
],
|
|
240
|
+
"reads": [
|
|
241
|
+
{
|
|
242
|
+
"signature": "reads.requires_refs",
|
|
243
|
+
"source": "requiresRefs"
|
|
244
|
+
}
|
|
245
|
+
]
|
|
246
|
+
},
|
|
247
|
+
"moves": [
|
|
248
|
+
{
|
|
249
|
+
"bind": {
|
|
250
|
+
"amount": {
|
|
251
|
+
"from": "instance",
|
|
252
|
+
"path": "fields.amount"
|
|
253
|
+
},
|
|
254
|
+
"currency": {
|
|
255
|
+
"from": "instance",
|
|
256
|
+
"path": "fields.currency"
|
|
257
|
+
},
|
|
258
|
+
"destinationAccountId": {
|
|
259
|
+
"from": "instance",
|
|
260
|
+
"path": "fields.contributorAccountId"
|
|
261
|
+
},
|
|
262
|
+
"metadata.instrumentId": {
|
|
263
|
+
"from": "const",
|
|
264
|
+
"value": "round_commitment"
|
|
265
|
+
},
|
|
266
|
+
"metadata.instrumentInstanceId": {
|
|
267
|
+
"from": "instance",
|
|
268
|
+
"path": "instrumentInstanceId"
|
|
269
|
+
},
|
|
270
|
+
"metadata.phase": {
|
|
271
|
+
"from": "const",
|
|
272
|
+
"value": "cancel"
|
|
273
|
+
},
|
|
274
|
+
"productId": {
|
|
275
|
+
"from": "instance",
|
|
276
|
+
"path": "productId"
|
|
277
|
+
},
|
|
278
|
+
"sourceAccountId": {
|
|
279
|
+
"from": "instance",
|
|
280
|
+
"path": "refs.escrowAccountId"
|
|
281
|
+
}
|
|
282
|
+
},
|
|
283
|
+
"capture": {
|
|
284
|
+
"cancelCancelTransferId": "transferId"
|
|
285
|
+
},
|
|
286
|
+
"key": "cancel",
|
|
287
|
+
"operation": "internal_transfer.create"
|
|
288
|
+
}
|
|
289
|
+
],
|
|
290
|
+
"publicAction": "cancelRoundCommitment",
|
|
291
|
+
"requiresRefs": [
|
|
292
|
+
{
|
|
293
|
+
"field": "roundId",
|
|
294
|
+
"match": {
|
|
295
|
+
"fields.companyAccountId": "fields.companyAccountId",
|
|
296
|
+
"fields.currency": "fields.currency"
|
|
297
|
+
},
|
|
298
|
+
"statuses": [
|
|
299
|
+
"open"
|
|
300
|
+
]
|
|
301
|
+
}
|
|
302
|
+
],
|
|
303
|
+
"steps": [],
|
|
304
|
+
"summary": "Cancel one commitment while the pool is open"
|
|
305
|
+
},
|
|
306
|
+
"collect": {
|
|
307
|
+
"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.",
|
|
308
|
+
"effects": {
|
|
309
|
+
"moves": [
|
|
310
|
+
{
|
|
311
|
+
"signature": "moves.transfer.internal",
|
|
312
|
+
"source": "moves[0]"
|
|
313
|
+
}
|
|
314
|
+
],
|
|
315
|
+
"reads": [
|
|
316
|
+
{
|
|
317
|
+
"signature": "reads.requires_refs",
|
|
318
|
+
"source": "requiresRefs"
|
|
319
|
+
}
|
|
320
|
+
]
|
|
321
|
+
},
|
|
322
|
+
"moves": [
|
|
323
|
+
{
|
|
324
|
+
"bind": {
|
|
325
|
+
"amount": {
|
|
326
|
+
"from": "instance",
|
|
327
|
+
"path": "fields.amount"
|
|
328
|
+
},
|
|
329
|
+
"currency": {
|
|
330
|
+
"from": "instance",
|
|
331
|
+
"path": "fields.currency"
|
|
332
|
+
},
|
|
333
|
+
"destinationAccountId": {
|
|
334
|
+
"from": "instance",
|
|
335
|
+
"path": "fields.companyAccountId"
|
|
336
|
+
},
|
|
337
|
+
"metadata.instrumentId": {
|
|
338
|
+
"from": "const",
|
|
339
|
+
"value": "round_commitment"
|
|
340
|
+
},
|
|
341
|
+
"metadata.instrumentInstanceId": {
|
|
342
|
+
"from": "instance",
|
|
343
|
+
"path": "instrumentInstanceId"
|
|
344
|
+
},
|
|
345
|
+
"metadata.phase": {
|
|
346
|
+
"from": "const",
|
|
347
|
+
"value": "collect"
|
|
348
|
+
},
|
|
349
|
+
"productId": {
|
|
350
|
+
"from": "instance",
|
|
351
|
+
"path": "productId"
|
|
352
|
+
},
|
|
353
|
+
"sourceAccountId": {
|
|
354
|
+
"from": "instance",
|
|
355
|
+
"path": "refs.escrowAccountId"
|
|
356
|
+
}
|
|
357
|
+
},
|
|
358
|
+
"capture": {
|
|
359
|
+
"collectCollectTransferId": "transferId"
|
|
360
|
+
},
|
|
361
|
+
"key": "collect",
|
|
362
|
+
"operation": "internal_transfer.create"
|
|
363
|
+
}
|
|
364
|
+
],
|
|
365
|
+
"publicAction": "collectRoundCommitment",
|
|
366
|
+
"requiresRefs": [
|
|
367
|
+
{
|
|
368
|
+
"field": "roundId",
|
|
369
|
+
"match": {
|
|
370
|
+
"fields.companyAccountId": "fields.companyAccountId",
|
|
371
|
+
"fields.currency": "fields.currency"
|
|
372
|
+
},
|
|
373
|
+
"statuses": [
|
|
374
|
+
"active"
|
|
375
|
+
]
|
|
376
|
+
}
|
|
377
|
+
],
|
|
378
|
+
"steps": [],
|
|
379
|
+
"summary": "Collect one successful commitment whole"
|
|
380
|
+
},
|
|
381
|
+
"create": {
|
|
382
|
+
"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.",
|
|
383
|
+
"effects": {
|
|
384
|
+
"moves": [
|
|
385
|
+
{
|
|
386
|
+
"signature": "moves.collection.pay_in",
|
|
387
|
+
"source": "moves[0]"
|
|
388
|
+
}
|
|
389
|
+
],
|
|
390
|
+
"reads": [
|
|
391
|
+
{
|
|
392
|
+
"signature": "reads.requires_refs",
|
|
393
|
+
"source": "requiresRefs"
|
|
394
|
+
}
|
|
395
|
+
]
|
|
396
|
+
},
|
|
397
|
+
"moves": [
|
|
398
|
+
{
|
|
399
|
+
"bind": {
|
|
400
|
+
"amount": {
|
|
401
|
+
"from": "instance",
|
|
402
|
+
"path": "fields.amount"
|
|
403
|
+
},
|
|
404
|
+
"currency": {
|
|
405
|
+
"from": "instance",
|
|
406
|
+
"path": "fields.currency"
|
|
407
|
+
},
|
|
408
|
+
"destinationAccountId": {
|
|
409
|
+
"from": "instance",
|
|
410
|
+
"path": "refs.escrowAccountId"
|
|
411
|
+
},
|
|
412
|
+
"metadata.instrumentId": {
|
|
413
|
+
"from": "const",
|
|
414
|
+
"value": "round_commitment"
|
|
415
|
+
},
|
|
416
|
+
"metadata.instrumentInstanceId": {
|
|
417
|
+
"from": "instance",
|
|
418
|
+
"path": "instrumentInstanceId"
|
|
419
|
+
},
|
|
420
|
+
"metadata.phase": {
|
|
421
|
+
"from": "const",
|
|
422
|
+
"value": "create"
|
|
423
|
+
},
|
|
424
|
+
"productId": {
|
|
425
|
+
"from": "instance",
|
|
426
|
+
"path": "productId"
|
|
427
|
+
},
|
|
428
|
+
"sourceAccountId": {
|
|
429
|
+
"from": "instance",
|
|
430
|
+
"path": "fields.contributorAccountId"
|
|
431
|
+
}
|
|
432
|
+
},
|
|
433
|
+
"capture": {
|
|
434
|
+
"createCommitTransferId": "transferId"
|
|
435
|
+
},
|
|
436
|
+
"key": "commit",
|
|
437
|
+
"operation": "internal_transfer.create"
|
|
438
|
+
}
|
|
439
|
+
],
|
|
440
|
+
"publicAction": "createRoundCommitment",
|
|
441
|
+
"requiresExposure": [
|
|
442
|
+
{
|
|
443
|
+
"amountField": "amount",
|
|
444
|
+
"anchorField": "roundId",
|
|
445
|
+
"capField": "targetAmount",
|
|
446
|
+
"capOnAnchor": true,
|
|
447
|
+
"childInstrumentId": "round_commitment",
|
|
448
|
+
"statuses": [
|
|
449
|
+
"committed"
|
|
450
|
+
]
|
|
451
|
+
}
|
|
452
|
+
],
|
|
453
|
+
"requiresRefs": [
|
|
454
|
+
{
|
|
455
|
+
"bind": {
|
|
456
|
+
"companyAccountId": "fields.companyAccountId",
|
|
457
|
+
"currency": "fields.currency"
|
|
458
|
+
},
|
|
459
|
+
"field": "roundId",
|
|
460
|
+
"statuses": [
|
|
461
|
+
"open"
|
|
462
|
+
]
|
|
463
|
+
}
|
|
464
|
+
],
|
|
465
|
+
"steps": [
|
|
466
|
+
{
|
|
467
|
+
"bind": {
|
|
468
|
+
"currency": {
|
|
469
|
+
"from": "instance",
|
|
470
|
+
"path": "fields.currency"
|
|
471
|
+
},
|
|
472
|
+
"owner.id": {
|
|
473
|
+
"from": "instance",
|
|
474
|
+
"path": "productId"
|
|
475
|
+
},
|
|
476
|
+
"owner.type": {
|
|
477
|
+
"from": "const",
|
|
478
|
+
"value": "product"
|
|
479
|
+
},
|
|
480
|
+
"productId": {
|
|
481
|
+
"from": "instance",
|
|
482
|
+
"path": "productId"
|
|
483
|
+
},
|
|
484
|
+
"role": {
|
|
485
|
+
"from": "const",
|
|
486
|
+
"value": "product_escrow"
|
|
487
|
+
}
|
|
488
|
+
},
|
|
489
|
+
"capture": {
|
|
490
|
+
"escrowAccountId": "accountId"
|
|
491
|
+
},
|
|
492
|
+
"operation": "account.escrow.provision"
|
|
493
|
+
}
|
|
494
|
+
],
|
|
495
|
+
"summary": "Store one whole commitment without exceeding the pool target"
|
|
496
|
+
},
|
|
497
|
+
"refund": {
|
|
498
|
+
"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.",
|
|
499
|
+
"effects": {
|
|
500
|
+
"moves": [
|
|
501
|
+
{
|
|
502
|
+
"signature": "moves.transfer.internal",
|
|
503
|
+
"source": "moves[0]"
|
|
504
|
+
}
|
|
505
|
+
],
|
|
506
|
+
"reads": [
|
|
507
|
+
{
|
|
508
|
+
"signature": "reads.requires_refs",
|
|
509
|
+
"source": "requiresRefs"
|
|
510
|
+
}
|
|
511
|
+
]
|
|
512
|
+
},
|
|
513
|
+
"moves": [
|
|
514
|
+
{
|
|
515
|
+
"bind": {
|
|
516
|
+
"amount": {
|
|
517
|
+
"from": "instance",
|
|
518
|
+
"path": "fields.amount"
|
|
519
|
+
},
|
|
520
|
+
"currency": {
|
|
521
|
+
"from": "instance",
|
|
522
|
+
"path": "fields.currency"
|
|
523
|
+
},
|
|
524
|
+
"destinationAccountId": {
|
|
525
|
+
"from": "instance",
|
|
526
|
+
"path": "fields.contributorAccountId"
|
|
527
|
+
},
|
|
528
|
+
"metadata.instrumentId": {
|
|
529
|
+
"from": "const",
|
|
530
|
+
"value": "round_commitment"
|
|
531
|
+
},
|
|
532
|
+
"metadata.instrumentInstanceId": {
|
|
533
|
+
"from": "instance",
|
|
534
|
+
"path": "instrumentInstanceId"
|
|
535
|
+
},
|
|
536
|
+
"metadata.phase": {
|
|
537
|
+
"from": "const",
|
|
538
|
+
"value": "refund"
|
|
539
|
+
},
|
|
540
|
+
"productId": {
|
|
541
|
+
"from": "instance",
|
|
542
|
+
"path": "productId"
|
|
543
|
+
},
|
|
544
|
+
"sourceAccountId": {
|
|
545
|
+
"from": "instance",
|
|
546
|
+
"path": "refs.escrowAccountId"
|
|
547
|
+
}
|
|
548
|
+
},
|
|
549
|
+
"capture": {
|
|
550
|
+
"refundRefundTransferId": "transferId"
|
|
551
|
+
},
|
|
552
|
+
"key": "refund",
|
|
553
|
+
"operation": "internal_transfer.create"
|
|
554
|
+
}
|
|
555
|
+
],
|
|
556
|
+
"publicAction": "refundRoundCommitment",
|
|
557
|
+
"requiresRefs": [
|
|
558
|
+
{
|
|
559
|
+
"field": "roundId",
|
|
560
|
+
"match": {
|
|
561
|
+
"fields.companyAccountId": "fields.companyAccountId",
|
|
562
|
+
"fields.currency": "fields.currency"
|
|
563
|
+
},
|
|
564
|
+
"statuses": [
|
|
565
|
+
"failed"
|
|
566
|
+
]
|
|
567
|
+
}
|
|
568
|
+
],
|
|
569
|
+
"steps": [],
|
|
570
|
+
"summary": "Refund one failed-pool commitment whole"
|
|
571
|
+
}
|
|
572
|
+
},
|
|
573
|
+
"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.",
|
|
574
|
+
"description": "One whole commitment linked to round",
|
|
575
|
+
"fields": {
|
|
576
|
+
"amount": {
|
|
577
|
+
"description": "One whole commitment amount",
|
|
578
|
+
"pattern": "^[1-9][0-9]{0,17}$",
|
|
579
|
+
"type": "string"
|
|
580
|
+
},
|
|
581
|
+
"companyAccountId": {
|
|
582
|
+
"description": "The company account",
|
|
583
|
+
"pattern": "^acct_(sandbox|live)_[a-z0-9]{8,64}$",
|
|
584
|
+
"type": "string",
|
|
585
|
+
"x-hyperscale-reference-filter": {
|
|
586
|
+
"column": "role",
|
|
587
|
+
"values": [
|
|
588
|
+
"customer_balance"
|
|
589
|
+
]
|
|
590
|
+
}
|
|
591
|
+
},
|
|
592
|
+
"contributorAccountId": {
|
|
593
|
+
"description": "The contributor account",
|
|
594
|
+
"pattern": "^acct_(sandbox|live)_[a-z0-9]{8,64}$",
|
|
595
|
+
"type": "string",
|
|
596
|
+
"x-hyperscale-reference-filter": {
|
|
597
|
+
"column": "role",
|
|
598
|
+
"values": [
|
|
599
|
+
"customer_balance"
|
|
600
|
+
]
|
|
601
|
+
}
|
|
602
|
+
},
|
|
603
|
+
"currency": {
|
|
604
|
+
"description": "ISO 4217 currency code",
|
|
605
|
+
"maxLength": 3,
|
|
606
|
+
"minLength": 3,
|
|
607
|
+
"pattern": "^[A-Z]{3}$",
|
|
608
|
+
"type": "string"
|
|
609
|
+
},
|
|
610
|
+
"roundId": {
|
|
611
|
+
"description": "The exact round",
|
|
612
|
+
"pattern": "^roun_(sandbox|live)_[a-z0-9]{8,64}$",
|
|
613
|
+
"type": "string"
|
|
614
|
+
}
|
|
615
|
+
},
|
|
616
|
+
"id": "round_commitment",
|
|
617
|
+
"idPrefix": "zzaa",
|
|
618
|
+
"lifecycle": {
|
|
619
|
+
"initial": "committed",
|
|
620
|
+
"states": [
|
|
621
|
+
"committed",
|
|
622
|
+
"cancelled",
|
|
623
|
+
"collected",
|
|
624
|
+
"refunded"
|
|
625
|
+
],
|
|
626
|
+
"transitions": {
|
|
627
|
+
"cancel": {
|
|
628
|
+
"from": [
|
|
629
|
+
"committed"
|
|
630
|
+
],
|
|
631
|
+
"to": "cancelled"
|
|
632
|
+
},
|
|
633
|
+
"collect": {
|
|
634
|
+
"from": [
|
|
635
|
+
"committed"
|
|
636
|
+
],
|
|
637
|
+
"to": "collected"
|
|
638
|
+
},
|
|
639
|
+
"refund": {
|
|
640
|
+
"from": [
|
|
641
|
+
"committed"
|
|
642
|
+
],
|
|
643
|
+
"to": "refunded"
|
|
644
|
+
}
|
|
645
|
+
}
|
|
646
|
+
},
|
|
647
|
+
"parties": {
|
|
648
|
+
"beneficiary": "companyAccountId",
|
|
649
|
+
"payer": "contributorAccountId"
|
|
650
|
+
},
|
|
651
|
+
"required": [
|
|
652
|
+
"companyAccountId",
|
|
653
|
+
"contributorAccountId",
|
|
654
|
+
"amount",
|
|
655
|
+
"currency",
|
|
656
|
+
"roundId"
|
|
657
|
+
],
|
|
658
|
+
"summary": "Whole commitment to round",
|
|
659
|
+
"title": "Round Commitment"
|
|
660
|
+
}
|
|
661
|
+
],
|
|
662
|
+
"product": "capital_pool_example",
|
|
663
|
+
"subjects": [],
|
|
664
|
+
"title": "Capital pool example",
|
|
665
|
+
"udl": 1,
|
|
666
|
+
"version": 1
|
|
667
|
+
}
|