@agoric/builders 0.1.1-dev-e393fda.0 → 0.1.1-dev-9db2909.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/builders",
3
- "version": "0.1.1-dev-e393fda.0+e393fda",
3
+ "version": "0.1.1-dev-9db2909.0+9db2909",
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-e393fda.0+e393fda",
27
- "@agoric/fast-usdc": "0.1.1-dev-e393fda.0+e393fda",
28
- "@agoric/internal": "0.3.3-dev-e393fda.0+e393fda",
29
- "@agoric/notifier": "0.6.3-dev-e393fda.0+e393fda",
30
- "@agoric/smart-wallet": "0.5.4-dev-e393fda.0+e393fda",
31
- "@agoric/vat-data": "0.5.3-dev-e393fda.0+e393fda",
32
- "@agoric/vats": "0.15.2-dev-e393fda.0+e393fda",
33
- "@agoric/zoe": "0.26.3-dev-e393fda.0+e393fda",
26
+ "@agoric/ertp": "0.16.3-dev-9db2909.0+9db2909",
27
+ "@agoric/fast-usdc": "0.1.1-dev-9db2909.0+9db2909",
28
+ "@agoric/internal": "0.3.3-dev-9db2909.0+9db2909",
29
+ "@agoric/notifier": "0.6.3-dev-9db2909.0+9db2909",
30
+ "@agoric/smart-wallet": "0.5.4-dev-9db2909.0+9db2909",
31
+ "@agoric/vat-data": "0.5.3-dev-9db2909.0+9db2909",
32
+ "@agoric/vats": "0.15.2-dev-9db2909.0+9db2909",
33
+ "@agoric/zoe": "0.26.3-dev-9db2909.0+9db2909",
34
34
  "@endo/bundle-source": "^3.5.1",
35
35
  "@endo/captp": "^4.4.4",
36
36
  "@endo/eventual-send": "^1.3.0",
@@ -43,14 +43,14 @@
43
43
  "import-meta-resolve": "^4.1.0"
44
44
  },
45
45
  "devDependencies": {
46
- "@agoric/deploy-script-support": "0.10.4-dev-e393fda.0+e393fda",
47
- "@agoric/governance": "0.10.4-dev-e393fda.0+e393fda",
48
- "@agoric/inter-protocol": "0.16.2-dev-e393fda.0+e393fda",
49
- "@agoric/orchestration": "0.1.1-dev-e393fda.0+e393fda",
50
- "@agoric/store": "0.9.3-dev-e393fda.0+e393fda",
51
- "@agoric/swing-store": "0.9.2-dev-e393fda.0+e393fda",
52
- "@agoric/swingset-liveslots": "0.10.3-dev-e393fda.0+e393fda",
53
- "@agoric/time": "0.3.3-dev-e393fda.0+e393fda",
46
+ "@agoric/deploy-script-support": "0.10.4-dev-9db2909.0+9db2909",
47
+ "@agoric/governance": "0.10.4-dev-9db2909.0+9db2909",
48
+ "@agoric/inter-protocol": "0.16.2-dev-9db2909.0+9db2909",
49
+ "@agoric/orchestration": "0.1.1-dev-9db2909.0+9db2909",
50
+ "@agoric/store": "0.9.3-dev-9db2909.0+9db2909",
51
+ "@agoric/swing-store": "0.9.2-dev-9db2909.0+9db2909",
52
+ "@agoric/swingset-liveslots": "0.10.3-dev-9db2909.0+9db2909",
53
+ "@agoric/time": "0.3.3-dev-9db2909.0+9db2909",
54
54
  "@endo/errors": "^1.2.9",
55
55
  "ava": "^5.3.0",
56
56
  "c8": "^10.1.2"
@@ -83,5 +83,5 @@
83
83
  "typeCoverage": {
84
84
  "atLeast": 91.57
85
85
  },
86
- "gitHead": "e393fda2039f1b32543bf529a846d626319233df"
86
+ "gitHead": "9db2909eafccc0d8df19258508ec58966e3eb3f8"
87
87
  }
@@ -45,7 +45,7 @@ const { keys } = Object;
45
45
  const knownVariants = keys(configurations);
46
46
 
47
47
  /** @type {import('@agoric/deploy-script-support/src/externalTypes.js').CoreEvalBuilder} */
48
- export const defaultProposalBuilder = async (_, opts) => {
48
+ export const defaultProposalBuilder = async ({ publishRef, install }, opts) => {
49
49
  const config = opts.config || configurations[opts.variant];
50
50
  console.log('feeDist OPTS', opts, config);
51
51
  if (!config) {
@@ -58,7 +58,15 @@ export const defaultProposalBuilder = async (_, opts) => {
58
58
  return harden({
59
59
  sourceSpec:
60
60
  '@agoric/inter-protocol/src/proposals/replace-fee-distributor.js',
61
- getManifestCall: [getManifestForReplaceFeeDistributor.name, { ...params }],
61
+ getManifestCall: [
62
+ getManifestForReplaceFeeDistributor.name,
63
+ {
64
+ feeDistributorRef: publishRef(
65
+ install('@agoric/inter-protocol/src/feeDistributor.js'),
66
+ ),
67
+ ...params,
68
+ },
69
+ ],
62
70
  });
63
71
  };
64
72
 
@@ -3,12 +3,20 @@ import { getManifestForReplaceFeeDistributor } from '@agoric/inter-protocol/src/
3
3
  import { SECONDS_PER_HOUR } from '@agoric/inter-protocol/src/proposals/econ-behaviors.js';
4
4
 
5
5
  /** @type {import('@agoric/deploy-script-support/src/externalTypes.js').CoreEvalBuilder} */
6
- export const defaultProposalBuilder = async (_, opts) => {
6
+ export const defaultProposalBuilder = async ({ publishRef, install }, opts) => {
7
7
  console.log('feeDist OPTS', opts);
8
8
  return harden({
9
9
  sourceSpec:
10
10
  '@agoric/inter-protocol/src/proposals/replace-fee-distributor.js',
11
- getManifestCall: [getManifestForReplaceFeeDistributor.name, { ...opts }],
11
+ getManifestCall: [
12
+ getManifestForReplaceFeeDistributor.name,
13
+ {
14
+ feeDistributorRef: publishRef(
15
+ install('@agoric/inter-protocol/src/feeDistributor.js'),
16
+ ),
17
+ ...opts,
18
+ },
19
+ ],
12
20
  });
13
21
  };
14
22