@agoric/zoe 0.26.3-upgrade-14-dev-c8f9e7b.0 → 0.26.3-upgrade-16-dev-8879538.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 (269) hide show
  1. package/README.md +7 -7
  2. package/bundles/bundle-contractFacet-js-meta.json +622 -313
  3. package/bundles/bundle-contractFacet.d.ts +3 -3
  4. package/bundles/bundle-contractFacet.js +1 -1
  5. package/exported.js +1 -12
  6. package/package.json +75 -60
  7. package/src/cleanProposal.d.ts +2 -2
  8. package/src/cleanProposal.d.ts.map +1 -1
  9. package/src/cleanProposal.js +15 -12
  10. package/src/contractFacet/exit.d.ts.map +1 -1
  11. package/src/contractFacet/exit.js +1 -0
  12. package/src/contractFacet/internal-types.d.ts +2 -2
  13. package/src/contractFacet/internal-types.d.ts.map +1 -1
  14. package/src/contractFacet/internal-types.js +1 -1
  15. package/src/contractFacet/offerHandlerStorage.d.ts +4 -1
  16. package/src/contractFacet/offerHandlerStorage.d.ts.map +1 -1
  17. package/src/contractFacet/offerHandlerStorage.js +11 -3
  18. package/src/contractFacet/reallocate.d.ts +3 -0
  19. package/src/contractFacet/reallocate.d.ts.map +1 -0
  20. package/src/contractFacet/reallocate.js +94 -0
  21. package/src/contractFacet/rightsConservation.d.ts.map +1 -1
  22. package/src/contractFacet/rightsConservation.js +3 -0
  23. package/src/contractFacet/types-ambient.d.ts +259 -0
  24. package/src/contractFacet/types-ambient.js +1 -0
  25. package/src/contractFacet/vatRoot.d.ts +4 -4
  26. package/src/contractFacet/vatRoot.d.ts.map +1 -1
  27. package/src/contractFacet/zcfMint.d.ts +5 -3
  28. package/src/contractFacet/zcfMint.d.ts.map +1 -1
  29. package/src/contractFacet/zcfMint.js +4 -4
  30. package/src/contractFacet/zcfSeat.d.ts +4 -2
  31. package/src/contractFacet/zcfSeat.d.ts.map +1 -1
  32. package/src/contractFacet/zcfSeat.js +125 -5
  33. package/src/contractFacet/zcfZygote.d.ts +1 -2
  34. package/src/contractFacet/zcfZygote.d.ts.map +1 -1
  35. package/src/contractFacet/zcfZygote.js +95 -42
  36. package/src/contractSupport/atomicTransfer.d.ts +0 -6
  37. package/src/contractSupport/atomicTransfer.d.ts.map +1 -1
  38. package/src/contractSupport/atomicTransfer.js +5 -90
  39. package/src/contractSupport/bondingCurves.js +2 -2
  40. package/src/contractSupport/durability.d.ts +3 -3
  41. package/src/contractSupport/durability.d.ts.map +1 -1
  42. package/src/contractSupport/durability.js +5 -5
  43. package/src/contractSupport/index.d.ts +1 -0
  44. package/src/contractSupport/index.js +1 -0
  45. package/src/contractSupport/prepare-ownable.d.ts +11 -0
  46. package/src/contractSupport/prepare-ownable.d.ts.map +1 -0
  47. package/src/contractSupport/prepare-ownable.js +100 -0
  48. package/src/contractSupport/priceAuthority.d.ts +23 -15
  49. package/src/contractSupport/priceAuthority.d.ts.map +1 -1
  50. package/src/contractSupport/priceAuthority.js +32 -17
  51. package/src/contractSupport/priceAuthorityInitial.d.ts +3 -2
  52. package/src/contractSupport/priceAuthorityInitial.d.ts.map +1 -1
  53. package/src/contractSupport/priceAuthorityInitial.js +5 -2
  54. package/src/contractSupport/priceAuthorityQuoteMint.d.ts +2 -1
  55. package/src/contractSupport/priceAuthorityQuoteMint.d.ts.map +1 -1
  56. package/src/contractSupport/priceAuthorityQuoteMint.js +23 -27
  57. package/src/contractSupport/priceAuthorityTransform.d.ts +14 -12
  58. package/src/contractSupport/priceAuthorityTransform.d.ts.map +1 -1
  59. package/src/contractSupport/priceAuthorityTransform.js +10 -8
  60. package/src/contractSupport/priceQuote.d.ts +7 -5
  61. package/src/contractSupport/priceQuote.d.ts.map +1 -1
  62. package/src/contractSupport/priceQuote.js +5 -1
  63. package/src/contractSupport/ratio.d.ts +2 -2
  64. package/src/contractSupport/ratio.d.ts.map +1 -1
  65. package/src/contractSupport/ratio.js +19 -15
  66. package/src/contractSupport/recorder.d.ts +31 -117
  67. package/src/contractSupport/recorder.d.ts.map +1 -1
  68. package/src/contractSupport/recorder.js +21 -10
  69. package/src/contractSupport/safeMath.d.ts +7 -7
  70. package/src/contractSupport/safeMath.d.ts.map +1 -1
  71. package/src/contractSupport/statistics.d.ts +1 -1
  72. package/src/contractSupport/statistics.d.ts.map +1 -1
  73. package/src/contractSupport/topics.d.ts +1 -1
  74. package/src/contractSupport/topics.d.ts.map +1 -1
  75. package/src/contractSupport/{types.d.ts → types-ambient.d.ts} +4 -4
  76. package/src/contractSupport/types-ambient.d.ts.map +1 -0
  77. package/src/contractSupport/{types.js → types-ambient.js} +1 -1
  78. package/src/contractSupport/zoeHelpers.d.ts +1 -1
  79. package/src/contractSupport/zoeHelpers.d.ts.map +1 -1
  80. package/src/contractSupport/zoeHelpers.js +5 -11
  81. package/src/contracts/auction/firstPriceLogic.d.ts.map +1 -1
  82. package/src/contracts/auction/firstPriceLogic.js +5 -8
  83. package/src/contracts/auction/index.d.ts +10 -10
  84. package/src/contracts/auction/index.d.ts.map +1 -1
  85. package/src/contracts/auction/index.js +2 -1
  86. package/src/contracts/auction/secondPriceLogic.d.ts.map +1 -1
  87. package/src/contracts/auction/secondPriceLogic.js +1 -4
  88. package/src/contracts/automaticRefund.d.ts +1 -1
  89. package/src/contracts/automaticRefund.d.ts.map +1 -1
  90. package/src/contracts/autoswap.d.ts.map +1 -1
  91. package/src/contracts/autoswap.js +8 -9
  92. package/src/contracts/barterExchange.d.ts +1 -1
  93. package/src/contracts/barterExchange.d.ts.map +1 -1
  94. package/src/contracts/barterExchange.js +2 -3
  95. package/src/contracts/callSpread/calculateShares.d.ts +1 -8
  96. package/src/contracts/callSpread/calculateShares.d.ts.map +1 -1
  97. package/src/contracts/callSpread/calculateShares.js +1 -1
  98. package/src/contracts/callSpread/fundedCallSpread.d.ts +4 -0
  99. package/src/contracts/callSpread/fundedCallSpread.d.ts.map +1 -1
  100. package/src/contracts/callSpread/fundedCallSpread.js +6 -4
  101. package/src/contracts/callSpread/payoffHandler.d.ts.map +1 -1
  102. package/src/contracts/callSpread/payoffHandler.js +2 -1
  103. package/src/contracts/callSpread/percent.d.ts +2 -4
  104. package/src/contracts/callSpread/percent.d.ts.map +1 -1
  105. package/src/contracts/callSpread/position.d.ts +2 -2
  106. package/src/contracts/callSpread/pricedCallSpread.d.ts +6 -5
  107. package/src/contracts/callSpread/pricedCallSpread.d.ts.map +1 -1
  108. package/src/contracts/callSpread/pricedCallSpread.js +8 -4
  109. package/src/contracts/callSpread/{types.d.ts → types-ambient.d.ts} +3 -3
  110. package/src/contracts/callSpread/types-ambient.d.ts.map +1 -0
  111. package/src/contracts/coveredCall-durable.d.ts +2 -4
  112. package/src/contracts/coveredCall-durable.d.ts.map +1 -1
  113. package/src/contracts/exported.js +3 -3
  114. package/src/contracts/loan/borrow.d.ts.map +1 -1
  115. package/src/contracts/loan/borrow.js +7 -4
  116. package/src/contracts/loan/close.d.ts.map +1 -1
  117. package/src/contracts/loan/close.js +3 -7
  118. package/src/contracts/loan/index.d.ts +5 -1
  119. package/src/contracts/loan/index.d.ts.map +1 -1
  120. package/src/contracts/loan/index.js +4 -0
  121. package/src/contracts/loan/liquidate.d.ts +1 -12
  122. package/src/contracts/loan/liquidate.d.ts.map +1 -1
  123. package/src/contracts/loan/liquidate.js +4 -2
  124. package/src/contracts/loan/scheduleLiquidation.d.ts.map +1 -1
  125. package/src/contracts/loan/scheduleLiquidation.js +1 -0
  126. package/src/contracts/loan/{types.d.ts → types-ambient.d.ts} +16 -17
  127. package/src/contracts/loan/types-ambient.d.ts.map +1 -0
  128. package/src/contracts/loan/{types.js → types-ambient.js} +11 -18
  129. package/src/contracts/loan/updateDebt.js +1 -1
  130. package/src/contracts/mintAndSellNFT.d.ts.map +1 -1
  131. package/src/contracts/mintPayments.d.ts +14 -6
  132. package/src/contracts/mintPayments.d.ts.map +1 -1
  133. package/src/contracts/mintPayments.js +1 -1
  134. package/src/contracts/oracle.d.ts +25 -3
  135. package/src/contracts/oracle.d.ts.map +1 -1
  136. package/src/contracts/oracle.js +7 -0
  137. package/src/contracts/otcDesk.d.ts +3 -3
  138. package/src/contracts/otcDesk.d.ts.map +1 -1
  139. package/src/contracts/otcDesk.js +1 -1
  140. package/src/contracts/priceAggregator.d.ts +112 -18
  141. package/src/contracts/priceAggregator.d.ts.map +1 -1
  142. package/src/contracts/priceAggregator.js +16 -18
  143. package/src/contracts/priceAggregatorTypes.d.ts +2 -2
  144. package/src/contracts/priceAggregatorTypes.d.ts.map +1 -1
  145. package/src/contracts/scaledPriceAuthority.d.ts +4 -5
  146. package/src/contracts/scaledPriceAuthority.d.ts.map +1 -1
  147. package/src/contracts/scaledPriceAuthority.js +6 -0
  148. package/src/contracts/sellItems.d.ts +2 -2
  149. package/src/contracts/sellItems.d.ts.map +1 -1
  150. package/src/contracts/sellItems.js +2 -3
  151. package/src/contracts/simpleExchange.d.ts +3 -3
  152. package/src/contracts/{types.d.ts → types-ambient.d.ts} +1 -1
  153. package/src/contracts/types-ambient.d.ts.map +1 -0
  154. package/src/handleWarning.d.ts.map +1 -1
  155. package/src/instanceRecordStorage.d.ts +1 -1
  156. package/src/instanceRecordStorage.d.ts.map +1 -1
  157. package/src/internal-types.d.ts +20 -32
  158. package/src/internal-types.d.ts.map +1 -1
  159. package/src/internal-types.js +18 -58
  160. package/src/issuerRecord.d.ts +2 -2
  161. package/src/issuerRecord.d.ts.map +1 -1
  162. package/src/issuerStorage.d.ts +4 -4
  163. package/src/issuerStorage.d.ts.map +1 -1
  164. package/src/issuerStorage.js +12 -28
  165. package/src/makeHandle.d.ts +2 -2
  166. package/src/makeHandle.d.ts.map +1 -1
  167. package/src/makeHandle.js +1 -1
  168. package/src/typeGuards.d.ts +119 -20
  169. package/src/typeGuards.d.ts.map +1 -1
  170. package/src/typeGuards.js +18 -9
  171. package/src/types-ambient.d.ts +41 -0
  172. package/src/types-ambient.d.ts.map +1 -0
  173. package/src/{types.js → types-ambient.js} +6 -14
  174. package/src/zoeService/escrowStorage.d.ts +1 -1
  175. package/src/zoeService/escrowStorage.d.ts.map +1 -1
  176. package/src/zoeService/escrowStorage.js +20 -27
  177. package/src/zoeService/feeMint.d.ts +9 -16
  178. package/src/zoeService/feeMint.d.ts.map +1 -1
  179. package/src/zoeService/feeMint.js +21 -15
  180. package/src/zoeService/installationStorage.d.ts +5 -20
  181. package/src/zoeService/installationStorage.d.ts.map +1 -1
  182. package/src/zoeService/installationStorage.js +11 -7
  183. package/src/zoeService/instanceAdminStorage.d.ts +22 -42
  184. package/src/zoeService/instanceAdminStorage.d.ts.map +1 -1
  185. package/src/zoeService/instanceAdminStorage.js +1 -0
  186. package/src/zoeService/internal-types.d.ts +16 -16
  187. package/src/zoeService/internal-types.d.ts.map +1 -1
  188. package/src/zoeService/internal-types.js +6 -6
  189. package/src/zoeService/invitationQueries.d.ts.map +1 -1
  190. package/src/zoeService/invitationQueries.js +7 -5
  191. package/src/zoeService/makeInvitation.d.ts +3 -3
  192. package/src/zoeService/makeInvitation.d.ts.map +1 -1
  193. package/src/zoeService/makeInvitation.js +25 -21
  194. package/src/zoeService/offer/burnInvitation.d.ts.map +1 -1
  195. package/src/zoeService/offer/offer.d.ts.map +1 -1
  196. package/src/zoeService/offer/offer.js +2 -5
  197. package/src/zoeService/originalZoeSeat.d.ts +34 -0
  198. package/src/zoeService/originalZoeSeat.d.ts.map +1 -0
  199. package/src/zoeService/originalZoeSeat.js +353 -0
  200. package/src/zoeService/startInstance.d.ts +3 -3
  201. package/src/zoeService/startInstance.d.ts.map +1 -1
  202. package/src/zoeService/startInstance.js +17 -11
  203. package/src/zoeService/{types.d.ts → types-ambient.d.ts} +26 -31
  204. package/src/zoeService/types-ambient.d.ts.map +1 -0
  205. package/src/zoeService/{types.js → types-ambient.js} +19 -32
  206. package/src/zoeService/utils.d.ts +54 -58
  207. package/src/zoeService/utils.test-d.d.ts +2 -0
  208. package/src/zoeService/utils.test-d.d.ts.map +1 -0
  209. package/src/zoeService/utils.test-d.ts +33 -0
  210. package/src/zoeService/zoe.d.ts +9 -13
  211. package/src/zoeService/zoe.d.ts.map +1 -1
  212. package/src/zoeService/zoe.js +7 -7
  213. package/src/zoeService/zoeSeat.d.ts +15 -45
  214. package/src/zoeService/zoeSeat.d.ts.map +1 -1
  215. package/src/zoeService/zoeSeat.js +214 -114
  216. package/src/zoeService/zoeStorageManager.d.ts +9 -43
  217. package/src/zoeService/zoeStorageManager.d.ts.map +1 -1
  218. package/src/zoeService/zoeStorageManager.js +8 -6
  219. package/tools/fakePriceAuthority.d.ts +9 -8
  220. package/tools/fakePriceAuthority.d.ts.map +1 -1
  221. package/tools/fakePriceAuthority.js +21 -17
  222. package/tools/fakeVatAdmin.d.ts +10 -10
  223. package/tools/manualPriceAuthority.d.ts +11 -6
  224. package/tools/manualPriceAuthority.d.ts.map +1 -1
  225. package/tools/manualPriceAuthority.js +15 -2
  226. package/tools/manualTimer.d.ts +21 -40
  227. package/tools/manualTimer.d.ts.map +1 -1
  228. package/tools/manualTimer.js +30 -16
  229. package/tools/prepare-test-env.js +1 -1
  230. package/tools/scriptedOracle.d.ts +3 -3
  231. package/tools/scriptedOracle.d.ts.map +1 -1
  232. package/tools/scriptedOracle.js +1 -1
  233. package/tools/scriptedPriceAuthority.d.ts +4 -0
  234. package/tools/scriptedPriceAuthority.d.ts.map +1 -1
  235. package/tools/scriptedPriceAuthority.js +6 -1
  236. package/tools/setup-zoe.d.ts +8 -9
  237. package/tools/setup-zoe.d.ts.map +1 -1
  238. package/tools/setup-zoe.js +16 -1
  239. package/tools/test-utils.d.ts +20 -0
  240. package/tools/test-utils.d.ts.map +1 -0
  241. package/tools/test-utils.js +26 -0
  242. package/tools/types.d.ts +21 -21
  243. package/tools/types.d.ts.map +1 -1
  244. package/tools/types.js +10 -10
  245. package/CHANGELOG.md +0 -1203
  246. package/src/contractFacet/types.d.ts +0 -191
  247. package/src/contractFacet/types.d.ts.map +0 -1
  248. package/src/contractFacet/types.js +0 -256
  249. package/src/contractSupport/types.d.ts.map +0 -1
  250. package/src/contracts/callSpread/types.d.ts.map +0 -1
  251. package/src/contracts/loan/types.d.ts.map +0 -1
  252. package/src/contracts/types.d.ts.map +0 -1
  253. package/src/objArrayConversion.d.ts +0 -5
  254. package/src/objArrayConversion.d.ts.map +0 -1
  255. package/src/objArrayConversion.js +0 -35
  256. package/src/types.d.ts +0 -45
  257. package/src/types.d.ts.map +0 -1
  258. package/src/zoeService/types.d.ts.map +0 -1
  259. package/tools/internal-types.d.ts +0 -12
  260. package/tools/internal-types.d.ts.map +0 -1
  261. package/tools/internal-types.js +0 -14
  262. package/tools/priceAuthorityRegistry.d.ts +0 -20
  263. package/tools/priceAuthorityRegistry.d.ts.map +0 -1
  264. package/tools/priceAuthorityRegistry.js +0 -209
  265. package/tools/types-ambient.d.ts +0 -142
  266. package/tools/types-ambient.d.ts.map +0 -1
  267. package/tools/types-ambient.js +0 -160
  268. /package/src/contracts/callSpread/{types.js → types-ambient.js} +0 -0
  269. /package/src/contracts/{types.js → types-ambient.js} +0 -0
