Skip to content

Commit

Permalink
chore(types): annotate each DeployScriptFunction
Browse files Browse the repository at this point in the history
  • Loading branch information
turadg committed Oct 23, 2024
1 parent d64f09a commit 0c5639b
Show file tree
Hide file tree
Showing 57 changed files with 58 additions and 0 deletions.
1 change: 1 addition & 0 deletions multichain-testing/src/revise-chain-info.builder.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ export const defaultProposalBuilder = async () =>
],
});

/** @type {import('@agoric/deploy-script-support/src/externalTypes.js').DeployScriptFunction} */
export default async (homeP, endowments) => {
const { writeCoreEval } = await makeHelpers(homeP, endowments);
await writeCoreEval('revise-chain-info', defaultProposalBuilder);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ export const defaultProposalBuilder = async ({ publishRef, install }) =>
],
});

/** @type {import('@agoric/deploy-script-support/src/externalTypes.js').DeployScriptFunction} */
export default async (homeP, endowments) => {
const helperEndowments = {
...endowments,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ export const defaultProposalBuilder = async ({ publishRef, install }) =>
],
});

/** @type {import('@agoric/deploy-script-support/src/externalTypes.js').DeployScriptFunction} */
export default async (homeP, endowments) => {
const helperEndowments = {
...endowments,
Expand Down
1 change: 1 addition & 0 deletions packages/builders/scripts/inter-protocol/add-STARS.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ const starsOraclesProposalBuilder = async powers => {
});
};

/** @type {import('@agoric/deploy-script-support/src/externalTypes.js').DeployScriptFunction} */
export default async (homeP, endowments) => {
const { writeCoreEval } = await makeHelpers(homeP, endowments);
await writeCoreEval('add-STARS', starsVaultProposalBuilder);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@ export const psmProposalBuilder = async (
});
};

/** @type {import('@agoric/deploy-script-support/src/externalTypes.js').DeployScriptFunction} */
export default async (homeP, endowments) => {
const { writeCoreEval } = await makeHelpers(homeP, endowments);

Expand Down
1 change: 1 addition & 0 deletions packages/builders/scripts/inter-protocol/init-core.js
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,7 @@ export const defaultProposalBuilder = async (
});
};

/** @type {import('@agoric/deploy-script-support/src/externalTypes.js').DeployScriptFunction} */
export default async (homeP, endowments) => {
const { writeCoreEval } = await makeHelpers(homeP, endowments);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ export const defaultProposalBuilder = async (
});
};

/** @type {import('@agoric/deploy-script-support/src/externalTypes.js').DeployScriptFunction} */
export default async (homeP, endowments) => {
const { writeCoreEval } = await makeHelpers(homeP, endowments);
await writeCoreEval('gov-invite-committee', defaultProposalBuilder);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,8 @@ const configurations = {

const { keys } = Object;
const Usage = `agoric run replace-electorate-core.js ${keys(configurations).join(' | ')}`;

/** @type {import('@agoric/deploy-script-support/src/externalTypes.js').DeployScriptFunction} */
export default async (homeP, endowments) => {
const { scriptArgs } = endowments;
const variant = scriptArgs?.[0];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ export const defaultProposalBuilder = async ({ publishRef, install }, opts) => {
const { keys } = Object;
const Usage = `agoric run updatePriceFeed.js ${keys(configurations).join(' | ')}`;

/** @type {import('@agoric/deploy-script-support/src/externalTypes.js').DeployScriptFunction} */
export default async (homeP, endowments) => {
const { scriptArgs } = endowments;
const config = configurations[scriptArgs?.[0]];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ export const defaultProposalBuilder = async ({ publishRef, install }) => {
});
};

/** @type {import('@agoric/deploy-script-support/src/externalTypes.js').DeployScriptFunction} */
export default async (homeP, endowments) => {
const { writeCoreEval } = await makeHelpers(homeP, endowments);
await writeCoreEval(startBasicFlows.name, defaultProposalBuilder);
Expand Down
1 change: 1 addition & 0 deletions packages/builders/scripts/orchestration/init-stakeAtom.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ export const defaultProposalBuilder = async ({ publishRef, install }) => {
});
};

/** @type {import('@agoric/deploy-script-support/src/externalTypes.js').DeployScriptFunction} */
export default async (homeP, endowments) => {
const { writeCoreEval } = await makeHelpers(homeP, endowments);
await writeCoreEval('start-stakeAtom', defaultProposalBuilder);
Expand Down
1 change: 1 addition & 0 deletions packages/builders/scripts/orchestration/init-stakeBld.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ export const defaultProposalBuilder = async ({ publishRef, install }) =>
],
});

