mirror of
https://github.com/logos-storage/logos-storage-nim-cs-dist-tests.git
synced 2026-05-25 18:49:25 +00:00
55 lines
1.9 KiB
C#
55 lines
1.9 KiB
C#
using Utils;
|
|
|
|
namespace LogosStorageClient
|
|
{
|
|
public interface ILogosStorageInstance
|
|
{
|
|
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 LogosStorageInstance : ILogosStorageInstance
|
|
{
|
|
public LogosStorageInstance(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; }
|
|
|
|
public static ILogosStorageInstance CreateFromApiEndpoint(string name, Address apiEndpoint, EthAccount? ethAccount = null)
|
|
{
|
|
return new LogosStorageInstance(
|
|
name,
|
|
imageName: "-",
|
|
startUtc: DateTime.UtcNow,
|
|
discoveryEndpoint: Address.Empty(),
|
|
apiEndpoint: apiEndpoint,
|
|
listenEndpoint: Address.Empty(),
|
|
ethAccount: ethAccount,
|
|
metricsEndpoint: null
|
|
);
|
|
}
|
|
}
|
|
}
|