2023-09-15 14:27:08 +00:00
|
|
|
|
using KubernetesWorkflow;
|
|
|
|
|
|
|
|
|
|
namespace CodexContractsPlugin
|
|
|
|
|
{
|
|
|
|
|
public class CodexContractsContainerRecipe : ContainerRecipeFactory
|
|
|
|
|
{
|
2023-09-19 11:58:45 +00:00
|
|
|
|
public static string DockerImage { get; } = "codexstorage/codex-contracts-eth:latest-dist-tests";
|
|
|
|
|
|
2023-09-15 14:27:08 +00:00
|
|
|
|
public const string MarketplaceAddressFilename = "/hardhat/deployments/codexdisttestnetwork/Marketplace.json";
|
|
|
|
|
public const string MarketplaceArtifactFilename = "/hardhat/artifacts/contracts/Marketplace.sol/Marketplace.json";
|
|
|
|
|
|
|
|
|
|
public override string AppName => "codex-contracts";
|
2023-09-19 11:58:45 +00:00
|
|
|
|
public override string Image => DockerImage;
|
2023-09-15 14:27:08 +00:00
|
|
|
|
|
|
|
|
|
protected override void Initialize(StartupConfig startupConfig)
|
|
|
|
|
{
|
|
|
|
|
var config = startupConfig.Get<CodexContractsContainerConfig>();
|
|
|
|
|
|
2023-09-21 08:56:48 +00:00
|
|
|
|
var ip = config.GethNode.StartResult.Container.Pod.PodInfo.Ip;
|
2023-09-19 09:51:59 +00:00
|
|
|
|
var port = config.GethNode.StartResult.HttpPort.Number;
|
2023-09-15 14:27:08 +00:00
|
|
|
|
|
|
|
|
|
AddEnvVar("DISTTEST_NETWORK_URL", $"http://{ip}:{port}");
|
|
|
|
|
AddEnvVar("HARDHAT_NETWORK", "codexdisttestnetwork");
|
|
|
|
|
AddEnvVar("KEEP_ALIVE", "1");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|