2023-04-14 08:51:35 +00:00
|
|
|
|
namespace DistTestCore.Marketplace
|
|
|
|
|
{
|
|
|
|
|
public class MarketplaceInitialConfig
|
|
|
|
|
{
|
2023-06-22 13:58:18 +00:00
|
|
|
|
public MarketplaceInitialConfig(Ether initialEth, TestToken initialTestTokens, bool isValidator)
|
2023-04-14 08:51:35 +00:00
|
|
|
|
{
|
2023-04-18 08:22:11 +00:00
|
|
|
|
InitialEth = initialEth;
|
|
|
|
|
InitialTestTokens = initialTestTokens;
|
2023-06-22 13:58:18 +00:00
|
|
|
|
IsValidator = isValidator;
|
2023-04-14 08:51:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-04-18 08:22:11 +00:00
|
|
|
|
public Ether InitialEth { get; }
|
|
|
|
|
public TestToken InitialTestTokens { get; }
|
2023-06-22 13:58:18 +00:00
|
|
|
|
public bool IsValidator { get; }
|
2023-06-22 12:37:37 +00:00
|
|
|
|
public int? AccountIndexOverride { get; set; }
|
2023-04-14 08:51:35 +00:00
|
|
|
|
}
|
|
|
|
|
}
|