/** @type {import('@agoric/deploy-script-support/src/externalTypes.js').DeployScriptFunction} */
export default async (homeP, endowments) => {
const { writeCoreEval } = await makeHelpers(homeP, endowments);
await writeCoreEval('start-stakeBld', defaultProposalBuilder);
Expand Down
1 change: 1 addition & 0 deletions packages/builders/scripts/orchestration/init-stakeOsmo.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ export const defaultProposalBuilder = async ({ publishRef, install }) => {
});
};

/** @type {import('@agoric/deploy-script-support/src/externalTypes.js').DeployScriptFunction} */
export default async (homeP, endowments) => {
const { writeCoreEval } = await makeHelpers(homeP, endowments);
await writeCoreEval('start-stakeOsmo', defaultProposalBuilder);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ export const defaultProposalBuilder = async () =>
getManifestCall: ['getManifestForChainInfo'],
});

/** @type {import('@agoric/deploy-script-support/src/externalTypes.js').DeployScriptFunction} */
export default async (homeP, endowments) => {
const { writeCoreEval } = await makeHelpers(homeP, endowments);
await writeCoreEval('gov-orchestration', defaultProposalBuilder);
Expand Down
1 change: 1 addition & 0 deletions packages/builders/scripts/pegasus/init-core.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ export const defaultProposalBuilder = async ({ publishRef, install }) =>
],
});

/** @type {import('@agoric/deploy-script-support/src/externalTypes.js').DeployScriptFunction} */
export default async (homeP, endowments) => {
const { writeCoreEval } = await makeHelpers(homeP, endowments);
await writeCoreEval('gov-pegasus', defaultProposalBuilder);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ const game1ProposalBuilder = async ({ publishRef, install }) => {
});
};

/** @type {import('@agoric/deploy-script-support/src/externalTypes.js').DeployScriptFunction} */
export default async (homeP, endowments) => {
const { writeCoreEval } = await makeHelpers(homeP, endowments);
await writeCoreEval('start-game1', game1ProposalBuilder);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ export const defaultProposalBuilder = async ({ publishRef, install }) =>
],
});

/** @type {import('@agoric/deploy-script-support/src/externalTypes.js').DeployScriptFunction} */
export default async (homeP, endowments) => {
const { writeCoreEval } = await makeHelpers(homeP, endowments);
await writeCoreEval('upgrade-wallet-factory', defaultProposalBuilder);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ export const defaultProposalBuilder = async ({ publishRef, install }) => {
});
};

/** @type {import('@agoric/deploy-script-support/src/externalTypes.js').DeployScriptFunction} */
export default async (homeP, endowments) => {
const { writeCoreEval } = await makeHelpers(homeP, endowments);
await writeCoreEval('upgrade-walletFactory', defaultProposalBuilder);
Expand Down
1 change: 1 addition & 0 deletions packages/builders/scripts/testing/add-LEMONS.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ const starsVaultProposalBuilder = async powers => {
});
};

/** @type {import('@agoric/deploy-script-support/src/externalTypes.js').DeployScriptFunction} */
export default async (homeP, endowments) => {
const { writeCoreEval } = await makeHelpers(homeP, endowments);
await writeCoreEval('add-STARS-collateral', starsVaultProposalBuilder);
Expand Down
1 change: 1 addition & 0 deletions packages/builders/scripts/testing/add-OLIVES.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ const stars2VaultProposalBuilder = async powers => {
});
};

/** @type {import('@agoric/deploy-script-support/src/externalTypes.js').DeployScriptFunction} */
export default async (homeP, endowments) => {
const { writeCoreEval } = await makeHelpers(homeP, endowments);
await writeCoreEval('add-STARS2-collateral', stars2VaultProposalBuilder);
Expand Down
1 change: 1 addition & 0 deletions packages/builders/scripts/testing/append-chain-info.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ export const defaultProposalBuilder = async () =>
],
});