@@ -1 +1 @@
1
- {"version":3,"file":"secondPriceLogic.d.ts","sourceRoot":"","sources":["secondPriceLogic.js"],"names":[],"mappings":"AAQO,wCAJI,GAAG,YACH,OAAO,YACP,MAAM,OAAO,CAAC,QAgExB"}
1
+ {"version":3,"file":"secondPriceLogic.d.ts","sourceRoot":"","sources":["secondPriceLogic.js"],"names":[],"mappings":"AAOO,wCAJI,GAAG,YACH,OAAO,YACP,KAAK,CAAC,OAAO,CAAC,QA8DxB"}
@@ -1,5 +1,4 @@
1
1
  import { AmountMath } from '@agoric/ertp';
2
- import { atomicRearrange } from '../../contractSupport/index.js';
3
2
 
4
3
  /**
5
4
  * @param {ZCF} zcf
@@ -24,7 +23,6 @@ export const calcWinnerAndClose = (zcf, sellSeat, bidSeats) => {
24
23
  bidSeats.forEach(bidSeat => {
25
24
  if (!bidSeat.hasExited()) {
26
25
  activeBidsCount += 1n;
27
- /** @type {Amount<'nat'>} */
28
26
  const bid = bidSeat.getAmountAllocated('Bid', bidBrand);
