@agoric/fast-usdc 0.1.1-dev-7efdf47.0 → 0.1.1-dev-34b85df.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/fast-usdc",
3
- "version": "0.1.1-dev-7efdf47.0+7efdf47",
3
+ "version": "0.1.1-dev-34b85df.0+34b85df",
4
4
  "description": "CLI and library for Fast USDC product",
5
5
  "type": "module",
6
6
  "files": [
@@ -23,9 +23,9 @@
23
23
  "lint:eslint": "eslint ."
24
24
  },
25
25
  "devDependencies": {
26
- "@agoric/swingset-liveslots": "0.10.3-dev-7efdf47.0+7efdf47",
27
- "@agoric/vats": "0.15.2-dev-7efdf47.0+7efdf47",
28
- "@agoric/zone": "0.2.3-dev-7efdf47.0+7efdf47",
26
+ "@agoric/swingset-liveslots": "0.10.3-dev-34b85df.0+34b85df",
27
+ "@agoric/vats": "0.15.2-dev-34b85df.0+34b85df",
28
+ "@agoric/zone": "0.2.3-dev-34b85df.0+34b85df",
29
29
  "@fast-check/ava": "^2.0.1",
30
30
  "ava": "^5.3.0",
31
31
  "c8": "^10.1.2",
@@ -33,16 +33,16 @@
33
33
  "ts-blank-space": "^0.4.4"
34
34
  },
35
35
  "dependencies": {
36
- "@agoric/client-utils": "0.1.1-dev-7efdf47.0+7efdf47",
37
- "@agoric/cosmic-proto": "0.4.1-dev-7efdf47.0+7efdf47",
38
- "@agoric/ertp": "0.16.3-dev-7efdf47.0+7efdf47",
39
- "@agoric/internal": "0.3.3-dev-7efdf47.0+7efdf47",
40
- "@agoric/notifier": "0.6.3-dev-7efdf47.0+7efdf47",
41
- "@agoric/orchestration": "0.1.1-dev-7efdf47.0+7efdf47",
42
- "@agoric/store": "0.9.3-dev-7efdf47.0+7efdf47",
43
- "@agoric/vat-data": "0.5.3-dev-7efdf47.0+7efdf47",
44
- "@agoric/vow": "0.1.1-dev-7efdf47.0+7efdf47",
45
- "@agoric/zoe": "0.26.3-dev-7efdf47.0+7efdf47",
36
+ "@agoric/client-utils": "0.1.1-dev-34b85df.0+34b85df",
37
+ "@agoric/cosmic-proto": "0.4.1-dev-34b85df.0+34b85df",
38
+ "@agoric/ertp": "0.16.3-dev-34b85df.0+34b85df",
39
+ "@agoric/internal": "0.3.3-dev-34b85df.0+34b85df",
40
+ "@agoric/notifier": "0.6.3-dev-34b85df.0+34b85df",
41
+ "@agoric/orchestration": "0.1.1-dev-34b85df.0+34b85df",
42
+ "@agoric/store": "0.9.3-dev-34b85df.0+34b85df",
43
+ "@agoric/vat-data": "0.5.3-dev-34b85df.0+34b85df",
44
+ "@agoric/vow": "0.1.1-dev-34b85df.0+34b85df",
45
+ "@agoric/zoe": "0.26.3-dev-34b85df.0+34b85df",
46
46
  "@cosmjs/proto-signing": "^0.32.4",
47
47
  "@cosmjs/stargate": "^0.32.4",
48
48
  "@endo/base64": "^1.0.9",
@@ -82,5 +82,5 @@
82
82
  "publishConfig": {
83
83
  "access": "public"
84
84
  },
85
- "gitHead": "7efdf47d7749b9a0c93dca09d51e6939f36aa260"
85
+ "gitHead": "34b85df0a3bfae28ab0ed254d5b0fe1d10a441de"
86
86
  }
@@ -28,7 +28,7 @@ const makeRatio = (numerator, numeratorBrand, denominator = 100n) =>
28
28
  */
29
29
 
30
30
  /**
31
- * Update feeConfig.variableRate to 0.5%, i.e. 5n/1000n
31
+ * Update feeConfig.variableRate to 0.1%, i.e. 1n/1000n
32
32
  *
33
33
  * @param {FeeConfig} feeConfigPre
34
34
  * @param {Brand<'nat'>} usdcBrand
@@ -38,7 +38,7 @@ const makeRatio = (numerator, numeratorBrand, denominator = 100n) =>
38
38
  const updateFeeConfig = (
39
39
  feeConfigPre,
40
40
  usdcBrand,
41
- variableRate = makeRatio(5n, usdcBrand, 1000n),
41
+ variableRate = makeRatio(1n, usdcBrand, 1000n),
42
42
  ) => harden({ ...feeConfigPre, variableRate });
43
43
 
44
44
  /**