2022-08-27 22:42:25 -05:00

14 lines
370 B
C#

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; }
public DateTime? DeployedAt { get; }
public bool IsVerified { get; }
}