mirror of
https://github.com/datahaven-xyz/datahaven
synced 2026-05-24 01:38:32 +00:00
use the correct deploy contracts function that allow for injecting contracts
This commit is contained in:
parent
98dacdd7ef
commit
62665582f5
3 changed files with 1407 additions and 1026 deletions
File diff suppressed because one or more lines are too long
|
|
@ -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();
|
||||
|
|
|
|||
|
|
@ -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";
|
||||
|
|
|
|||
Loading…
Reference in a new issue