2024-11-21 15:10:53 +01:00
|
|
|
|
using CodexContractsPlugin.Marketplace;
|
|
|
|
|
|
|
|
|
|
|
|
namespace CodexContractsPlugin
|
2023-09-20 09:16:57 +02:00
|
|
|
|
{
|
2023-09-20 10:13:29 +02:00
|
|
|
|
public class CodexContractsDeployment
|
2023-09-20 09:16:57 +02:00
|
|
|
|
{
|
2024-11-21 15:10:53 +01:00
|
|
|
|
public CodexContractsDeployment(MarketplaceConfig config, string marketplaceAddress, string abi, string tokenAddress)
|
2023-09-20 09:16:57 +02:00
|
|
|
|
{
|
2024-11-21 15:10:53 +01:00
|
|
|
|
Config = config;
|
2023-09-20 09:16:57 +02:00
|
|
|
|
MarketplaceAddress = marketplaceAddress;
|
|
|
|
|
|
Abi = abi;
|
|
|
|
|
|
TokenAddress = tokenAddress;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2024-11-21 15:10:53 +01:00
|
|
|
|
public MarketplaceConfig Config { get; }
|
2023-09-20 09:16:57 +02:00
|
|
|
|
public string MarketplaceAddress { get; }
|
|
|
|
|
|
public string Abi { get; }
|
|
|
|
|
|
public string TokenAddress { get; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|