Skip to content

Commit d64f09a

Browse files
committed
chore(types): define DeployScriptFunction
1 parent 34b3086 commit d64f09a

File tree

7 files changed

+73
-17
lines changed

7 files changed

+73
-17
lines changed

packages/builders/scripts/inter-protocol/add-collateral-core.js

+5-2
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,10 @@ export default async (homeP, endowments) => {
112112

113113
await writeCoreEval('gov-add-collateral', defaultProposalBuilder);
114114
await writeCoreEval('gov-start-psm', opts =>
115-
// @ts-expect-error XXX makeInstallCache types
116-
psmProposalBuilder({ ...opts, wrapInstall: tool.wrapInstall }),
115+
psmProposalBuilder({
116+
...opts,
117+
// @ts-expect-error XXX makeInstallCache types
118+
wrapInstall: tool.wrapInstall,
119+
}),
117120
);
118121
};

packages/deploy-script-support/src/cachedBundleSpec.js

+3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ import { Fail } from '@endo/errors';
66
*/
77
export const makeCacheAndGetBundleSpec =
88
(cacheDir, { now, fs, pathResolve }) =>
9+
/**
10+
* @param {Promise<import('@endo/bundle-source').BundleSourceResult<'endoZipBase64'>>} bundleP
11+
*/
912
async bundleP => {
1013
const bundle = await bundleP;
1114
const { endoZipBase64Sha512: hash } = bundle;

packages/deploy-script-support/src/externalTypes.js

+42
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
// @ts-check
22
export {};
33

4+
/**
5+
* @import {NameHub} from '@agoric/vats';
6+
*/
7+
48
// TODO move this type somewhere better
59
/**
610
* @typedef {string | string[]} Petname A petname can either be a plain string
@@ -47,3 +51,41 @@ export {};
4751
* @param {...any} args
4852
* @returns {Promise<CoreEvalDescriptor>}
4953
*/
54+
55+
/**
56+
* @typedef {{
57+
* bundleSource: typeof import('@endo/bundle-source').default,
58+
* cacheDir: string,
59+
* lookup: (...path: string[]) => unknown,
60+
* now: () => number,
61+
* pathResolve: (...path: string[]) => string,
62+
* publishBundle: PublishBundleRef,
63+
* }} DeployScriptEndownments
64+
*/
65+
66+
/**
67+
* @typedef {{
68+
* scratch: ERef<import('@agoric/internal/src/scratch.js').ScratchPad>,
69+
* }} CommonHome
70+
*/
71+
72+
// TODO wallet as import('@agoric/wallet-backend/src/types').WalletAdmin once it's a module
73+
/**
74+
* @typedef {CommonHome & {
75+
* agoricNames: ERef<NameHub>,
76+
* bank: ERef<import("@agoric/vats/src/vat-bank.js").Bank>,
77+
* board: ERef<import("@agoric/vats").Board>,
78+
* faucet: unknown,
79+
* myAddressNameAdmin: ERef<import("@agoric/vats").NameAdmin>,
80+
* namesByAddress: ERef<NameHub>,
81+
* wallet: any,
82+
* zoe: ERef<ZoeService>,
83+
* }} AgSoloHome
84+
*/
85+
86+
/**
87+
* @callback DeployScriptFunction
88+
* @param {Promise<CommonHome>} homeP
89+
* @param {DeployScriptEndownments} endowments
90+
* @returns {Promise<void>}
91+
*/

packages/deploy-script-support/src/helpers.js

+8
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,10 @@ const makeLazyObject = sourceObject => {
5252
return /** @type {T} */ (lazyObject);
5353
};
5454

55+
/**
56+
* @param {Promise<import('./externalTypes.js').CommonHome | import('./externalTypes.js').AgSoloHome>} homePromise
57+
* @param {import('./externalTypes.js').DeployScriptEndownments} endowments
58+
*/
5559
export const makeHelpers = async (homePromise, endowments) => {
5660
// Endowments provided via `agoric run` or `agoric deploy`.
5761
const {
@@ -84,13 +88,15 @@ export const makeHelpers = async (homePromise, endowments) => {
8488
return E(deps.walletAdmin).getIssuerManager();
8589
},
8690
get offerAndFind() {
91+
assert('wallet' in deps.home, 'expected AgSolo home');
8792
return makeOfferAndFindInvitationAmount(
8893
deps.walletAdmin,
8994
deps.home.zoe,
9095
deps.zoeInvitationPurse,
9196
);
9297
},
9398
get walletAdmin() {
99+
assert('wallet' in deps.home, 'expected AgSolo home');
94100
return E(deps.home.wallet).getAdminFacet();
95101
},
96102
get zoeInvitationPurse() {
@@ -110,6 +116,7 @@ export const makeHelpers = async (homePromise, endowments) => {
110116
return deps.offerAndFind.findInvitationAmount;
111117
},
112118
get install() {
119+
assert('wallet' in deps.home, 'expected AgSolo home');
113120
return makeInstall(
114121
bundleSource,
115122
deps.home.zoe,
@@ -127,6 +134,7 @@ export const makeHelpers = async (homePromise, endowments) => {
127134
return makeSaveIssuer(deps.walletAdmin, deps.issuerManager);
128135
},
129136
get startInstance() {
137+
assert('wallet' in deps.home, 'expected AgSolo home');
130138
return makeStartInstance(
131139
deps.issuerManager,
132140
deps.instanceManager,

packages/deploy-script-support/src/writeCoreEvalParts.js

+13-12
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ import {
1111
} from './coreProposalBehavior.js';
1212

1313
/**
14-
* @import {CoreEvalDescriptor} from './externalTypes.js';
14+
* @import {BundleSource, BundleSourceResult} from '@endo/bundle-source';
15+
* @import {AgSoloHome, CanonicalHome, CommonHome, CoreEvalBuilder, CoreEvalDescriptor, ManifestBundleRef} from './externalTypes.js';
1516
*/
1617

1718
/**
@@ -27,20 +28,20 @@ import {
2728
* summary to `${filePrefix}-plan.json), plus whatever bundles bundles the code loads)
2829
* see CoreEval in {@link '/golang/cosmos/x/swingset/types/swingset.pb.go'}
2930
* @param {string} filePrefix name on disk
30-
* @param {import('./externalTypes.js').CoreEvalBuilder} builder
31+
* @param {CoreEvalBuilder} builder
3132
* @returns {Promise<CoreEvalPlan>}
3233
*/
3334

3435
/**
3536
*
36-
* @param {*} homeP
37+
* @param {Promise<CommonHome | AgSoloHome>} homeP
3738
* @param {{
38-
* bundleSource: (path: string) => Promise<NodeModule>,
39+
* bundleSource: BundleSource,
3940
* pathResolve: (path: string) => string,
4041
* }} endowments
4142
* @param {{
4243
* getBundlerMaker: () => Promise<import('./getBundlerMaker.js').BundleMaker>,
43-
* getBundleSpec: (...args: *) => Promise<import('./externalTypes.js').ManifestBundleRef>,
44+
* getBundleSpec: (bundle: Promise<BundleSourceResult<'endoZipBase64'>>, getBundle: () => import('./getBundlerMaker.js').Bundler, opts?: any) => Promise<ManifestBundleRef>,
4445
* log?: typeof console.log,
4546
* writeFile?: typeof fs.promises.writeFile
4647
* }} io
@@ -63,6 +64,7 @@ export const makeWriteCoreEval = (
6364
const getBundler = () => {
6465
if (!bundlerCache) {
6566
bundlerCache = E(getBundlerMaker()).makeBundler({
67+
// @ts-expect-error lazily resolved for AgSoloHome
6668
zoe: E.get(homeP).zoe,
6769
});
6870
}
@@ -95,17 +97,16 @@ export const makeWriteCoreEval = (
9597
};
9698
};
9799

98-
let mutex =
99-
/** @type {Promise<import('./externalTypes.js').ManifestBundleRef | undefined>} */ (
100-
Promise.resolve()
101-
);
100+
let mutex = /** @type {Promise<ManifestBundleRef | undefined>} */ (
101+
Promise.resolve()
102+
);
102103
/** @type {WriteCoreEval} */
103104
const writeCoreEval = async (filePrefix, builder) => {
104105
/**
105106
*
106107
* @param {string} entrypoint
107108
* @param {string} [bundlePath]
108-
* @returns {Promise<NodeModule>}
109+
* @returns {Promise<BundleSourceResult<'endoZipBase64'>>}
109110
*/
110111
const getBundle = async (entrypoint, bundlePath) => {
111112
if (!bundlePath) {
@@ -125,7 +126,7 @@ export const makeWriteCoreEval = (
125126
* @param {string} entrypoint
126127
* @param {string} [bundlePath]
127128
* @param {unknown} [opts]
128-
* @returns {Promise<import('./externalTypes.js').ManifestBundleRef>}
129+
* @returns {Promise<ManifestBundleRef>}
129130
*/
130131
const install = async (entrypoint, bundlePath, opts) => {
131132
const bundle = getBundle(entrypoint, bundlePath);
@@ -146,7 +147,7 @@ export const makeWriteCoreEval = (
146147

147148
// Await a reference then publish to the board.
148149
const cmds = [];
149-
/** @param {Promise<import('./externalTypes.js').ManifestBundleRef>} refP */
150+
/** @param {Promise<ManifestBundleRef>} refP */
150151
const publishRef = async refP => {
151152
const { fileName, ...ref } = await refP;
152153
if (fileName) {

packages/inter-protocol/src/proposals/utils.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -100,9 +100,9 @@ const provideWhen = async (store, key, make) => {
100100
};
101101

102102
/**
103-
* @param {{
103+
* @param {Promise<{
104104
* scratch: ERef<import('@agoric/internal/src/scratch.js').ScratchPad>;
105-
* }} homeP
105+
* }>} homeP
106106
* @param {object} opts
107107
* @param {(specifier: string) => Promise<{ default: Bundle }>} opts.loadBundle
108108
* @param {string} [opts.installCacheKey]

tsconfig.build.json

-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
"**/dist",
2626
"**/docs",
2727
"**/*.umd.js",
28-
"**/proposals",
2928
"**/scripts",
3029
"**/test"
3130
],

0 commit comments

Comments
 (0)