@agoric/vm-config 0.1.1-upgrade-19-devnet-dev-5428c4d.0 → 0.1.1-upgrade-21-dev-07d4845.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/CHANGELOG.md CHANGED
@@ -1,24 +0,0 @@
1
- # Change Log
2
-
3
- All notable changes to this project will be documented in this file.
4
- See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
-
6
- ### 0.1.1-u19.0 (2025-02-24)
7
-
8
-
9
- ### Features
10
-
11
- * implement benchmarks for price feeds with and without liquidation. ([d864b66](https://github.com/Agoric/agoric-sdk/commit/d864b666104beccf5f5ccad222f7a5d23a5ad7d5)), closes [#8496](https://github.com/Agoric/agoric-sdk/issues/8496)
12
- * **orchestration:** add init-stakeOsmo.js to support .query tests ([b6df6c2](https://github.com/Agoric/agoric-sdk/commit/b6df6c230a902288f11f6217dbd1ca9701a9a8b6))
13
- * **orchestration:** stakeAtom delegate ([54d830f](https://github.com/Agoric/agoric-sdk/commit/54d830fd53420d3395a5d9ca3bc11e8a55a2773b))
14
- * **orchestration:** stakeAtom query balance ([9f0ae09](https://github.com/Agoric/agoric-sdk/commit/9f0ae09e389f1750c9e550d5e6893460d1e21d07))
15
- * **vat-transfer:** first cut at working proposal ([2864bd5](https://github.com/Agoric/agoric-sdk/commit/2864bd5c12300c3595df9676bcfde894dbe59b29))
16
- * **vats:** provide init-localchain ([19e5aed](https://github.com/Agoric/agoric-sdk/commit/19e5aed4e8a2aad667c04023e0aea01712ff9b9c))
17
- * vm-config package ([8b1ecad](https://github.com/Agoric/agoric-sdk/commit/8b1ecad8ab50db777bc11c3ee6fcdb37d6cb38b6))
18
-
19
-
20
- ### Bug Fixes
21
-
22
- * **cosmos:** make agd upgrade work ([1aa1d26](https://github.com/Agoric/agoric-sdk/commit/1aa1d26f05875c91fd47da1ad7386d8979f94b03))
23
- * **vm-config:** always use `init-localchain` and `init-transfer` ([870d205](https://github.com/Agoric/agoric-sdk/commit/870d2052ce1ca6778f6afa4396e01d5833b7ef38))
24
- * write-chain-info after u17 ([fc1f3ce](https://github.com/Agoric/agoric-sdk/commit/fc1f3ce1fe03bb2018edd4eb55d6561312d5fbe8))
package/README.md CHANGED
@@ -1,8 +1,8 @@
1
1
  # VM Config
2
2
 
3
- Factored out of [@agoric/vats](../vats), by way of [@agoric/boot](../boot).
3
+ Factored out of [@agoric/vats](../vats), by way of [@aglocal/boot](../boot).
4
4
 
5
- This is similar to `@agoric/boot` but because that has the integration testing of bootstrap, it depends on almost everything.
5
+ This is similar to `@aglocal/boot` but because that has the integration testing of bootstrap, it depends on almost everything.
6
6
 
7
7
  The configs themselves have no dependencies. Keeping them separate allows packages to depend on them without depending on the world.
8
8
 
@@ -1,5 +1,5 @@
1
1
  {
2
- "$comment": "This SwingSet config file (see loadSwingsetConfigFile) is designed to bring up vats to test Fast USDC. Compared to decentral-itest-orchestration-config.json, it lacks write-chain-info.",
2
+ "$comment": "This SwingSet config file (see loadSwingsetConfigFile) is designed to bring up vats to test Orchestration. To itest-orchestration it adds write-chain-info.",
3
3
  "bootstrap": "bootstrap",
4
4
  "defaultReapInterval": 1000,
5
5
  "coreProposals": [
@@ -8,6 +8,7 @@
8
8
  "@agoric/builders/scripts/vats/init-localchain.js",
9
9
  "@agoric/builders/scripts/vats/init-transfer.js",
10
10
  "@agoric/builders/scripts/vats/init-orchestration.js",
11
+ "@agoric/builders/scripts/orchestration/write-chain-info.js",
11
12
  {
12
13
  "module": "@agoric/builders/scripts/inter-protocol/init-core.js",
13
14
  "entrypoint": "defaultProposalBuilder",
@@ -140,4 +141,4 @@
140
141
  }
141
142
  },
142
143
  "defaultManagerType": "xs-worker"
143
- }
144
+ }
@@ -1,5 +1,5 @@
1
1
  {
2
- "$comment": "This SwingSet config file (see loadSwingsetConfigFile) is designed to bring up vats to test Orchestration. Comapre with decentral-itest-vaults-config.json.",
2
+ "$comment": "This SwingSet config file (see loadSwingsetConfigFile) is designed to bring up vats to test Fast USDC. Compare with decentral-itest-vaults-config.json.",
3
3
  "bootstrap": "bootstrap",
4
4
  "defaultReapInterval": 1000,
5
5
  "coreProposals": [
@@ -8,7 +8,6 @@
8
8
  "@agoric/builders/scripts/vats/init-localchain.js",
9
9
  "@agoric/builders/scripts/vats/init-transfer.js",
10
10
  "@agoric/builders/scripts/vats/init-orchestration.js",
11
- "@agoric/builders/scripts/orchestration/write-chain-info.js",
12
11
  {
13
12
  "module": "@agoric/builders/scripts/inter-protocol/init-core.js",
14
13
  "entrypoint": "defaultProposalBuilder",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agoric/vm-config",
3
- "version": "0.1.1-upgrade-19-devnet-dev-5428c4d.0+5428c4d",
3
+ "version": "0.1.1-upgrade-21-dev-07d4845.0+07d4845",
4
4
  "description": "Config to start an Agoric VM",
5
5
  "type": "module",
6
6
  "main": "./index.js",
@@ -11,16 +11,16 @@
11
11
  "test:c8": "c8 --all $C8_OPTIONS ava",
12
12
  "test:xs": "exit 0",
13
13
  "lint-fix": "yarn lint:eslint --fix",
14
- "lint": "run-s --continue-on-error lint:*",
15
- "lint:types": "tsc",
16
- "lint:eslint": "eslint ."
14
+ "lint": "yarn run -T run-s --continue-on-error 'lint:*'",
15
+ "lint:types": "yarn run -T tsc",
16
+ "lint:eslint": "yarn run -T eslint ."
17
17
  },
18
18
  "keywords": [],
19
19
  "author": "Agoric",
20
20
  "license": "Apache-2.0",
21
21
  "devDependencies": {
22
22
  "ava": "^5.3.0",
23
- "c8": "^10.1.2"
23
+ "c8": "^10.1.3"
24
24
  },
25
25
  "files": [
26
26
  "CHANGELOG.md",
@@ -35,7 +35,7 @@
35
35
  "access": "public"
36
36
  },
37
37
  "engines": {
38
- "node": "^18.12 || ^20.9"
38
+ "node": "^20.9 || ^22.11"
39
39
  },
40
40
  "ava": {
41
41
  "files": [
@@ -50,5 +50,5 @@
50
50
  "typeCoverage": {
51
51
  "atLeast": 100
52
52
  },
53
- "gitHead": "5428c4da67b53cef7ff53ba7b2a28cf6ec8f643a"
53
+ "gitHead": "07d4845c9599083aecbf807668443865d0de0498"
54
54
  }