/** @type {import('@agoric/deploy-script-support/src/externalTypes.js').DeployScriptFunction} */
export default async (homeP, endowments) => {
const { writeCoreEval } = await makeHelpers(homeP, endowments);
await writeCoreEval('revise-chain-info', defaultProposalBuilder);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,7 @@ export const defaultProposalBuilder = async ({ publishRef, install }) =>
],
});

/** @type {import('@agoric/deploy-script-support/src/externalTypes.js').DeployScriptFunction} */
export default async (homeP, endowments) => {
// import dynamically so the module can work in CoreEval environment
const dspModule = await import('@agoric/deploy-script-support');
Expand Down
1 change: 1 addition & 0 deletions packages/builders/scripts/testing/restart-basic-flows.js
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ export const defaultProposalBuilder = async () =>
getManifestCall: [getManifest.name],
});

/** @type {import('@agoric/deploy-script-support/src/externalTypes.js').DeployScriptFunction} */
export default async (homeP, endowments) => {
// import dynamically so the module can work in CoreEval environment
const dspModule = await import('@agoric/deploy-script-support');
Expand Down
1 change: 1 addition & 0 deletions packages/builders/scripts/testing/restart-send-anywhere.js
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ export const defaultProposalBuilder = async () =>
getManifestCall: [getManifest.name],
});

/** @type {import('@agoric/deploy-script-support/src/externalTypes.js').DeployScriptFunction} */
export default async (homeP, endowments) => {
// import dynamically so the module can work in CoreEval environment
const dspModule = await import('@agoric/deploy-script-support');
Expand Down
1 change: 1 addition & 0 deletions packages/builders/scripts/testing/restart-stakeAtom.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ export const defaultProposalBuilder = async () =>
getManifestCall: [getManifest.name],
});

/** @type {import('@agoric/deploy-script-support/src/externalTypes.js').DeployScriptFunction} */
export default async (homeP, endowments) => {
// import dynamically so the module can work in CoreEval environment
const dspModule = await import('@agoric/deploy-script-support');
Expand Down
1 change: 1 addition & 0 deletions packages/builders/scripts/testing/restart-valueVow.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ export const defaultProposalBuilder = async ({ publishRef, install }) =>
],
});

/** @type {import('@agoric/deploy-script-support/src/externalTypes.js').DeployScriptFunction} */
export default async (homeP, endowments) => {
// import dynamically so the module can work in CoreEval environment
const dspModule = await import('@agoric/deploy-script-support');
Expand Down
1 change: 1 addition & 0 deletions packages/builders/scripts/testing/start-auto-stake-it.js
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ export const defaultProposalBuilder = async ({ publishRef, install }) => {
});
};

/** @type {import('@agoric/deploy-script-support/src/externalTypes.js').DeployScriptFunction} */
export default async (homeP, endowments) => {
// import dynamically so the module can work in CoreEval environment
const dspModule = await import('@agoric/deploy-script-support');
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,7 @@ export const defaultProposalBuilder = async ({ publishRef, install }) =>
],
});

/** @type {import('@agoric/deploy-script-support/src/externalTypes.js').DeployScriptFunction} */
export default async (homeP, endowments) => {
// import dynamically so the module can work in CoreEval environment
const dspModule = await import('@agoric/deploy-script-support');
Expand Down
1 change: 1 addition & 0 deletions packages/builders/scripts/testing/start-query-flows.js
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@ export const defaultProposalBuilder = async ({ publishRef, install }) => {
});
};

/** @type {import('@agoric/deploy-script-support/src/externalTypes.js').DeployScriptFunction} */
export default async (homeP, endowments) => {
// import dynamically so the module can work in CoreEval environment
const dspModule = await import('@agoric/deploy-script-support');
Expand Down
1 change: 1 addition & 0 deletions packages/builders/scripts/testing/start-send-anywhere.js
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,7 @@ export const defaultProposalBuilder = async ({ publishRef, install }) =>
],
});

/** @type {import('@agoric/deploy-script-support/src/externalTypes.js').DeployScriptFunction} */
export default async (homeP, endowments) => {
// import dynamically so the module can work in CoreEval environment
const dspModule = await import('@agoric/deploy-script-support');
Expand Down
1 change: 1 addition & 0 deletions packages/builders/scripts/testing/start-valueVow.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ export const defaultProposalBuilder = async ({ publishRef, install }) =>
],
});

