@agoric/builders 0.1.1-dev-73364fa.0 → 0.1.1-dev-8604b01.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 +18 -18
- package/scripts/vats/restart-vats.js +2 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agoric/builders",
|
|
3
|
-
"version": "0.1.1-dev-
|
|
3
|
+
"version": "0.1.1-dev-8604b01.0+8604b01",
|
|
4
4
|
"description": "Build scripts for proposals to an Agoric chain",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./index.js",
|
|
@@ -23,14 +23,14 @@
|
|
|
23
23
|
"author": "Agoric",
|
|
24
24
|
"license": "Apache-2.0",
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@agoric/ertp": "0.16.3-dev-
|
|
27
|
-
"@agoric/internal": "0.3.3-dev-
|
|
28
|
-
"@agoric/network": "0.1.1-dev-
|
|
29
|
-
"@agoric/notifier": "0.6.3-dev-
|
|
30
|
-
"@agoric/smart-wallet": "0.5.4-dev-
|
|
31
|
-
"@agoric/vat-data": "0.5.3-dev-
|
|
32
|
-
"@agoric/vats": "0.15.2-dev-
|
|
33
|
-
"@agoric/zoe": "0.26.3-dev-
|
|
26
|
+
"@agoric/ertp": "0.16.3-dev-8604b01.0+8604b01",
|
|
27
|
+
"@agoric/internal": "0.3.3-dev-8604b01.0+8604b01",
|
|
28
|
+
"@agoric/network": "0.1.1-dev-8604b01.0+8604b01",
|
|
29
|
+
"@agoric/notifier": "0.6.3-dev-8604b01.0+8604b01",
|
|
30
|
+
"@agoric/smart-wallet": "0.5.4-dev-8604b01.0+8604b01",
|
|
31
|
+
"@agoric/vat-data": "0.5.3-dev-8604b01.0+8604b01",
|
|
32
|
+
"@agoric/vats": "0.15.2-dev-8604b01.0+8604b01",
|
|
33
|
+
"@agoric/zoe": "0.26.3-dev-8604b01.0+8604b01",
|
|
34
34
|
"@endo/bundle-source": "^3.0.1",
|
|
35
35
|
"@endo/captp": "^4.0.1",
|
|
36
36
|
"@endo/eventual-send": "^1.0.1",
|
|
@@ -42,14 +42,14 @@
|
|
|
42
42
|
"import-meta-resolve": "^2.2.1"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
|
-
"@agoric/assert": "0.6.1-dev-
|
|
46
|
-
"@agoric/deploy-script-support": "0.10.4-dev-
|
|
47
|
-
"@agoric/governance": "0.10.4-dev-
|
|
48
|
-
"@agoric/inter-protocol": "0.16.2-dev-
|
|
49
|
-
"@agoric/store": "0.9.3-dev-
|
|
50
|
-
"@agoric/swing-store": "0.9.2-dev-
|
|
51
|
-
"@agoric/swingset-liveslots": "0.10.3-dev-
|
|
52
|
-
"@agoric/time": "0.3.3-dev-
|
|
45
|
+
"@agoric/assert": "0.6.1-dev-8604b01.0+8604b01",
|
|
46
|
+
"@agoric/deploy-script-support": "0.10.4-dev-8604b01.0+8604b01",
|
|
47
|
+
"@agoric/governance": "0.10.4-dev-8604b01.0+8604b01",
|
|
48
|
+
"@agoric/inter-protocol": "0.16.2-dev-8604b01.0+8604b01",
|
|
49
|
+
"@agoric/store": "0.9.3-dev-8604b01.0+8604b01",
|
|
50
|
+
"@agoric/swing-store": "0.9.2-dev-8604b01.0+8604b01",
|
|
51
|
+
"@agoric/swingset-liveslots": "0.10.3-dev-8604b01.0+8604b01",
|
|
52
|
+
"@agoric/time": "0.3.3-dev-8604b01.0+8604b01",
|
|
53
53
|
"ava": "^5.3.0",
|
|
54
54
|
"c8": "^7.13.0"
|
|
55
55
|
},
|
|
@@ -81,5 +81,5 @@
|
|
|
81
81
|
"typeCoverage": {
|
|
82
82
|
"atLeast": 67.05
|
|
83
83
|
},
|
|
84
|
-
"gitHead": "
|
|
84
|
+
"gitHead": "8604b011b072d7bef43df59c075bcff9582b8804"
|
|
85
85
|
}
|
|
@@ -9,6 +9,8 @@ export const defaultProposalBuilder = async () => {
|
|
|
9
9
|
'feeDistributor',
|
|
10
10
|
// skip so vaultManager can have prices upon restart; these have been tested as restartable
|
|
11
11
|
'scaledPriceAuthority-ATOM',
|
|
12
|
+
// If this is killed, and the above is left alive, quoteNotifier throws
|
|
13
|
+
'ATOM-USD_price_feed',
|
|
12
14
|
];
|
|
13
15
|
|
|
14
16
|
return harden({
|