2023-10-23 13:28:20 +00:00
|
|
|
|
using GethPlugin;
|
|
|
|
|
using KubernetesWorkflow;
|
2023-11-07 11:02:17 +00:00
|
|
|
|
using Logging;
|
2023-09-15 14:27:08 +00:00
|
|
|
|
|
|
|
|
|
namespace CodexContractsPlugin
|
|
|
|
|
{
|
|
|
|
|
public class CodexContractsContainerRecipe : ContainerRecipeFactory
|
|
|
|
|
{
|
2023-10-20 06:31:23 +00:00
|
|
|
|
public static string DockerImage { get; } = "codexstorage/codex-contracts-eth:sha-1854dfb-dist-tests";
|
2023-09-19 11:58:45 +00:00
|
|
|
|
|
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-11-08 08:24:39 +00:00
|
|
|
|
var address = config.GethNode.StartResult.Container.GetAddress(new NullLog(), GethContainerRecipe.HttpPortTag);
|
2023-10-23 13:28:20 +00:00
|
|
|
|
|
2023-10-23 14:12:45 +00:00
|
|
|
|
AddEnvVar("DISTTEST_NETWORK_URL", address.ToString());
|
2023-09-15 14:27:08 +00:00
|
|
|
|
AddEnvVar("HARDHAT_NETWORK", "codexdisttestnetwork");
|
|
|
|
|
AddEnvVar("KEEP_ALIVE", "1");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|