/** @type {import('@agoric/deploy-script-support/src/externalTypes.js').DeployScriptFunction} */
export default async (homeP, endowments) => {
// import dynamically so the module can work in CoreEval environment
const dspModule = await import('@agoric/deploy-script-support');
Expand Down
1 change: 1 addition & 0 deletions packages/builders/scripts/testing/tweak-chain-info.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ export const defaultProposalBuilder = async () =>
],
});

/** @type {import('@agoric/deploy-script-support/src/externalTypes.js').DeployScriptFunction} */
export default async (homeP, endowments) => {
const { writeCoreEval } = await makeHelpers(homeP, endowments);
await writeCoreEval('revise-chain-info', defaultProposalBuilder);
Expand Down
1 change: 1 addition & 0 deletions packages/builders/scripts/vats/add-auction.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ export const defaultProposalBuilder = async ({ publishRef, install }) => {
});
};

/** @type {import('@agoric/deploy-script-support/src/externalTypes.js').DeployScriptFunction} */
export default async (homeP, endowments) => {
const { writeCoreEval } = await makeHelpers(homeP, endowments);
await writeCoreEval('add-auction', defaultProposalBuilder);
Expand Down
1 change: 1 addition & 0 deletions packages/builders/scripts/vats/init-core.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ export const defaultProposalBuilder = async ({ publishRef, install }) =>
],
});

/** @type {import('@agoric/deploy-script-support/src/externalTypes.js').DeployScriptFunction} */
export default async (homeP, endowments) => {
const { writeCoreEval } = await makeHelpers(homeP, endowments);
await writeCoreEval('gov-vats', defaultProposalBuilder);
Expand Down
1 change: 1 addition & 0 deletions packages/builders/scripts/vats/init-localchain.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ export const defaultProposalBuilder = async ({ publishRef, install }) =>
],
});

/** @type {import('@agoric/deploy-script-support/src/externalTypes.js').DeployScriptFunction} */
export default async (homeP, endowments) => {
const { writeCoreEval } = await makeHelpers(homeP, endowments);
await writeCoreEval('gov-localchain', defaultProposalBuilder);
Expand Down
1 change: 1 addition & 0 deletions packages/builders/scripts/vats/init-network.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ export const defaultProposalBuilder = async ({ publishRef, install }) =>
],
});

/** @type {import('@agoric/deploy-script-support/src/externalTypes.js').DeployScriptFunction} */
export default async (homeP, endowments) => {
const { writeCoreEval } = await makeHelpers(homeP, endowments);
await writeCoreEval('gov-network', defaultProposalBuilder);
Expand Down
1 change: 1 addition & 0 deletions packages/builders/scripts/vats/init-orchestration.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ export const defaultProposalBuilder = async ({ publishRef, install }) =>
],
});

/** @type {import('@agoric/deploy-script-support/src/externalTypes.js').DeployScriptFunction} */
export default async (homeP, endowments) => {
const { writeCoreEval } = await makeHelpers(homeP, endowments);
await writeCoreEval('gov-orchestration', defaultProposalBuilder);
Expand Down
1 change: 1 addition & 0 deletions packages/builders/scripts/vats/init-transfer.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ export const defaultProposalBuilder = async ({ publishRef, install }) =>
],
});

/** @type {import('@agoric/deploy-script-support/src/externalTypes.js').DeployScriptFunction} */
export default async (homeP, endowments) => {
const { writeCoreProposal } = await makeHelpers(homeP, endowments);
await writeCoreProposal('gov-transfer', defaultProposalBuilder);
Expand Down
1 change: 1 addition & 0 deletions packages/builders/scripts/vats/probe-zcf-bundle.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ export const defaultProposalBuilder = async ({ publishRef, install }) =>
],
});

/** @type {import('@agoric/deploy-script-support/src/externalTypes.js').DeployScriptFunction} */
export default async (homeP, endowments) => {
const { writeCoreEval } = await makeHelpers(homeP, endowments);
await writeCoreEval('probeZcfBundle', defaultProposalBuilder);
Expand Down
1 change: 1 addition & 0 deletions packages/builders/scripts/vats/replace-provisioning.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ export const defaultProposalBuilder = async ({ publishRef, install }) =>
],
});

/** @type {import('@agoric/deploy-script-support/src/externalTypes.js').DeployScriptFunction} */
export default async (homeP, endowments) => {
const { writeCoreEval } = await makeHelpers(homeP, endowments);
await writeCoreEval('gov-provisioning', defaultProposalBuilder);
Expand Down
1 change: 1 addition & 0 deletions packages/builders/scripts/vats/replace-zoe.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ export const defaultProposalBuilder = async ({ publishRef, install }) =>
],
});

