2023-09-19 09:51:59 +00:00
|
|
|
|
using GethPlugin;
|
|
|
|
|
|
|
|
|
|
namespace CodexPlugin
|
2023-09-19 08:24:43 +00:00
|
|
|
|
{
|
|
|
|
|
[Serializable]
|
|
|
|
|
public class MarketplaceStartResults
|
|
|
|
|
{
|
2023-09-20 08:13:29 +00:00
|
|
|
|
public MarketplaceStartResults(EthAddress ethAddress, string privateKey)
|
2023-09-19 08:24:43 +00:00
|
|
|
|
{
|
|
|
|
|
EthAddress = ethAddress;
|
|
|
|
|
PrivateKey = privateKey;
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-20 08:13:29 +00:00
|
|
|
|
public EthAddress EthAddress { get; }
|
2023-09-19 08:24:43 +00:00
|
|
|
|
public string PrivateKey { get; }
|
|
|
|
|
}
|
|
|
|
|
}
|