@agoric/inter-protocol 0.16.2-dev-e393fda.0 → 0.16.2-dev-9db2909.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/inter-protocol",
3
- "version": "0.16.2-dev-e393fda.0+e393fda",
3
+ "version": "0.16.2-dev-9db2909.0+9db2909",
4
4
  "description": "Core cryptoeconomy contracts",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
@@ -31,16 +31,16 @@
31
31
  },
32
32
  "homepage": "https://github.com/Agoric/agoric-sdk#readme",
33
33
  "dependencies": {
34
- "@agoric/ertp": "0.16.3-dev-e393fda.0+e393fda",
35
- "@agoric/governance": "0.10.4-dev-e393fda.0+e393fda",
36
- "@agoric/internal": "0.3.3-dev-e393fda.0+e393fda",
37
- "@agoric/notifier": "0.6.3-dev-e393fda.0+e393fda",
38
- "@agoric/store": "0.9.3-dev-e393fda.0+e393fda",
39
- "@agoric/time": "0.3.3-dev-e393fda.0+e393fda",
40
- "@agoric/vat-data": "0.5.3-dev-e393fda.0+e393fda",
41
- "@agoric/vats": "0.15.2-dev-e393fda.0+e393fda",
42
- "@agoric/zoe": "0.26.3-dev-e393fda.0+e393fda",
43
- "@agoric/zone": "0.2.3-dev-e393fda.0+e393fda",
34
+ "@agoric/ertp": "0.16.3-dev-9db2909.0+9db2909",
35
+ "@agoric/governance": "0.10.4-dev-9db2909.0+9db2909",
36
+ "@agoric/internal": "0.3.3-dev-9db2909.0+9db2909",
37
+ "@agoric/notifier": "0.6.3-dev-9db2909.0+9db2909",
38
+ "@agoric/store": "0.9.3-dev-9db2909.0+9db2909",
39
+ "@agoric/time": "0.3.3-dev-9db2909.0+9db2909",
40
+ "@agoric/vat-data": "0.5.3-dev-9db2909.0+9db2909",
41
+ "@agoric/vats": "0.15.2-dev-9db2909.0+9db2909",
42
+ "@agoric/zoe": "0.26.3-dev-9db2909.0+9db2909",
43
+ "@agoric/zone": "0.2.3-dev-9db2909.0+9db2909",
44
44
  "@endo/captp": "^4.4.4",
45
45
  "@endo/errors": "^1.2.9",
46
46
  "@endo/eventual-send": "^1.3.0",
@@ -51,9 +51,9 @@
51
51
  "jessie.js": "^0.3.4"
52
52
  },
53
53
  "devDependencies": {
54
- "@agoric/smart-wallet": "0.5.4-dev-e393fda.0+e393fda",
55
- "@agoric/swingset-liveslots": "0.10.3-dev-e393fda.0+e393fda",
56
- "@agoric/swingset-vat": "0.32.3-dev-e393fda.0+e393fda",
54
+ "@agoric/smart-wallet": "0.5.4-dev-9db2909.0+9db2909",
55
+ "@agoric/swingset-liveslots": "0.10.3-dev-9db2909.0+9db2909",
56
+ "@agoric/swingset-vat": "0.32.3-dev-9db2909.0+9db2909",
57
57
  "@endo/bundle-source": "^3.5.1",
58
58
  "@endo/init": "^1.1.8",
59
59
  "@endo/promise-kit": "^1.1.9",
@@ -84,5 +84,5 @@
84
84
  "typeCoverage": {
85
85
  "atLeast": 95.62
86
86
  },
87
- "gitHead": "e393fda2039f1b32543bf529a846d626319233df"
87
+ "gitHead": "9db2909eafccc0d8df19258508ec58966e3eb3f8"
88
88
  }
@@ -159,8 +159,8 @@ harden(replaceFeeDistributor);
159
159
 
160
160
  const t = 'replaceFeeDistributor';
161
161
  export const getManifestForReplaceFeeDistributor = async (
162
- _,
163
- feeDistributorOptions,
162
+ { restoreRef },
163
+ { feeDistributorRef, ...feeDistributorOptions },
164
164
  ) => ({
165
165
  manifest: {
166
166
  [replaceFeeDistributor.name]: {
@@ -191,5 +191,8 @@ export const getManifestForReplaceFeeDistributor = async (
191
191
  },
192
192
  },
193
193
  },
194
+ installations: {
195
+ feeDistributor: restoreRef(feeDistributorRef),
196
+ },
194
197
  options: { ...feeDistributorOptions },
195
198
  });