2025-01-16 11:31:50 +01:00
|
|
|
|
using Utils;
|
|
|
|
|
|
|
|
|
|
|
|
namespace CodexClient
|
|
|
|
|
|
{
|
|
|
|
|
|
public interface ICodexInstance
|
|
|
|
|
|
{
|
|
|
|
|
|
string Name { get; }
|
|
|
|
|
|
string ImageName { get; }
|
|
|
|
|
|
DateTime StartUtc { get; }
|
|
|
|
|
|
Address DiscoveryEndpoint { get; }
|
|
|
|
|
|
Address ApiEndpoint { get; }
|
|
|
|
|
|
Address ListenEndpoint { get; }
|
|
|
|
|
|
EthAccount? EthAccount { get; }
|
|
|
|
|
|
Address? MetricsEndpoint { get; }
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public class CodexInstance : ICodexInstance
|
|
|
|
|
|
{
|
|
|
|
|
|
public CodexInstance(string name, string imageName, DateTime startUtc, Address discoveryEndpoint, Address apiEndpoint, Address listenEndpoint, EthAccount? ethAccount, Address? metricsEndpoint)
|
|
|
|
|
|
{
|
|
|
|
|
|
Name = name;
|
|
|
|
|
|
ImageName = imageName;
|
|
|
|
|
|
StartUtc = startUtc;
|
|
|
|
|
|
DiscoveryEndpoint = discoveryEndpoint;
|
|
|
|
|
|
ApiEndpoint = apiEndpoint;
|
|
|
|
|
|
ListenEndpoint = listenEndpoint;
|
|
|
|
|
|
EthAccount = ethAccount;
|
|
|
|
|
|
MetricsEndpoint = metricsEndpoint;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public string Name { get; }
|
|
|
|
|
|
public string ImageName { get; }
|
|
|
|
|
|
public DateTime StartUtc { get; }
|
|
|
|
|
|
public Address DiscoveryEndpoint { get; }
|
|
|
|
|
|
public Address ApiEndpoint { get; }
|
|
|
|
|
|
public Address ListenEndpoint { get; }
|
|
|
|
|
|
public EthAccount? EthAccount { get; }
|
|
|
|
|
|
public Address? MetricsEndpoint { get; }
|
2025-01-16 15:13:16 +01:00
|
|
|
|
|
2025-02-22 14:41:05 +01:00
|
|
|
|
public static ICodexInstance CreateFromApiEndpoint(string name, Address apiEndpoint, EthAccount? ethAccount = null)
|
2025-01-16 15:13:16 +01:00
|
|
|
|
{
|
|
|
|
|
|
return new CodexInstance(
|
|
|
|
|
|
name,
|
|
|
|
|
|
imageName: "-",
|
|
|
|
|
|
startUtc: DateTime.UtcNow,
|
|
|
|
|
|
discoveryEndpoint: Address.Empty(),
|
|
|
|
|
|
apiEndpoint: apiEndpoint,
|
|
|
|
|
|
listenEndpoint: Address.Empty(),
|
2025-02-22 14:41:05 +01:00
|
|
|
|
ethAccount: ethAccount,
|
2025-01-16 15:13:16 +01:00
|
|
|
|
metricsEndpoint: null
|
|
|
|
|
|
);
|
|
|
|
|
|
}
|
2025-01-16 11:31:50 +01:00
|
|
|
|
}
|
|
|
|
|
|
}
|