26 lines
1023 B
C#
26 lines
1023 B
C#
|
using KubernetesWorkflow;
|
|||
|
|
|||
|
namespace CodexContractsPlugin
|
|||
|
{
|
|||
|
public class CodexContractsContainerRecipe : ContainerRecipeFactory
|
|||
|
{
|
|||
|
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";
|
|||
|
public override string Image => "codexstorage/codex-contracts-eth:latest-dist-tests";
|
|||
|
|
|||
|
protected override void Initialize(StartupConfig startupConfig)
|
|||
|
{
|
|||
|
var config = startupConfig.Get<CodexContractsContainerConfig>();
|
|||
|
|
|||
|
var ip = config.GethNode.RunningContainer.Pod.PodInfo.Ip;
|
|||
|
var port = config.GethNode.HttpPort.Number;
|
|||
|
|
|||
|
AddEnvVar("DISTTEST_NETWORK_URL", $"http://{ip}:{port}");
|
|||
|
AddEnvVar("HARDHAT_NETWORK", "codexdisttestnetwork");
|
|||
|
AddEnvVar("KEEP_ALIVE", "1");
|
|||
|
}
|
|||
|
}
|
|||
|
}
|