@agoric/zoe 0.26.3-dev-bd1190d.0 → 0.26.3-dev-6f740a4.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agoric/zoe",
3
- "version": "0.26.3-dev-bd1190d.0+bd1190d",
3
+ "version": "0.26.3-dev-6f740a4.0+6f740a4",
4
4
  "description": "Zoe: the Smart Contract Framework for Offer Enforcement",
5
5
  "type": "module",
6
6
  "main": "./src/zoeService/zoe.js",
@@ -43,14 +43,14 @@
43
43
  },
44
44
  "homepage": "https://github.com/Agoric/agoric-sdk#readme",
45
45
  "dependencies": {
46
- "@agoric/assert": "0.6.1-dev-bd1190d.0+bd1190d",
47
- "@agoric/ertp": "0.16.3-dev-bd1190d.0+bd1190d",
48
- "@agoric/internal": "0.3.3-dev-bd1190d.0+bd1190d",
49
- "@agoric/notifier": "0.6.3-dev-bd1190d.0+bd1190d",
50
- "@agoric/store": "0.9.3-dev-bd1190d.0+bd1190d",
51
- "@agoric/swingset-vat": "0.32.3-dev-bd1190d.0+bd1190d",
52
- "@agoric/time": "0.3.3-dev-bd1190d.0+bd1190d",
53
- "@agoric/vat-data": "0.5.3-dev-bd1190d.0+bd1190d",
46
+ "@agoric/assert": "0.6.1-dev-6f740a4.0+6f740a4",
47
+ "@agoric/ertp": "0.16.3-dev-6f740a4.0+6f740a4",
48
+ "@agoric/internal": "0.3.3-dev-6f740a4.0+6f740a4",
49
+ "@agoric/notifier": "0.6.3-dev-6f740a4.0+6f740a4",
50
+ "@agoric/store": "0.9.3-dev-6f740a4.0+6f740a4",
51
+ "@agoric/swingset-vat": "0.32.3-dev-6f740a4.0+6f740a4",
52
+ "@agoric/time": "0.3.3-dev-6f740a4.0+6f740a4",
53
+ "@agoric/vat-data": "0.5.3-dev-6f740a4.0+6f740a4",
54
54
  "@endo/bundle-source": "^2.5.1",
55
55
  "@endo/captp": "^3.1.1",
56
56
  "@endo/eventual-send": "^0.17.2",
@@ -127,5 +127,5 @@
127
127
  "publishConfig": {
128
128
  "access": "public"
129
129
  },
130
- "gitHead": "bd1190d9ed860c9f28fbef1711aa0615c63ac00f"
130
+ "gitHead": "6f740a40710dd9f1cff8ea8dddc88cf9d6601486"
131
131
  }
@@ -27,7 +27,7 @@ const BASIS_POINTS = 10000n; // TODO change to 10_000n once tooling copes.
27
27
  * pool of the kind of asset sent in
28
28
  * @param {any} outputReserve - the value in the liquidity
29
29
  * pool of the kind of asset to be sent out
30
- * @param {bigint} [feeBasisPoints=30n] - the fee taken in
30
+ * @param {bigint} [feeBasisPoints] - the fee taken in
31
31
  * basis points. The default is 0.3% or 30 basis points. The fee
32
32
  * is taken from inputValue
33
33
  * @returns {NatValue} outputValue - the current price, in value form
@@ -66,7 +66,7 @@ export const getInputPrice = (
66
66
  * pool of the asset being spent
67
67
  * @param {any} outputReserve - the value in the liquidity
68
68
  * pool of the kind of asset to be sent out
69
- * @param {bigint} [feeBasisPoints=30n] - the fee taken in
69
+ * @param {bigint} [feeBasisPoints] - the fee taken in
70
70
  * basis points. The default is 0.3% or 30 basis points. The fee is taken from
71
71
  * outputValue
72
72
  * @returns {NatValue} inputValue - the value of input required to purchase output
@@ -305,7 +305,7 @@ const reverse = (keywordRecord = {}) => {
305
305
  * @param {ZCFSeat} fromSeat
306
306
  * The seat in contractA to take the offer payments from.
307
307
  *
308
- * @param {ZCFSeat} [toSeat=fromSeat]
308
+ * @param {ZCFSeat} [toSeat]
309
309
  * The seat in contractA to deposit the payout of the offer to.
310
310
  * If `toSeat` is not provided, this defaults to the `fromSeat`.
311
311
  *