@agoric/ertp 0.16.3-dev-a3bdfb1.0 → 0.16.3-dev-f1638f9.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/ertp",
3
- "version": "0.16.3-dev-a3bdfb1.0+a3bdfb1",
3
+ "version": "0.16.3-dev-f1638f9.0+f1638f9",
4
4
  "description": "Electronic Rights Transfer Protocol (ERTP). A smart contract framework for exchanging electronic rights",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
@@ -39,11 +39,11 @@
39
39
  },
40
40
  "homepage": "https://github.com/Agoric/agoric-sdk#readme",
41
41
  "dependencies": {
42
- "@agoric/assert": "0.6.1-dev-a3bdfb1.0+a3bdfb1",
43
- "@agoric/notifier": "0.6.3-dev-a3bdfb1.0+a3bdfb1",
44
- "@agoric/store": "0.9.3-dev-a3bdfb1.0+a3bdfb1",
45
- "@agoric/vat-data": "0.5.3-dev-a3bdfb1.0+a3bdfb1",
46
- "@agoric/zone": "0.2.3-dev-a3bdfb1.0+a3bdfb1",
42
+ "@agoric/assert": "0.6.1-dev-f1638f9.0+f1638f9",
43
+ "@agoric/notifier": "0.6.3-dev-f1638f9.0+f1638f9",
44
+ "@agoric/store": "0.9.3-dev-f1638f9.0+f1638f9",
45
+ "@agoric/vat-data": "0.5.3-dev-f1638f9.0+f1638f9",
46
+ "@agoric/zone": "0.2.3-dev-f1638f9.0+f1638f9",
47
47
  "@endo/eventual-send": "^1.2.0",
48
48
  "@endo/far": "^1.1.0",
49
49
  "@endo/marshal": "^1.4.0",
@@ -52,7 +52,7 @@
52
52
  "@endo/promise-kit": "^1.1.0"
53
53
  },
54
54
  "devDependencies": {
55
- "@agoric/swingset-vat": "0.32.3-dev-a3bdfb1.0+a3bdfb1",
55
+ "@agoric/swingset-vat": "0.32.3-dev-f1638f9.0+f1638f9",
56
56
  "@endo/bundle-source": "^3.2.1",
57
57
  "@fast-check/ava": "^1.1.5",
58
58
  "ava": "^5.3.0",
@@ -87,5 +87,5 @@
87
87
  "typeCoverage": {
88
88
  "atLeast": 90.61
89
89
  },
90
- "gitHead": "a3bdfb1c173ae46a9979322269aa45aa75c2343b"
90
+ "gitHead": "f1638f95424a0f3851e6e1d880c2a38dd14eca3d"
91
91
  }
package/src/amountMath.js CHANGED
@@ -349,8 +349,8 @@ const AmountMath = {
349
349
  isGTE(x, y, brand)
350
350
  ? y
351
351
  : isGTE(y, x, brand)
352
- ? x
353
- : Fail`${x} and ${y} are incomparable`,
352
+ ? x
353
+ : Fail`${x} and ${y} are incomparable`,
354
354
  /**
355
355
  * Returns the max value between x and y using isGTE
356
356
  *
@@ -365,8 +365,8 @@ const AmountMath = {
365
365
  isGTE(x, y, brand)
366
366
  ? x
367
367
  : isGTE(y, x)
368
- ? y
369
- : Fail`${x} and ${y} are incomparable`,
368
+ ? y
369
+ : Fail`${x} and ${y} are incomparable`,
370
370
  };
371
371
  harden(AmountMath);
372
372
 
@@ -53,12 +53,12 @@
53
53
  * @typedef {K extends 'nat'
54
54
  * ? NatValue
55
55
  * : K extends 'set'
56
- * ? SetValue
57
- * : K extends 'copySet'
58
- * ? CopySet
59
- * : K extends 'copyBag'
60
- * ? import('@endo/patterns').CopyBag
61
- * : never} AssetValueForKind
56
+ * ? SetValue
57
+ * : K extends 'copySet'
58
+ * ? CopySet
59
+ * : K extends 'copyBag'
60
+ * ? import('@endo/patterns').CopyBag
61
+ * : never} AssetValueForKind
62
62
  */
63
63
 
64
64
  /**
@@ -66,12 +66,12 @@
66
66
  * @typedef {V extends NatValue
67
67
  * ? 'nat'
68
68
  * : V extends SetValue
69
- * ? 'set'
70
- * : V extends CopySet
71
- * ? 'copySet'
72
- * : V extends import('@endo/patterns').CopyBag
73
- * ? 'copyBag'
74
- * : never} AssetKindForValue
69
+ * ? 'set'
70
+ * : V extends CopySet
71
+ * ? 'copySet'
72
+ * : V extends import('@endo/patterns').CopyBag
73
+ * ? 'copyBag'
74
+ * : never} AssetKindForValue
75
75
  */
76
76
 
77
77
  /**
package/src/types.js CHANGED
@@ -54,12 +54,12 @@ export {};
54
54
  * @typedef {K extends 'nat'
55
55
  * ? NatValue
56
56
  * : K extends 'set'
57
- * ? SetValue
58
- * : K extends 'copySet'
59
- * ? CopySet
60
- * : K extends 'copyBag'
61
- * ? import('@endo/patterns').CopyBag
62
- * : never} AssetValueForKind
57
+ * ? SetValue
58
+ * : K extends 'copySet'
59
+ * ? CopySet
60
+ * : K extends 'copyBag'
61
+ * ? import('@endo/patterns').CopyBag
62
+ * : never} AssetValueForKind
63
63
  */
64
64
 
65
65
  /**
@@ -67,12 +67,12 @@ export {};
67
67
  * @typedef {V extends NatValue
68
68
  * ? 'nat'
69
69
  * : V extends SetValue
70
- * ? 'set'
71
- * : V extends CopySet
72
- * ? 'copySet'
73
- * : V extends import('@endo/patterns').CopyBag
74
- * ? 'copyBag'
75
- * : never} AssetKindForValue
70
+ * ? 'set'
71
+ * : V extends CopySet
72
+ * ? 'copySet'
73
+ * : V extends import('@endo/patterns').CopyBag
74
+ * ? 'copyBag'
75
+ * : never} AssetKindForValue
76
76
  */
77
77
 
78
78
  /**