-
Notifications
You must be signed in to change notification settings - Fork 250
Expand file tree
/
Copy pathpsm.js
More file actions
454 lines (425 loc) · 14 KB
/
psm.js
File metadata and controls
454 lines (425 loc) · 14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
import { Fail } from '@endo/errors';
import { E } from '@endo/eventual-send';
import { AmountMath, AmountShape, BrandShape, RatioShape } from '@agoric/ertp';
import {
CONTRACT_ELECTORATE,
handleParamGovernance,
ParamTypes,
publicMixinAPI,
} from '@agoric/governance';
import { StorageNodeShape } from '@agoric/internal';
import { wrapRemoteMarshaller } from '@agoric/internal/src/marshal/wrap-marshaller.js';
import { M, prepareExo, provide } from '@agoric/vat-data';
import {
atomicTransfer,
ceilMultiplyBy,
floorDivideBy,
floorMultiplyBy,
makeRecorderTopic,
prepareRecorderKitMakers,
provideAll,
provideEmptySeat,
TopicsRecordShape,
} from '@agoric/zoe/src/contractSupport/index.js';
import {
AmountKeywordRecordShape,
FeeMintAccessShape,
InstanceHandleShape,
InvitationShape,
} from '@agoric/zoe/src/typeGuards.js';
import { mustMatch } from '@agoric/store';
import { makeCollectFeesInvitation } from '../collectFees.js';
import { makeNatAmountShape } from '../contractSupport.js';
/**
* @file The Parity Stability Module supports efficiently minting/burning a
* stable token at a specified fixed ratio to a reference stable token, which
* thereby acts as an anchor to provide additional stability. For flexible
* economic policies, the fee percentage for trading into and out of the
* stable token are specified separately.
*/
/**
* @import {EReturn} from '@endo/far';
* @import {TypedPattern, Remote} from '@agoric/internal';
* @import {Baggage} from '@agoric/vat-data'
* @import {ContractMeta, FeeMintAccess, Invitation, ZCF, ZCFSeat} from '@agoric/zoe';
* @import {Ratio} from '@agoric/ertp';
* @import {GovernanceTerms} from '@agoric/governance/src/types.js';
* @import {Amount} from '@agoric/ertp';
* @import {Brand} from '@agoric/ertp';
* @import {StorageNode} from '@agoric/internal/src/lib-chainStorage.js';
* @import {Marshaller} from '@agoric/internal/src/lib-chainStorage.js';
*/
/**
* @typedef {object} MetricsNotification Metrics naming scheme is that nouns are
* present values and past-participles are accumulative.
* @property {Amount<'nat'>} anchorPoolBalance amount of Anchor token available
* to be swapped
* @property {Amount<'nat'>} mintedPoolBalance amount of Minted token
* outstanding (the amount minted minus the amount burned).
* @property {Amount<'nat'>} feePoolBalance amount of Minted token fees
* available to be collected
* @property {Amount<'nat'>} totalAnchorProvided running sum of Anchor ever
* given by this contract
* @property {Amount<'nat'>} totalMintedProvided running sum of Minted ever
* given by this contract
*/
/** @type {ContractMeta<typeof start>} */
export const meta = {
upgradability: 'canUpgrade',
customTermsShape: {
anchorBrand: BrandShape,
anchorPerMinted: RatioShape,
electionManager: InstanceHandleShape,
governedParams: {
[CONTRACT_ELECTORATE]: {
type: ParamTypes.INVITATION,
value: AmountShape,
},
WantMintedFee: {
type: ParamTypes.RATIO,
value: RatioShape,
},
GiveMintedFee: {
type: ParamTypes.RATIO,
value: RatioShape,
},
MintLimit: { type: ParamTypes.AMOUNT, value: AmountShape },
},
},
// @ts-expect-error splitRecord loses the property keys
privateArgsShape: M.splitRecord(
{
marshaller: M.remotable('Marshaller'),
storageNode: StorageNodeShape,
},
{
// only necessary on first invocation, not subsequent
feeMintAccess: FeeMintAccessShape,
initialPoserInvitation: InvitationShape,
},
),
};
harden(meta);
/**
* @param {ZCF<
* GovernanceTerms<{
* GiveMintedFee: 'ratio';
* WantMintedFee: 'ratio';
* MintLimit: 'amount';
* }> & {
* anchorBrand: Brand<'nat'>;
* anchorPerMinted: Ratio;
* }
* >} zcf
* @param {{
* feeMintAccess: FeeMintAccess;
* initialPoserInvitation: Invitation;
* storageNode: Remote<StorageNode>;
* marshaller: Remote<Marshaller>;
* }} privateArgs
* @param {Baggage} baggage
*/
export const start = async (zcf, privateArgs, baggage) => {
const { anchorBrand, anchorPerMinted } = zcf.getTerms();
console.log('PSM Starting', anchorBrand, anchorPerMinted);
const { marshaller: remoteMarshaller } = privateArgs;
const cachingMarshaller = wrapRemoteMarshaller(remoteMarshaller);
const { makeRecorderKit } = prepareRecorderKitMakers(
baggage,
cachingMarshaller,
);
const { stableMint } = await provideAll(baggage, {
stableMint: () => zcf.registerFeeMint('Minted', privateArgs.feeMintAccess),
});
const { brand: stableBrand } = stableMint.getIssuerRecord();
(anchorPerMinted.numerator.brand === anchorBrand &&
anchorPerMinted.denominator.brand === stableBrand) ||
Fail`Ratio ${anchorPerMinted} is not consistent with brands ${anchorBrand} and ${stableBrand}`;
zcf.setTestJig(() => ({
stableIssuerRecord: stableMint.getIssuerRecord(),
}));
const emptyStable = AmountMath.makeEmpty(stableBrand);
const emptyAnchor = AmountMath.makeEmpty(anchorBrand);
const { publicMixin, makeDurableGovernorFacet, params } =
await handleParamGovernance(
zcf,
privateArgs.initialPoserInvitation,
{
GiveMintedFee: ParamTypes.RATIO,
MintLimit: ParamTypes.AMOUNT,
WantMintedFee: ParamTypes.RATIO,
},
privateArgs.storageNode,
cachingMarshaller,
);
const anchorPool = provideEmptySeat(zcf, baggage, 'anchorPoolSeat');
const feePool = provideEmptySeat(zcf, baggage, 'feePoolSeat');
const stage = provideEmptySeat(zcf, baggage, 'stageSeat');
// XXX access these through baggage directly so changes are saved
// Normally these would be in Exo class state but that's too big a change atm
provide(baggage, 'mintedPoolBalance', () =>
AmountMath.makeEmpty(stableBrand),
);
provide(baggage, 'totalAnchorProvided', () =>
AmountMath.makeEmpty(anchorBrand),
);
provide(baggage, 'totalMintedProvided', () =>
AmountMath.makeEmpty(stableBrand),
);
const { metricsKit } = await provideAll(baggage, {
metricsKit: () =>
E.when(E(privateArgs.storageNode).makeChildNode('metrics'), node =>
makeRecorderKit(
node,
/** @type {TypedPattern<MetricsNotification>} */ (M.any()),
),
),
});
const topics = harden({
metrics: makeRecorderTopic('PSM metrics', metricsKit),
});
const updateMetrics = () => {
void E(metricsKit.recorder).write(
harden({
anchorPoolBalance: anchorPool.getAmountAllocated('Anchor', anchorBrand),
feePoolBalance: feePool.getAmountAllocated('Minted', stableBrand),
mintedPoolBalance: baggage.get('mintedPoolBalance'),
totalAnchorProvided: baggage.get('totalAnchorProvided'),
totalMintedProvided: baggage.get('totalMintedProvided'),
}),
);
};
updateMetrics();
const AnchorAmountShape = makeNatAmountShape(anchorBrand);
const StableAmountShape = makeNatAmountShape(stableBrand);
/**
* @param {ZCFSeat} seat
* @param {Omit<MetricsNotification, 'anchorPoolBalance'>} target
*/
const restoreMetricsHook = (seat, target) => {
assert(
AmountMath.isEmpty(anchorPool.getAmountAllocated('Anchor', anchorBrand)),
'cannot restoreMetrics: anchorPool is not empty',
);
assert(
AmountMath.isEmpty(feePool.getAmountAllocated('Minted', stableBrand)),
'cannot restoreMetrics: feePool is not empty',
);
mustMatch(
target,
harden({
feePoolBalance: StableAmountShape,
mintedPoolBalance: StableAmountShape,
totalAnchorProvided: AnchorAmountShape,
totalMintedProvided: StableAmountShape,
}),
);
const {
give: { Anchor },
} = seat.getProposal();
stableMint.mintGains({ Minted: target.feePoolBalance }, feePool);
atomicTransfer(zcf, seat, anchorPool, { Anchor });
baggage.set('mintedPoolBalance', target.mintedPoolBalance);
baggage.set('totalAnchorProvided', target.totalAnchorProvided);
baggage.set('totalMintedProvided', target.totalMintedProvided);
seat.exit();
updateMetrics();
};
/** @param {Amount<'nat'>} toMint */
const assertUnderLimit = toMint => {
const mintedAfter = AmountMath.add(
baggage.get('mintedPoolBalance'),
toMint,
);
AmountMath.isGTE(params.getMintLimit(), mintedAfter) ||
Fail`Request would exceed mint limit`;
};
const burnMinted = toBurn => {
stableMint.burnLosses({ Minted: toBurn }, stage);
baggage.set(
'mintedPoolBalance',
AmountMath.subtract(baggage.get('mintedPoolBalance'), toBurn),
);
};
const mintMinted = toMint => {
stableMint.mintGains({ Minted: toMint }, stage);
baggage.set(
'mintedPoolBalance',
AmountMath.add(baggage.get('mintedPoolBalance'), toMint),
);
};
/**
* @param {ZCFSeat} seat
* @param {Amount<'nat'>} given
* @param {Amount<'nat'>} [wanted] defaults to maximum anchor (given exchange
* rate minus fees)
*/
const giveMinted = (seat, given, wanted = emptyAnchor) => {
const fee = ceilMultiplyBy(given, params.getGiveMintedFee());
const afterFee = AmountMath.subtract(given, fee);
const maxAnchor = floorMultiplyBy(afterFee, anchorPerMinted);
AmountMath.isGTE(maxAnchor, wanted) ||
Fail`wanted ${wanted} is more than ${given} minus fees ${fee}`;
zcf.atomicRearrange(
harden([
[seat, stage, { In: afterFee }, { Minted: afterFee }],
[seat, feePool, { In: fee }, { Minted: fee }],
[anchorPool, seat, { Anchor: maxAnchor }, { Out: maxAnchor }],
]),
);
// The treatment of `burnMinted` here is different than the
// one immediately below. This `burnMinted`
// happen only if the `atomicRearrange` does *not* throw.
burnMinted(afterFee);
baggage.set(
'totalAnchorProvided',
AmountMath.add(baggage.get('totalAnchorProvided'), maxAnchor),
);
};
/**
* @param {ZCFSeat} seat
* @param {Amount<'nat'>} given
* @param {Amount<'nat'>} [wanted]
*/
const wantMinted = (seat, given, wanted = emptyStable) => {
const asStable = floorDivideBy(given, anchorPerMinted);
assertUnderLimit(asStable);
const fee = ceilMultiplyBy(asStable, params.getWantMintedFee());
const afterFee = AmountMath.subtract(asStable, fee);
AmountMath.isGTE(afterFee, wanted) ||
Fail`wanted ${wanted} is more than ${given} minus fees ${fee}`;
mintMinted(asStable);
try {
zcf.atomicRearrange(
harden([
[seat, anchorPool, { In: given }, { Anchor: given }],
[stage, seat, { Minted: afterFee }, { Out: afterFee }],
[stage, feePool, { Minted: fee }],
]),
);
} catch (e) {
// The treatment of `burnMinted` here is different than the
// one immediately above. This `burnMinted`
// happens only if the `atomicRearrange` *does* throw.
burnMinted(asStable);
throw e;
}
baggage.set(
'totalMintedProvided',
AmountMath.add(baggage.get('totalMintedProvided'), asStable),
);
};
/** @param {ZCFSeat} seat */
const giveMintedHook = seat => {
const {
give: { In: given },
want: { Out: wanted } = { Out: undefined },
} = seat.getProposal();
giveMinted(seat, given, wanted);
seat.exit();
updateMetrics();
};
/** @param {ZCFSeat} seat */
const wantMintedHook = seat => {
const {
give: { In: given },
want: { Out: wanted } = { Out: undefined },
} = seat.getProposal();
wantMinted(seat, given, wanted);
seat.exit();
updateMetrics();
};
const { anchorAmountShape, stableAmountShape } = await provideAll(baggage, {
anchorAmountShape: () => E(anchorBrand).getAmountShape(),
stableAmountShape: () => E(stableBrand).getAmountShape(),
});
const publicFacet = prepareExo(
baggage,
'Parity Stability Module',
M.interface('PSM', {
getMetrics: M.call().returns(M.remotable('MetricsSubscriber')),
getPoolBalance: M.call().returns(anchorAmountShape),
getPublicTopics: M.call().returns(TopicsRecordShape),
makeWantMintedInvitation: M.call().returns(M.promise()),
makeGiveMintedInvitation: M.call().returns(M.promise()),
...publicMixinAPI,
}),
{
getMetrics() {
return metricsKit.subscriber;
},
getPoolBalance() {
return anchorPool.getAmountAllocated('Anchor', anchorBrand);
},
getPublicTopics() {
return topics;
},
makeWantMintedInvitation() {
return zcf.makeInvitation(
wantMintedHook,
'wantMinted',
undefined,
M.splitRecord({
give: { In: anchorAmountShape },
want: M.or({ Out: stableAmountShape }, {}),
}),
);
},
makeGiveMintedInvitation() {
return zcf.makeInvitation(
giveMintedHook,
'giveMinted',
undefined,
M.splitRecord({
give: { In: stableAmountShape },
want: M.or({ Out: anchorAmountShape }, {}),
}),
);
},
...publicMixin,
},
);
const limitedCreatorFacet = prepareExo(
baggage,
'PSM machine',
M.interface('PSM machine', {
getRewardAllocation: M.call().returns(AmountKeywordRecordShape),
makeCollectFeesInvitation: M.call().returns(
M.promise(/* InvitationShape */),
),
makeRestoreMetricsInvitation: M.call().returns(
M.promise(/* InvitationShape */),
),
}),
{
getRewardAllocation() {
return feePool.getCurrentAllocation();
},
makeCollectFeesInvitation() {
return makeCollectFeesInvitation(zcf, feePool, stableBrand, 'Minted');
},
makeRestoreMetricsInvitation() {
return zcf.makeInvitation(
restoreMetricsHook,
'restoreMetrics',
undefined,
M.splitRecord({
give: {
Anchor: AnchorAmountShape,
},
}),
);
},
},
);
const { governorFacet } = makeDurableGovernorFacet(
baggage,
limitedCreatorFacet,
);
return harden({
creatorFacet: governorFacet,
publicFacet,
});
};
harden(start);
/** @typedef {EReturn<typeof start>['publicFacet']} PsmPublicFacet */