agoric 0.21.2-dev-ae21a7e.0 → 0.21.2-dev-afcbcd7.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",
3
- "version": "0.21.2-dev-ae21a7e.0+ae21a7e",
3
+ "version": "0.21.2-dev-afcbcd7.0+afcbcd7",
4
4
  "description": "Manage the Agoric Javascript smart contract platform",
5
5
  "type": "module",
6
6
  "main": "src/main.js",
@@ -28,29 +28,29 @@
28
28
  "lint:eslint": "eslint ."
29
29
  },
30
30
  "devDependencies": {
31
- "@agoric/cosmic-swingset": "0.41.4-dev-ae21a7e.0+ae21a7e",
32
- "@agoric/deploy-script-support": "0.10.4-dev-ae21a7e.0+ae21a7e",
31
+ "@agoric/cosmic-swingset": "0.41.4-dev-afcbcd7.0+afcbcd7",
32
+ "@agoric/deploy-script-support": "0.10.4-dev-afcbcd7.0+afcbcd7",
33
33
  "ava": "^5.3.0",
34
34
  "c8": "^7.13.0",
35
35
  "dd-trace": "^4.11.1"
36
36
  },
37
37
  "dependencies": {
38
- "@agoric/access-token": "0.4.22-dev-ae21a7e.0+ae21a7e",
39
- "@agoric/assert": "0.6.1-dev-ae21a7e.0+ae21a7e",
40
- "@agoric/cache": "0.3.3-dev-ae21a7e.0+ae21a7e",
41
- "@agoric/casting": "0.4.3-dev-ae21a7e.0+ae21a7e",
42
- "@agoric/cosmic-proto": "0.3.1-dev-ae21a7e.0+ae21a7e",
43
- "@agoric/ertp": "0.16.3-dev-ae21a7e.0+ae21a7e",
44
- "@agoric/governance": "0.10.4-dev-ae21a7e.0+ae21a7e",
45
- "@agoric/inter-protocol": "0.16.2-dev-ae21a7e.0+ae21a7e",
46
- "@agoric/internal": "0.3.3-dev-ae21a7e.0+ae21a7e",
47
- "@agoric/network": "0.1.1-dev-ae21a7e.0+ae21a7e",
48
- "@agoric/smart-wallet": "0.5.4-dev-ae21a7e.0+ae21a7e",
49
- "@agoric/store": "0.9.3-dev-ae21a7e.0+ae21a7e",
50
- "@agoric/swingset-vat": "0.32.3-dev-ae21a7e.0+ae21a7e",
51
- "@agoric/vats": "0.15.2-dev-ae21a7e.0+ae21a7e",
52
- "@agoric/zoe": "0.26.3-dev-ae21a7e.0+ae21a7e",
53
- "@agoric/zone": "0.2.3-dev-ae21a7e.0+ae21a7e",
38
+ "@agoric/access-token": "0.4.22-dev-afcbcd7.0+afcbcd7",
39
+ "@agoric/assert": "0.6.1-dev-afcbcd7.0+afcbcd7",
40
+ "@agoric/cache": "0.3.3-dev-afcbcd7.0+afcbcd7",
41
+ "@agoric/casting": "0.4.3-dev-afcbcd7.0+afcbcd7",
42
+ "@agoric/cosmic-proto": "0.3.1-dev-afcbcd7.0+afcbcd7",
43
+ "@agoric/ertp": "0.16.3-dev-afcbcd7.0+afcbcd7",
44
+ "@agoric/governance": "0.10.4-dev-afcbcd7.0+afcbcd7",
45
+ "@agoric/inter-protocol": "0.16.2-dev-afcbcd7.0+afcbcd7",
46
+ "@agoric/internal": "0.3.3-dev-afcbcd7.0+afcbcd7",
47
+ "@agoric/network": "0.1.1-dev-afcbcd7.0+afcbcd7",
48
+ "@agoric/smart-wallet": "0.5.4-dev-afcbcd7.0+afcbcd7",
49
+ "@agoric/store": "0.9.3-dev-afcbcd7.0+afcbcd7",
50
+ "@agoric/swingset-vat": "0.32.3-dev-afcbcd7.0+afcbcd7",
51
+ "@agoric/vats": "0.15.2-dev-afcbcd7.0+afcbcd7",
52
+ "@agoric/zoe": "0.26.3-dev-afcbcd7.0+afcbcd7",
53
+ "@agoric/zone": "0.2.3-dev-afcbcd7.0+afcbcd7",
54
54
  "@confio/relayer": "^0.9.0",
55
55
  "@cosmjs/crypto": "^0.30.1",
56
56
  "@cosmjs/encoding": "^0.30.1",
@@ -95,5 +95,8 @@
95
95
  "timeout": "2m",
96
96
  "workerThreads": false
97
97
  },
98
- "gitHead": "ae21a7ea4f28e41bab2278e38458a746abc4114f"
98
+ "typeCoverage": {
99
+ "atLeast": 77.53
100
+ },
101
+ "gitHead": "afcbcd727d7c9a4c6330d619c7846c9963b1e25a"
99
102
  }
@@ -11,11 +11,6 @@ import { Offers } from '@agoric/inter-protocol/src/clientSupport.js';
11
11
  import { objectMap } from '@agoric/internal';
12
12
  import { M, matches } from '@agoric/store';
13
13
 
14
- // XXX scare away ambient type zombies to fix ScheduleNotification.activeStartTime etc.
15
- // https://github.com/Agoric/agoric-sdk/issues/6512
16
- // https://github.com/Agoric/agoric-sdk/issues/6343
17
- import '@agoric/inter-protocol/src/vaultFactory/types.js';
18
-
19
14
  import { normalizeAddressWithOptions, pollBlocks } from '../lib/chain.js';
20
15
  import {
21
16
  asBoardRemote,
package/src/helpers.js CHANGED
@@ -41,6 +41,7 @@ export const makePspawn = ({
41
41
  * @param {string} cmd command name to run
42
42
  * @param {Array<string>} cargs arguments to the command
43
43
  * @param {object} param2
44
+ * @param {string} [param2.cwd]
44
45
  * @param {string | [string, string, string]} [param2.stdio] standard IO
45
46
  * specification
46
47
  * @param {Record<string, string | undefined>} [param2.env] environment
package/src/init.js CHANGED
@@ -1,11 +1,9 @@
1
1
  import chalk from 'chalk';
2
2
  import { makePspawn } from './helpers.js';
3
3
 
4
- // Ambient types. Needed only for dev but this does a runtime import.
5
- // https://github.com/Agoric/agoric-sdk/issues/6512
6
- import '@endo/captp/src/types.js';
7
- import '@agoric/swingset-vat/exported.js';
8
- import '@agoric/network/exported.js';
4
+ /// <reference types="@endo/captp/src/types.js" />
5
+ /// <reference types="@agoric/swingset-vat/exported.js" />
6
+ /// <reference types="@agoric/network/exported.js" />
9
7
 
10
8
  // Use either an absolute template URL, or find it relative to DAPP_URL_BASE.
11
9
  const gitURL = (relativeOrAbsoluteURL, base) => {
package/src/lib/format.js CHANGED
@@ -1,7 +1,5 @@
1
1
  // @ts-check
2
2
 
3
- // ambient types
4
- import '@agoric/ertp/src/types-ambient.js';
5
3
  import { makeBoardRemote } from '@agoric/vats/tools/board-utils.js';
6
4
 
7
5
  /** @typedef {import('@agoric/vats/tools/board-utils.js').BoardRemote} BoardRemote */