14 lines
370 B
C#
Raw Normal View History

2022-08-27 21:39:40 -05:00
namespace NftFaucetRadzen.Plugins.NetworkPlugins;
public interface IContract
{
public Guid Id { get; }
public string Name { get; }
public string Symbol { get; }
public string Address { get; }
public ContractType Type { get; }
public string DeploymentTxHash { get; }
2022-08-27 22:32:35 -05:00
public DateTime? DeployedAt { get; }
2022-08-27 21:39:40 -05:00
public bool IsVerified { get; }
}