@agoric/cosmos 0.34.2-dev-47d00ff.0 → 0.34.2-dev-d950170.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/app/upgrade.go +23 -0
- package/git-revision.txt +1 -1
- package/package.json +2 -2
package/app/upgrade.go
CHANGED
|
@@ -241,6 +241,29 @@ func makeUnreleasedUpgradeHandler(app *GaiaApp, targetUpgrade string, baseAppLeg
|
|
|
241
241
|
),
|
|
242
242
|
)
|
|
243
243
|
|
|
244
|
+
// Reserve contract needs to be upgraded for IST wind-down.
|
|
245
|
+
reserveUpgradeStep, err := buildProposalStepWithArgs(
|
|
246
|
+
"@agoric/builders/scripts/vats/upgrade-vats.js",
|
|
247
|
+
"upgradeZoeContractsProposalBuilder",
|
|
248
|
+
[]struct {
|
|
249
|
+
KitLookup []string `json:"kitLookup"`
|
|
250
|
+
BundleName string `json:"bundleName"`
|
|
251
|
+
Entrypoint string `json:"entrypoint"`
|
|
252
|
+
}{
|
|
253
|
+
{
|
|
254
|
+
KitLookup: []string{"reserveKit"},
|
|
255
|
+
BundleName: "reserve",
|
|
256
|
+
Entrypoint: "@agoric/inter-protocol/src/reserve/assetReserve.js",
|
|
257
|
+
},
|
|
258
|
+
},
|
|
259
|
+
)
|
|
260
|
+
if err != nil {
|
|
261
|
+
return module.VersionMap{}, err
|
|
262
|
+
}
|
|
263
|
+
CoreProposalSteps = append(CoreProposalSteps,
|
|
264
|
+
reserveUpgradeStep,
|
|
265
|
+
)
|
|
266
|
+
|
|
244
267
|
// terminationTargets is a slice of "$boardID:$instanceKitLabel" strings.
|
|
245
268
|
var terminationTargets []string
|
|
246
269
|
switch getVariantFromUpgradeName(targetUpgrade) {
|
package/git-revision.txt
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
d950170
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agoric/cosmos",
|
|
3
|
-
"version": "0.34.2-dev-
|
|
3
|
+
"version": "0.34.2-dev-d950170.0+d950170",
|
|
4
4
|
"description": "Connect JS to the Cosmos blockchain SDK",
|
|
5
5
|
"parsers": {
|
|
6
6
|
"js": "mjs"
|
|
@@ -41,5 +41,5 @@
|
|
|
41
41
|
"typeCoverage": {
|
|
42
42
|
"atLeast": 0
|
|
43
43
|
},
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "d9501704148a9118bc62a9d84aada966dc2deb0f"
|
|
45
45
|
}
|