use the correct deploy contracts function that allow for injecting contracts

This commit is contained in:
undercover-cactus 2025-11-04 13:57:27 +01:00
parent 98dacdd7ef
commit 62665582f5
3 changed files with 1407 additions and 1026 deletions

File diff suppressed because one or more lines are too long

View file

@ -157,7 +157,8 @@ const launchFunction = async (options: LaunchOptions, launchedNetwork: LaunchedN
await launchRelayers(options, launchedNetwork);
await launchStorageHubComponents(options, launchedNetwork);
// Skip launching locally the storage hubs components. FIXME: `launchStorageHubComponents` only works when deploying but not when launching locally.
// await launchStorageHubComponents(options, launchedNetwork);
await performSummaryOperations(options, launchedNetwork);
const fullEnd = performance.now();

View file

@ -1,7 +1,7 @@
import { $ } from "bun";
import { getContainersMatchingImage, getPortFromKurtosis, logger } from "utils";
import { ParameterCollection } from "utils/parameters";
import { deployContracts } from "../contracts";
import { deployContracts } from "../../cli/handlers/launch/contracts";
import { launchLocalDataHavenSolochain } from "../datahaven";
import { getRunningKurtosisEnclaves, launchKurtosisNetwork } from "../kurtosis";
import { setDataHavenParameters } from "../parameters";