@agoric/inter-protocol 0.16.2-u13.0 → 0.16.2-upgrade-14-dev-0a0580c.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-u13.0",
3
+ "version": "0.16.2-upgrade-14-dev-0a0580c.0+0a0580c",
4
4
  "description": "Core cryptoeconomy contracts",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
@@ -29,16 +29,16 @@
29
29
  },
30
30
  "homepage": "https://github.com/Agoric/agoric-sdk#readme",
31
31
  "dependencies": {
32
- "@agoric/assert": "^0.6.1-u11wf.0",
33
- "@agoric/ertp": "^0.16.3-u13.0",
34
- "@agoric/governance": "^0.10.4-u13.0",
35
- "@agoric/internal": "^0.4.0-u13.0",
36
- "@agoric/notifier": "^0.6.3-u13.0",
37
- "@agoric/store": "^0.9.3-u13.0",
38
- "@agoric/time": "^0.3.3-u13.0",
39
- "@agoric/vat-data": "^0.5.3-u13.0",
40
- "@agoric/vats": "^0.15.2-u13.0",
41
- "@agoric/zoe": "^0.26.3-u13.0",
32
+ "@agoric/assert": "0.6.1-upgrade-14-dev-0a0580c.0+0a0580c",
33
+ "@agoric/ertp": "0.16.3-upgrade-14-dev-0a0580c.0+0a0580c",
34
+ "@agoric/governance": "0.10.4-upgrade-14-dev-0a0580c.0+0a0580c",
35
+ "@agoric/internal": "0.4.0-upgrade-14-dev-0a0580c.0+0a0580c",
36
+ "@agoric/notifier": "0.6.3-upgrade-14-dev-0a0580c.0+0a0580c",
37
+ "@agoric/store": "0.9.3-upgrade-14-dev-0a0580c.0+0a0580c",
38
+ "@agoric/time": "0.3.3-upgrade-14-dev-0a0580c.0+0a0580c",
39
+ "@agoric/vat-data": "0.5.3-upgrade-14-dev-0a0580c.0+0a0580c",
40
+ "@agoric/vats": "0.15.2-upgrade-14-dev-0a0580c.0+0a0580c",
41
+ "@agoric/zoe": "0.26.3-upgrade-14-dev-0a0580c.0+0a0580c",
42
42
  "@endo/captp": "3.1.1",
43
43
  "@endo/eventual-send": "0.17.2",
44
44
  "@endo/far": "0.2.18",
@@ -47,10 +47,10 @@
47
47
  "jessie.js": "^0.3.2"
48
48
  },
49
49
  "devDependencies": {
50
- "@agoric/deploy-script-support": "^0.10.4-u13.0",
51
- "@agoric/smart-wallet": "^0.5.4-u13.0",
52
- "@agoric/swingset-liveslots": "^0.10.3-u13.0",
53
- "@agoric/swingset-vat": "^0.32.3-u13.0",
50
+ "@agoric/deploy-script-support": "0.10.4-upgrade-14-dev-0a0580c.0+0a0580c",
51
+ "@agoric/smart-wallet": "0.5.4-upgrade-14-dev-0a0580c.0+0a0580c",
52
+ "@agoric/swingset-liveslots": "0.10.3-upgrade-14-dev-0a0580c.0+0a0580c",
53
+ "@agoric/swingset-vat": "0.32.3-upgrade-14-dev-0a0580c.0+0a0580c",
54
54
  "@endo/bundle-source": "2.5.2-upstream-rollup",
55
55
  "@endo/init": "0.5.56",
56
56
  "@endo/promise-kit": "0.2.56",
@@ -77,5 +77,5 @@
77
77
  "publishConfig": {
78
78
  "access": "public"
79
79
  },
80
- "gitHead": "5a6cdeb0c18ae9700d706445acf402f8d1e873c3"
80
+ "gitHead": "0a0580cba9f4b41a1dc748cdd267dbcf0feed362"
81
81
  }
@@ -107,6 +107,7 @@ export default async (homeP, endowments) => {
107
107
 
108
108
  await writeCoreProposal('gov-add-collateral', defaultProposalBuilder);
109
109
  await writeCoreProposal('gov-start-psm', opts =>
110
+ // @ts-expect-error XXX makeInstallCache types
110
111
  psmProposalBuilder({ ...opts, wrapInstall: tool.wrapInstall }),
111
112
  );
112
113
  };
@@ -188,9 +188,11 @@ export default async (homeP, endowments) => {
188
188
  });
189
189
  await Promise.all([
190
190
  writeCoreProposal('gov-econ-committee', opts =>
191
+ // @ts-expect-error XXX makeInstallCache types
191
192
  committeeProposalBuilder({ ...opts, wrapInstall: tool.wrapInstall }),
192
193
  ),
193
194
  writeCoreProposal('gov-amm-vaults-etc', opts =>
195
+ // @ts-expect-error XXX makeInstallCache types
194
196
  mainProposalBuilder({ ...opts, wrapInstall: tool.wrapInstall }),
195
197
  ),
196
198
  ]);