2023-09-19 08:24:43 +00:00
|
|
|
|
using CodexContractsPlugin;
|
|
|
|
|
using GethPlugin;
|
|
|
|
|
|
|
|
|
|
namespace CodexPlugin
|
|
|
|
|
{
|
|
|
|
|
public class MarketplaceInitialConfig
|
|
|
|
|
{
|
2023-09-20 06:45:55 +00:00
|
|
|
|
public MarketplaceInitialConfig(IGethNode gethNode, ICodexContracts codexContracts, Ether initialEth, TestToken initialTokens, bool isValidator)
|
2023-09-19 08:24:43 +00:00
|
|
|
|
{
|
|
|
|
|
GethNode = gethNode;
|
|
|
|
|
CodexContracts = codexContracts;
|
2023-09-20 06:45:55 +00:00
|
|
|
|
InitialEth = initialEth;
|
|
|
|
|
InitialTokens = initialTokens;
|
2023-09-19 08:24:43 +00:00
|
|
|
|
IsValidator = isValidator;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public IGethNode GethNode { get; }
|
|
|
|
|
public ICodexContracts CodexContracts { get; }
|
2023-09-20 06:45:55 +00:00
|
|
|
|
public Ether InitialEth { get; }
|
|
|
|
|
public TestToken InitialTokens { get; }
|
2023-09-19 08:24:43 +00:00
|
|
|
|
public bool IsValidator { get; }
|
|
|
|
|
}
|
|
|
|
|
}
|