/** @type {import('@agoric/deploy-script-support/src/externalTypes.js').DeployScriptFunction} */
export default async (homeP, endowments) => {
const { writeCoreEval } = await makeHelpers(homeP, endowments);
await writeCoreEval('replace-zcf', defaultProposalBuilder);
Expand Down
1 change: 1 addition & 0 deletions packages/builders/scripts/vats/restart-vats.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ export const defaultProposalBuilder = async () => {
});
};

/** @type {import('@agoric/deploy-script-support/src/externalTypes.js').DeployScriptFunction} */
export default async (homeP, endowments) => {
const { writeCoreEval } = await makeHelpers(homeP, endowments);
await writeCoreEval('restart-vats', defaultProposalBuilder);
Expand Down
1 change: 1 addition & 0 deletions packages/builders/scripts/vats/revive-kread.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ export const defaultProposalBuilder = async () =>
getManifestCall: ['getManifestForKread'],
});

/** @type {import('@agoric/deploy-script-support/src/externalTypes.js').DeployScriptFunction} */
export default async (homeP, endowments) => {
const { writeCoreProposal } = await makeHelpers(homeP, endowments);
await writeCoreProposal('revive-kread', defaultProposalBuilder);
Expand Down
1 change: 1 addition & 0 deletions packages/builders/scripts/vats/test-localchain.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ export const defaultProposalBuilder = async _powers =>
],
});

/** @type {import('@agoric/deploy-script-support/src/externalTypes.js').DeployScriptFunction} */
export default async (homeP, endowments) => {
const { writeCoreEval } = await makeHelpers(homeP, endowments);
await writeCoreEval('test-localchain', defaultProposalBuilder);
Expand Down
1 change: 1 addition & 0 deletions packages/builders/scripts/vats/test-vtransfer.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ export const defaultProposalBuilder = async _powers =>
],
});

/** @type {import('@agoric/deploy-script-support/src/externalTypes.js').DeployScriptFunction} */
export default async (homeP, endowments) => {
const { writeCoreProposal } = await makeHelpers(homeP, endowments);
await writeCoreProposal('test-vtransfer', defaultProposalBuilder);
Expand Down
1 change: 1 addition & 0 deletions packages/builders/scripts/vats/updateAtomPriceFeed.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ export const defaultProposalBuilder = async ({ publishRef, install }) => {
return priceFeedProposalBuilder({ publishRef, install }, OPTIONS);
};

/** @type {import('@agoric/deploy-script-support/src/externalTypes.js').DeployScriptFunction} */
export default async (homeP, endowments) => {
const { writeCoreEval } = await makeHelpers(homeP, endowments);

Expand Down
1 change: 1 addition & 0 deletions packages/builders/scripts/vats/updateStAtomPriceFeed.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ export const defaultProposalBuilder = async ({ publishRef, install }) => {
return priceFeedProposalBuilder({ publishRef, install }, OPTIONS);
};

/** @type {import('@agoric/deploy-script-support/src/externalTypes.js').DeployScriptFunction} */
export default async (homeP, endowments) => {
const { writeCoreEval } = await makeHelpers(homeP, endowments);

Expand Down
1 change: 1 addition & 0 deletions packages/builders/scripts/vats/updateStOsmoPriceFeed.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ export const defaultProposalBuilder = async ({ publishRef, install }) => {
return priceFeedProposalBuilder({ publishRef, install }, OPTIONS);
};

/** @type {import('@agoric/deploy-script-support/src/externalTypes.js').DeployScriptFunction} */
export default async (homeP, endowments) => {
const { writeCoreEval } = await makeHelpers(homeP, endowments);

Expand Down
1 change: 1 addition & 0 deletions packages/builders/scripts/vats/updateStTiaPriceFeed.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ export const defaultProposalBuilder = async ({ publishRef, install }) => {
return priceFeedProposalBuilder({ publishRef, install }, OPTIONS);
};

/** @type {import('@agoric/deploy-script-support/src/externalTypes.js').DeployScriptFunction} */
export default async (homeP, endowments) => {
const { writeCoreEval } = await makeHelpers(homeP, endowments);

Expand Down
Loading

0 comments on commit 0c5639b

Please sign in to comment.