29
27
  // If the bid is greater than the highestBid, it's the new highestBid
30
28
  if (AmountMath.isGTE(bid, highestBid, bidBrand)) {
@@ -48,8 +46,7 @@ export const calcWinnerAndClose = (zcf, sellSeat, bidSeats) => {
48
46
  }
49
47
 
50
48
  // Everyone else gets a refund so their values remain the same.
51
- atomicRearrange(
52
- zcf,
49
+ zcf.atomicRearrange(
53
50
  harden([
54
51
  [
55
52
  highestBidSeat,
@@ -17,7 +17,7 @@ export function start(zcf: ZCF<{}>): {
17
17
  publicFacet: {
18
18
  getOffersCount: () => bigint;
19
19
  makeInvitation: () => Promise<Invitation<unknown, never>>;
20
- } & import("@endo/eventual-send").RemotableBrand<{}, {
20
+ } & import("@endo/marshal").RemotableObject<`Alleged: ${string}`> & import("@endo/eventual-send").RemotableBrand<{}, {
21
21
  getOffersCount: () => bigint;
22
22
  makeInvitation: () => Promise<Invitation<unknown, never>>;
23
23
  }>;
@@ -1 +1 @@
1
- {"version":3,"file":"automaticRefund.d.ts","sourceRoot":"","sources":["automaticRefund.js"],"names":[],"mappings":"AAEA;;;;;;;;;;;;;GAaG;AACH,2BAFW,IAAI,EAAE,CAAC;;;;;;;;;EAqBjB"}
1
+ {"version":3,"file":"automaticRefund.d.ts","sourceRoot":"","sources":["automaticRefund.js"],"names":[],"mappings":"AAEA;;;;;;;;;;;;;GAaG;AACH,2BAFW,GAAG,CAAC,EAAE,CAAC;;;;;;;;;EAqBjB"}
@@ -1 +1 @@
1
- {"version":3,"file":"autoswap.d.ts","sourceRoot":"","sources":["autoswap.js"],"names":[],"mappings":"AAgBA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAsCG;AACH,2BAFW,GAAG;;GAsVb"}
1
+ {"version":3,"file":"autoswap.d.ts","sourceRoot":"","sources":["autoswap.js"],"names":[],"mappings":"AAeA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAsCG;AACH,2BAFW,GAAG;;GAsVb"}
@@ -11,7 +11,6 @@ import {
11
11
  assertProposalShape,
12
12
  assertNatAssetKind,
13
13
  calcSecondaryRequired,
14
- atomicRearrange,
15
14
  } from '../contractSupport/index.js';
16
15
 
17
16
  /**
@@ -88,8 +87,7 @@ const start = async zcf => {
88
87
  };
89
88
 
90
89
  function consummate(tradeAmountIn, tradeAmountOut, swapSeat) {
91
- atomicRearrange(
92
- zcf,
90
+ zcf.atomicRearrange(
93
91
  harden([
94
92
  [
95
93
  swapSeat,
@@ -167,6 +165,7 @@ const start = async zcf => {
167
165
  } = swapSeat.getProposal();
168
166
 
169
167
  assert(isNatValue(wantedAmountOut.value));
168
+ assert.typeof(amountIn.value, 'bigint');
170
169
 
171
170
  const tradePrice = getOutputPrice(
172
171
  wantedAmountOut.value,
@@ -204,8 +203,7 @@ const start = async zcf => {
204
203
  Central: AmountMath.make(brands.Central, centralIn),
205
204
  Secondary: secondaryAmount,
206
205
  };
207
- atomicRearrange(
208
- zcf,
206
+ zcf.atomicRearrange(
209
207
  harden([
210
208
  [seat, poolSeat, liquidityDeposited],
211
209
  [poolSeat, seat, { Liquidity: liquidityAmountOut }],
@@ -276,8 +274,10 @@ const start = async zcf => {
276
274
  });
277
275
 
278
276
  // TODO (hibbert) should we burn tokens?
279
- const userAllocation = removeLiqSeat.getCurrentAllocation();
280
- /** @type {Amount<'nat'>} */
277
+
278
+ const userAllocation = /** @type {{Liquidity: Amount<'nat'>}} */ (
279
+ removeLiqSeat.getCurrentAllocation()
280
+ );
281
281
  const liquidityIn = userAllocation.Liquidity;
282
282
  assert(!AmountMath.isEmpty(liquidityIn), 'Pool is empty');
283
283
  const liquidityValueIn = liquidityIn.value;
@@ -307,8 +307,7 @@ const start = async zcf => {
307
307
  Secondary: newUserSecondaryAmount,
308
308
  };
309
309
 
310
- atomicRearrange(
311
- zcf,
310
+ zcf.atomicRearrange(
312
311
  harden([
313
312
  [removeLiqSeat, poolSeat, { Liquidity: userAllocation.Liquidity }],
314
313
  [poolSeat, removeLiqSeat, liquidityRemoved],
@@ -15,7 +15,7 @@
15
15
  export function start(zcf: ZCF): {
16
16
  publicFacet: {
17
17
  makeInvitation: () => Promise<Invitation<unknown, never>>;
18
- } & import("@endo/eventual-send").RemotableBrand<{}, {
18
+ } & import("@endo/marshal").RemotableObject<`Alleged: ${string}`> & import("@endo/eventual-send").RemotableBrand<{}, {
19
19
  makeInvitation: () => Promise<Invitation<unknown, never>>;
20
20
  }>;
21
21
  };
@@ -1 +1 @@
1
- {"version":3,"file":"barterExchange.d.ts","sourceRoot":"","sources":["barterExchange.js"],"names":[],"mappings":"AAKA;;;;;;;;;;;;;GAaG;AACH,2BAFW,GAAG;;;;;;EAgHb"}
1
+ {"version":3,"file":"barterExchange.d.ts","sourceRoot":"","sources":["barterExchange.js"],"names":[],"mappings":"AAKA;;;;;;;;;;;;;GAaG;AACH,2BAFW,GAAG;;;;;;EA+Gb"}
@@ -1,7 +1,7 @@
1
1
  import { Far } from '@endo/marshal';
2
2
  import { makeLegacyMap } from '@agoric/store';
3
3
  // Eventually will be importable from '@agoric/zoe-contract-support'
4
- import { satisfies, atomicRearrange } from '../contractSupport/index.js';
4
+ import { satisfies } from '../contractSupport/index.js';
5
5
 
6
6
  /**
7
7
  * This Barter Exchange accepts offers to trade arbitrary goods for other
@@ -63,8 +63,7 @@ const start = zcf => {
63
63
  const matchingTrade = findMatchingTrade(offerDetails, orders);
64
64
  if (matchingTrade) {
65
65
  // reallocate by giving each side what it wants
66
- atomicRearrange(
67
- zcf,
66
+ zcf.atomicRearrange(
68
67
  harden([
69
68
  [
70
69
  offerDetails.seat,
@@ -1,9 +1,2 @@
1
- /**
2
- * Calculate the portion (as a Ratio) of the collateral that should be
3
- * allocated to the long side of a call spread contract. price gives the value
4
- * of the underlying asset at closing that determines the payouts to the parties
5
- *
6
- * @type {CalculateShares}
7
- */
8
- export function calculateShares(collateralBrand: Brand<AssetKind>, price: Amount<"nat">, strikePrice1: Amount<"nat">, strikePrice2: Amount<"nat">): CalculateSharesReturn;
1
+ export function calculateShares(collateralBrand: Brand, price: Amount<"nat">, strikePrice1: Amount<"nat">, strikePrice2: Amount<"nat">): CalculateSharesReturn;
9
2
  //# sourceMappingURL=calculateShares.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"calculateShares.d.ts","sourceRoot":"","sources":["calculateShares.js"],"names":[],"mappings":"AAOA;;;;;;GAMG;AACH,0KAuBC"}
1
+ {"version":3,"file":"calculateShares.d.ts","sourceRoot":"","sources":["calculateShares.js"],"names":[],"mappings":"iDA+BQ,KAAK,SACF,OAAO,KAChB,CAAC,gBACC,OAAI,KAAK,CAAC,gBAEF,OAAO,KAAK,CAAC"}
@@ -1,4 +1,4 @@
1
- import './types.js';
1
+ /// <reference path="./types-ambient.js" />
2
2
 
3
3
  import { AmountMath, isNatValue } from '@agoric/ertp';
4
4
  import { assert } from '@agoric/assert';
@@ -1,3 +1,6 @@
1
+ /**
2
+ * @import {PriceAuthority} from '@agoric/zoe/tools/types.js';
3
+ */
1
4
  /**
2
5
  * This contract implements a fully collateralized call spread. This is a
3
6
  * combination of a call option bought at one strike price and a second call
@@ -57,4 +60,5 @@ export function start(zcf: ZCF<{
57
60
  }>): Promise<{
58
61
  creatorInvitation: Promise<Invitation<unknown, never>>;
59
62
  }>;
63
+ import type { PriceAuthority } from '@agoric/zoe/tools/types.js';
60
64
  //# sourceMappingURL=fundedCallSpread.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"fundedCallSpread.d.ts","sourceRoot":"","sources":["fundedCallSpread.js"],"names":[],"mappings":"AAcA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAsCG;AAEH;;;;;;;;;GASG;AACH;kBARiB,MAAM;kBACN,MAAM;sBACF,MAAM;oBACR,cAAc;gBAClB,MAAM;sBACA,MAAM;;;GA+E1B"}
1
+ {"version":3,"file":"fundedCallSpread.d.ts","sourceRoot":"","sources":["fundedCallSpread.js"],"names":[],"mappings":"AAaA;;GAEG;AAEH;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAsCG;AAEH;;;;;;;;;GASG;AACH;kBARiB,MAAM;kBACN,MAAM;sBACF,MAAM;;gBAEZ,MAAM;sBACA,MAAM;;;GA8E1B;oCAhIgC,4BAA4B"}
@@ -1,4 +1,4 @@
1
- import './types.js';
1
+ /// <reference path="./types-ambient.js" />
2
2
 
3
3
  import { makePromiseKit } from '@endo/promise-kit';
4
4
  import { E } from '@endo/eventual-send';
@@ -7,11 +7,14 @@ import {
7
7
  assertProposalShape,
8
8
  depositToSeat,
9
9
  assertNatAssetKind,
10
- atomicRearrange,
11
10
  } from '../../contractSupport/index.js';
12
11
  import { makePayoffHandler } from './payoffHandler.js';
13
12
  import { Position } from './position.js';
14
13
 
14
+ /**
15
+ * @import {PriceAuthority} from '@agoric/zoe/tools/types.js';
16
+ */
17
+
15
18
  /**
16
19
  * This contract implements a fully collateralized call spread. This is a
17
20
  * combination of a call option bought at one strike price and a second call
@@ -112,8 +115,7 @@ const start = async zcf => {
112
115
  give: { Collateral: null },
113
116
  want: { LongOption: null, ShortOption: null },
114
117
  });
115
- atomicRearrange(
116
- zcf,
118
+ zcf.atomicRearrange(
117
119
  harden([
118
120
  [creatorSeat, collateralSeat, { Collateral: settlementAmount }],
119
121
  [
@@ -1 +1 @@
1
- {"version":3,"file":"payoffHandler.d.ts","sourceRoot":"","sources":["payoffHandler.js"],"names":[],"mappings":"AAYA;;;;;;;;GAQG;AACH,uCALW,IAAI,OAAO,MAAM,EAAE,GAAG,CAAC,CAAC,mBACxB,OAAO,YAAY,EAAC,cAAc,OAAO,CAAC,CAAC,kBAC3C,OAAO,GACL,aAAa,CAgEzB"}
1
+ {"version":3,"file":"payoffHandler.d.ts","sourceRoot":"","sources":["payoffHandler.js"],"names":[],"mappings":"AAaA;;;;;;;;GAQG;AACH,uCALW,GAAG,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC,mBACxB,MAAM,CAAC,YAAY,EAAC,aAAa,CAAC,OAAO,CAAC,CAAC,kBAC3C,OAAO,GACL,aAAa,CAgEzB"}
@@ -1,4 +1,5 @@
1
- import './types.js';
1
+ /* eslint @typescript-eslint/no-floating-promises: "warn" */
2
+ /// <reference path="./types-ambient.js" />
2
3
 
3
4
  import { E } from '@endo/eventual-send';
4
5
  import { AmountMath } from '@agoric/ertp';
@@ -1,5 +1,3 @@
1
- /** @type {Make100Percent} */
2
- export function make100Percent(brand: Brand<AssetKind>): Ratio;
3
- /** @type {Make0Percent} */
4
- export function make0Percent(brand: Brand<AssetKind>): Ratio;
1
+ export function make100Percent(brand: Brand): Ratio;
2
+ export function make0Percent(brand: Brand): Ratio;
5
3
  //# sourceMappingURL=percent.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"percent.d.ts","sourceRoot":"","sources":["percent.js"],"names":[],"mappings":"AAMA,6BAA6B;AAC7B,+DAEC;AAED,2BAA2B;AAC3B,6DAEC"}
1
+ {"version":3,"file":"percent.d.ts","sourceRoot":"","sources":["percent.js"],"names":[],"mappings":"sCAemgC,KAAK;oCAA0E,KAAK"}
@@ -4,7 +4,7 @@
4
4
  * @type {{ LONG: 'long', SHORT: 'short' }}
5
5
  */
6
6
  export const Position: {
7
- LONG: 'long';
8
- SHORT: 'short';
7
+ LONG: "long";
8
+ SHORT: "short";
9
9
  };
10
10
  //# sourceMappingURL=position.d.ts.map
@@ -44,23 +44,24 @@
44
44
  * }>} zcf
45
45
  */
46
46
  export function start(zcf: ZCF<{
47
- strikePrice1: Amount<'nat'>;
48
- strikePrice2: Amount<'nat'>;
49
- settlementAmount: Amount<'nat'>;
47
+ strikePrice1: Amount<"nat">;
48
+ strikePrice2: Amount<"nat">;
49
+ settlementAmount: Amount<"nat">;
50
50
  priceAuthority: PriceAuthority;
51
51
  expiration: bigint;
52
- underlyingAmount: Amount<'nat'>;
52
+ underlyingAmount: Amount<"nat">;
53
53
  }>): {
54
54
  creatorFacet: {
55
55
  makeInvitationPair: (longCollateralShare: any) => {
56
56
  longInvitation: Promise<Invitation<unknown, never>>;
57
57
  shortInvitation: Promise<Invitation<unknown, never>>;
58
58
  };
59
- } & import("@endo/eventual-send").RemotableBrand<{}, {
59
+ } & import("@endo/marshal").RemotableObject<`Alleged: ${string}`> & import("@endo/eventual-send").RemotableBrand<{}, {
60
60
  makeInvitationPair: (longCollateralShare: any) => {
61
61
  longInvitation: Promise<Invitation<unknown, never>>;
62
62
  shortInvitation: Promise<Invitation<unknown, never>>;
63
63
  };
64
64
  }>;
65
65
  };
66
+ import type { PriceAuthority } from '@agoric/zoe/tools/types.js';
66
67
  //# sourceMappingURL=pricedCallSpread.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"pricedCallSpread.d.ts","sourceRoot":"","sources":["pricedCallSpread.js"],"names":[],"mappings":"AAsBA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4CG;AACH;kBARiB,OAAO,KAAK,CAAC;kBACb,OAAO,KAAK,CAAC;sBACT,OAAO,KAAK,CAAC;oBACf,cAAc;gBAClB,MAAM;sBACA,OAAO,KAAK,CAAC;;;;;;;;;;;;;EA2GjC"}
1
+ {"version":3,"file":"pricedCallSpread.d.ts","sourceRoot":"","sources":["pricedCallSpread.js"],"names":[],"mappings":"AA0BA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4CG;AACH;kBARiB,MAAM,CAAC,KAAK,CAAC;kBACb,MAAM,CAAC,KAAK,CAAC;sBACT,MAAM,CAAC,KAAK,CAAC;;gBAEnB,MAAM;sBACA,MAAM,CAAC,KAAK,CAAC;;;;;;;;;;;;;EA2GjC;oCA7J4F,4BAA4B"}
@@ -1,4 +1,5 @@
1
- import './types.js';
1
+ /* eslint @typescript-eslint/no-floating-promises: "warn" */
2
+ /// <reference path="./types-ambient.js" />
2
3
 
3
4
  import { makePromiseKit } from '@endo/promise-kit';
4
5
  import { E } from '@endo/eventual-send';
@@ -10,11 +11,14 @@ import {
10
11
  assertNatAssetKind,
11
12
  makeRatio,
12
13
  ceilMultiplyBy,
13
- atomicRearrange,
14
14
  } from '../../contractSupport/index.js';
15
15
  import { makePayoffHandler } from './payoffHandler.js';
16
16
  import { Position } from './position.js';
17
17
 
18
+ /**
19
+ * @import {PriceAuthority, PriceDescription, PriceQuote, PriceQuoteValue, PriceQuery,} from '@agoric/zoe/tools/types.js';
20
+ */
21
+
18
22
  const { Fail } = assert;
19
23
 
20
24
  const PERCENT_BASE = 100n;
@@ -100,6 +104,7 @@ const start = zcf => {
100
104
  const invitationIssuer = zcf.getInvitationIssuer();
101
105
  const payment = harden({ Option: option });
102
106
  const Option = await E(invitationIssuer).getAmountOf(option);
107
+ /** @type {any} */
103
108
  const spreadAmount = harden({
104
109
  Option,
105
110
  });
@@ -132,8 +137,7 @@ const start = zcf => {
132
137
  'wanted option not a match',
133
138
  );
134
139
 
135
- atomicRearrange(
136
- zcf,
140
+ zcf.atomicRearrange(
137
141
  harden([
138
142
  [collateralSeat, depositSeat, spreadAmount],
139
143
  [depositSeat, collateralSeat, { Collateral: newCollateral }],
@@ -1,4 +1,4 @@
1
- type PositionKind = 'long' | 'short';
1
+ type PositionKind = "long" | "short";
2
2
  type MakeOptionInvitation = (positionKind: PositionKind) => Promise<Invitation>;
3
3
  type PayoffHandler = {
4
4
  schedulePayoffs: () => void;
@@ -24,7 +24,7 @@ type CalculateSharesReturn = {
24
24
  * 100% reflecting the position of the price in the range from strikePrice1 to
25
25
  * strikePrice2.
26
26
  */
27
- type CalculateShares = (collateralBrand: Brand, price: Amount<'nat'>, strikePrice1: Amount<'nat'>, strikePrice2: Amount<'nat'>) => CalculateSharesReturn;
27
+ type CalculateShares = (collateralBrand: Brand, price: Amount<"nat">, strikePrice1: Amount<"nat">, strikePrice2: Amount<"nat">) => CalculateSharesReturn;
28
28
  type Make100Percent = (brand: Brand) => Ratio;
29
29
  type Make0Percent = (brand: Brand) => Ratio;
30
- //# sourceMappingURL=types.d.ts.map
30
+ //# sourceMappingURL=types-ambient.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types-ambient.d.ts","sourceRoot":"","sources":["types-ambient.js"],"names":[],"mappings":"oBACa,MAAM,GAAG,OAAO;2CAKlB,YAAY,KACV,OAAO,CAAC,UAAU,CAAC;;qBAKlB,MAAM,IAAI;0BACT,oBAAoB;;;;;;;;eAQrB,KAAK;gBACL,KAAK;;;;;;;;;;;;;yCAcR,KAAK,SACL,MAAM,CAAC,KAAK,CAAC,gBACb,MAAM,CAAC,KAAK,CAAC,gBACb,MAAM,CAAC,KAAK,CAAC,KACX,qBAAqB;8BAKvB,KAAK,KACH,KAAK;4BAKP,KAAK,KACH,KAAK"}
@@ -13,10 +13,8 @@
13
13
  * @param {unknown} _privateArgs
14
14
  * @param {import('@agoric/vat-data').Baggage} instanceBaggage
15
15
  */
16
- export function start(zcf: ZCF, _privateArgs: unknown, instanceBaggage: MapStore<string, unknown>): Promise<{
17
- creatorFacet: {
18
- makeInvitation(): Promise<Invitation<unknown, never>>;
19
- } & import("@endo/eventual-send").RemotableBrand<{}, {
16
+ export function start(zcf: ZCF, _privateArgs: unknown, instanceBaggage: import("@agoric/vat-data").Baggage): Promise<{
17
+ creatorFacet: import("@endo/exo").Guarded<{
20
18
  makeInvitation(): Promise<Invitation<unknown, never>>;
21
19
  }>;
22
20
  }>;
@@ -1 +1 @@
1
- {"version":3,"file":"coveredCall-durable.d.ts","sourceRoot":"","sources":["coveredCall-durable.js"],"names":[],"mappings":"AASA;;;;;;;;;;;;;;GAcG;AACH,2BAJW,GAAG,gBACH,OAAO;;;;;;GA8EjB"}
1
+ {"version":3,"file":"coveredCall-durable.d.ts","sourceRoot":"","sources":["coveredCall-durable.js"],"names":[],"mappings":"AASA;;;;;;;;;;;;;;GAcG;AACH,2BAJW,GAAG,gBACH,OAAO,mBACP,OAAO,kBAAkB,EAAE,OAAO;;;;GA6E5C"}
@@ -1,4 +1,4 @@
1
- import './types.js';
1
+ /// <reference path="./types-ambient.js" />
2
2
  // eslint-disable-next-line no-restricted-syntax
3
- import './loan/types.js';
4
- import './callSpread/types.js';
3
+ import './loan/types-ambient.js';
4
+ import './callSpread/types-ambient.js';
@@ -1 +1 @@
1
- {"version":3,"file":"borrow.d.ts","sourceRoot":"","sources":["borrow.js"],"names":[],"mappings":"AAmBA,mCAAmC;AACnC,mCADW,oBAAoB,CAkI7B"}
1
+ {"version":3,"file":"borrow.d.ts","sourceRoot":"","sources":["borrow.js"],"names":[],"mappings":"AAkBA,mCAAmC;AACnC,mCADW,oBAAoB,CAsI7B"}
@@ -9,7 +9,6 @@ import {
9
9
  getAmountOut,
10
10
  ceilMultiplyBy,
11
11
  getTimestamp,
12
- atomicRearrange,
13
12
  } from '../../contractSupport/index.js';
14
13
 
15
14
  import { scheduleLiquidation } from './scheduleLiquidation.js';
@@ -38,7 +37,12 @@ export const makeBorrowInvitation = (zcf, config) => {
38
37
  want: { Loan: null },
39
38
  });
40
39
 
41
- const collateralGiven = borrowerSeat.getAmountAllocated('Collateral');
40
+ const collateralGiven = borrowerSeat.getAmountAllocated(
41
+ 'Collateral',
42
+ /** @type {Brand<'nat'>} */ (
43
+ borrowerSeat.getProposal().give.Collateral.brand
44
+ ),
45
+ );
42
46
  const loanWanted = borrowerSeat.getProposal().want.Loan;
43
47
  const loanBrand = zcf.getTerms().brands.Loan;
44
48
 
@@ -72,8 +76,7 @@ export const makeBorrowInvitation = (zcf, config) => {
72
76
 
73
77
  const { zcfSeat: collateralSeat } = zcf.makeEmptySeatKit();
74
78
 
75
- atomicRearrange(
76
- zcf,
79
+ zcf.atomicRearrange(
77
80
  harden([
78
81
  // Transfer the wanted Loan amount to the borrower
79
82
  [lenderSeat, borrowerSeat, { Loan: loanWanted }],
@@ -1 +1 @@
1
- {"version":3,"file":"close.d.ts","sourceRoot":"","sources":["close.js"],"names":[],"mappings":"AAeA,sCAAsC;AACtC,sCADW,uBAAuB,CAkDhC"}
1
+ {"version":3,"file":"close.d.ts","sourceRoot":"","sources":["close.js"],"names":[],"mappings":"AAYA,sCAAsC;AACtC,sCADW,uBAAuB,CAiDhC"}
@@ -1,12 +1,9 @@
1
- import './types.js';
1
+ /// <reference path="./types-ambient.js" />
2
2
 
3
3
  import { Fail } from '@agoric/assert';
4
4
  import { AmountMath } from '@agoric/ertp';
5
5
 
6
- import {
7
- assertProposalShape,
8
- atomicRearrange,
9
- } from '../../contractSupport/index.js';
6
+ import { assertProposalShape } from '../../contractSupport/index.js';
10
7
 
11
8
  // The debt, the amount which must be repaid, is just the amount
12
9
  // loaned plus interest (aka stability fee). All debt must be repaid
@@ -44,8 +41,7 @@ export const makeCloseLoanInvitation = (zcf, config) => {
44
41
  'Collateral',
45
42
  collateralBrand,
46
43
  );
47
- atomicRearrange(
48
- zcf,
44
+ zcf.atomicRearrange(
49
45
  harden([
50
46
  [collateralSeat, repaySeat, { Collateral: collateralAmount }],
51
47
  [repaySeat, lenderSeat, { Loan: debt }],
@@ -1,3 +1,6 @@
1
+ /**
2
+ * @import {PriceAuthority, PriceDescription, PriceQuote, PriceQuoteValue, PriceQuery,} from '@agoric/zoe/tools/types.js';
3
+ */
1
4
  /**
2
5
  * Add collateral of a particular brand and get a loan of another
3
6
  * brand. Collateral (also known as margin) must be greater than the
@@ -59,6 +62,7 @@ export function start(zcf: ZCF<{
59
62
  interestRate: Ratio;
60
63
  interestPeriod: bigint;
61
64
  }>): Promise<{
62
- creatorInvitation: Promise<Invitation<unknown, never>>;
65
+ creatorInvitation: Promise<Invitation<unknown, undefined>>;
63
66
  }>;
67
+ import type { PriceAuthority } from '@agoric/zoe/tools/types.js';
64
68
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.js"],"names":[],"mappings":"AAQA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAoDG;AACH;SARU,KAAK;sBACQ,QAAQ;oBACV,cAAc;oBACd,cAAc;kBAChB,KAAK;oBACH,MAAM;;;GAuC1B"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.js"],"names":[],"mappings":"AAQA;;GAEG;AAEH;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAoDG;AACH;SARU,KAAK;sBACQ,QAAQ;;oBAEV,cAAc;kBAChB,KAAK;oBACH,MAAM;;;GAuC1B;oCA5F4F,4BAA4B"}
@@ -6,6 +6,10 @@ import {
6
6
  } from '../../contractSupport/index.js';
7
7
  import { makeLendInvitation } from './lend.js';
8
8
 
9
+ /**
10
+ * @import {PriceAuthority, PriceDescription, PriceQuote, PriceQuoteValue, PriceQuery,} from '@agoric/zoe/tools/types.js';
11
+ */
12
+
9
13
  /**
10
14
  * Add collateral of a particular brand and get a loan of another
11
15
  * brand. Collateral (also known as margin) must be greater than the
@@ -1,14 +1,3 @@
1
1
  export function doLiquidation(zcf: any, collateralSeat: any, autoswapPublicFacetP: any, lenderSeat: any, loanBrand: any): Promise<void>;
2
- /**
3
- * This function is triggered by the priceAuthority when the value of the
4
- * collateral is below the mmr. The function performs the
5
- * liquidation and then shuts down the contract. Note that if a
6
- * liquidation occurs, the borrower gets nothing and they can take no
7
- * further action.
8
- *
9
- * For simplicity, we will sell all collateral.
10
- *
11
- * @type {Liquidate}
12
- */
13
- export const liquidate: Liquidate;
2
+ export function liquidate(zcf: ZCF, config: LoanConfigWithBorrower): Promise<void>;
14
3
  //# sourceMappingURL=liquidate.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"liquidate.d.ts","sourceRoot":"","sources":["liquidate.js"],"names":[],"mappings":"AAKO,wIA6CN;AAED;;;;;;;;;;GAUG;AACH,wBAFU,SAAS,CAiBjB"}
1
+ {"version":3,"file":"liquidate.d.ts","sourceRoot":"","sources":["liquidate.js"],"names":[],"mappings":"AAKO,wIA6CN;AAeM,+BAJI,GAAG,UACH,sBAAsB,GACpB,OAAO,CAAC,IAAI,CAAC,CAiBzB"}
@@ -37,7 +37,7 @@ export const doLiquidation = async (
37
37
  zcf.shutdown('your loan had to be liquidated');
38
38
  };
39
39
 
40
- /** @type {ShutdownWithFailure} */
40
+ /** @type {import('@agoric/swingset-vat').ShutdownWithFailure} */
41
41
  const closeWithFailure = err => {
42
42
  lenderSeat.fail(err);
43
43
  collateralSeat.fail(err);
@@ -59,7 +59,9 @@ export const doLiquidation = async (
59
59
  *
60
60
  * For simplicity, we will sell all collateral.
61
61
  *
62
- * @type {Liquidate}
62
+ * @param {ZCF} zcf
63
+ * @param {LoanConfigWithBorrower} config
64
+ * @returns {Promise<void>}
63
65
  */
64
66
  export const liquidate = async (zcf, config) => {
65
67
  const { collateralSeat, autoswapInstance, lenderSeat, loanBrand } = config;
@@ -1 +1 @@
1
- {"version":3,"file":"scheduleLiquidation.d.ts","sourceRoot":"","sources":["scheduleLiquidation.js"],"names":[],"mappings":"AAUA,kCAAkC;AAClC,kCADW,mBAAmB,CAsD5B"}
1
+ {"version":3,"file":"scheduleLiquidation.d.ts","sourceRoot":"","sources":["scheduleLiquidation.js"],"names":[],"mappings":"AAWA,kCAAkC;AAClC,kCADW,mBAAmB,CAsD5B"}
@@ -1,3 +1,4 @@
1
+ /* eslint @typescript-eslint/no-floating-promises: "warn" */
1
2
  import { E } from '@endo/eventual-send';
2
3
  import { AmountMath } from '@agoric/ertp';
3
4