@agoric/pegasus 0.7.13-dev-16095c5.0 → 0.7.13-dev-980ff41.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/pegasus",
3
- "version": "0.7.13-dev-16095c5.0+16095c5",
3
+ "version": "0.7.13-dev-980ff41.0+980ff41",
4
4
  "description": "Peg-as-us contract",
5
5
  "type": "module",
6
6
  "main": "./src/pegasus.js",
@@ -28,17 +28,17 @@
28
28
  },
29
29
  "homepage": "https://github.com/Agoric/agoric-sdk#readme",
30
30
  "dependencies": {
31
- "@agoric/assert": "0.6.1-dev-16095c5.0+16095c5",
32
- "@agoric/ertp": "0.16.3-dev-16095c5.0+16095c5",
33
- "@agoric/internal": "0.3.3-dev-16095c5.0+16095c5",
34
- "@agoric/network": "0.1.1-dev-16095c5.0+16095c5",
35
- "@agoric/notifier": "0.6.3-dev-16095c5.0+16095c5",
36
- "@agoric/store": "0.9.3-dev-16095c5.0+16095c5",
37
- "@agoric/swingset-vat": "0.32.3-dev-16095c5.0+16095c5",
38
- "@agoric/vats": "0.15.2-dev-16095c5.0+16095c5",
39
- "@agoric/vow": "0.1.1-dev-16095c5.0+16095c5",
40
- "@agoric/zoe": "0.26.3-dev-16095c5.0+16095c5",
41
- "@agoric/zone": "0.2.3-dev-16095c5.0+16095c5",
31
+ "@agoric/assert": "0.6.1-dev-980ff41.0+980ff41",
32
+ "@agoric/ertp": "0.16.3-dev-980ff41.0+980ff41",
33
+ "@agoric/internal": "0.3.3-dev-980ff41.0+980ff41",
34
+ "@agoric/network": "0.1.1-dev-980ff41.0+980ff41",
35
+ "@agoric/notifier": "0.6.3-dev-980ff41.0+980ff41",
36
+ "@agoric/store": "0.9.3-dev-980ff41.0+980ff41",
37
+ "@agoric/swingset-vat": "0.32.3-dev-980ff41.0+980ff41",
38
+ "@agoric/vats": "0.15.2-dev-980ff41.0+980ff41",
39
+ "@agoric/vow": "0.1.1-dev-980ff41.0+980ff41",
40
+ "@agoric/zoe": "0.26.3-dev-980ff41.0+980ff41",
41
+ "@agoric/zone": "0.2.3-dev-980ff41.0+980ff41",
42
42
  "@endo/bundle-source": "^3.2.3",
43
43
  "@endo/captp": "^4.2.0",
44
44
  "@endo/far": "^1.1.2",
@@ -47,7 +47,7 @@
47
47
  "@endo/promise-kit": "^1.1.2"
48
48
  },
49
49
  "devDependencies": {
50
- "@agoric/vat-data": "0.5.3-dev-16095c5.0+16095c5",
50
+ "@agoric/vat-data": "0.5.3-dev-980ff41.0+980ff41",
51
51
  "ava": "^5.3.0",
52
52
  "c8": "^9.1.0",
53
53
  "import-meta-resolve": "^2.2.1"
@@ -55,7 +55,6 @@
55
55
  "files": [
56
56
  "scripts/",
57
57
  "src/",
58
- "exported.js",
59
58
  "NEWS.md"
60
59
  ],
61
60
  "ava": {
@@ -72,7 +71,7 @@
72
71
  "access": "public"
73
72
  },
74
73
  "typeCoverage": {
75
- "atLeast": 90.61
74
+ "atLeast": 90.6
76
75
  },
77
- "gitHead": "16095c5076043133aff0f25721131be2ca1ef5af"
76
+ "gitHead": "980ff41770a66215cd87f9ce6f12151fc4396fd6"
78
77
  }
package/src/contract.js CHANGED
@@ -3,10 +3,6 @@ import { prepareVowTools } from '@agoric/vow/vat.js';
3
3
  import { makeDurableZone } from '@agoric/zone/durable.js';
4
4
  import { makePegasus } from './pegasus.js';
5
5
 
6
- import '@agoric/zoe/exported.js';
7
-
8
- import '../exported.js';
9
-
10
6
  /**
11
7
  * @import {Remote} from '@agoric/vow';
12
8
  */
package/src/courier.js CHANGED
@@ -7,7 +7,7 @@ import { E, Far } from '@endo/far';
7
7
  import { makeOncePromiseKit } from './once-promise-kit.js';
8
8
 
9
9
  /**
10
- * @import {DepositFacet} from '@agoric/ertp/exported.js'
10
+ * @import {DepositFacet} from '@agoric/ertp/src/types.js'
11
11
  * @import {Connection} from '@agoric/network';
12
12
  * @import {Remote} from '@agoric/vow';
13
13
  */
package/src/pegasus.js CHANGED
@@ -9,10 +9,6 @@ import {
9
9
  } from '@agoric/zoe/src/contractSupport/index.js';
10
10
  import { makeSubscriptionKit } from '@agoric/notifier';
11
11
 
12
- import '@agoric/network/exported.js';
13
- import '@agoric/zoe/exported.js';
14
-
15
- import '../exported.js';
16
12
  import { IBCSourceTraceDenomTransformer } from './ibc-trace.js';
17
13
  import { ICS20TransferProtocol } from './ics20.js';
18
14
  import { makeCourierMaker, getCourierPK } from './courier.js';
package/src/types.js CHANGED
@@ -12,7 +12,7 @@
12
12
 
13
13
  /**
14
14
  * @typedef {object} PacketParts
15
- * @property {import("@agoric/ertp/exported.js").AmountValue} value
15
+ * @property {import("@agoric/ertp/src/types.js").AmountValue} value
16
16
  * @property {Denom} remoteDenom
17
17
  * @property {DepositAddress} depositAddress
18
18
  * @property {string} memo
package/exported.js DELETED
@@ -1,5 +0,0 @@
1
- import './src/types.js';
2
- import '@agoric/notifier/exported.js';
3
- import '@agoric/ertp/exported.js';
4
- import '@agoric/store/exported.js';
5
- import '@agoric/swingset-vat/exported.js';