Skip to content

Commit

Permalink
chore(cli): fix build, any out .deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
sammccord committed Sep 20, 2024
1 parent 8202c67 commit 652a913
Showing 1 changed file with 15 additions and 9 deletions.
24 changes: 15 additions & 9 deletions packages/cli/src/commands/deploy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,16 +83,22 @@ export const deploy: Command<DeployResult> = async function deploy(opts) {

const options: DeployableOptions = { config, account };

const registry = await new BoostRegistry({
address: null,
...options,
}).deploy();
const registry = await (
new BoostRegistry({
address: null,
...options,
// biome-ignore lint/suspicious/noExplicitAny: we know what we're doing
}) as any
).deploy();

const core = await new BoostCore({
...options,
registryAddress: registry.assertValidAddress(),
protocolFeeReceiver: account.address,
}).deploy();
const core = await (
new BoostCore({
...options,
registryAddress: registry.assertValidAddress(),
protocolFeeReceiver: account.address,
// biome-ignore lint/suspicious/noExplicitAny: we know what we're doing
}) as any
).deploy();

const contractActionBase = await getDeployedContractAddress(
config,
Expand Down

0 comments on commit 652a913

Please sign in to comment.