mirror of
https://github.com/status-im/nft-faucet.git
synced 2025-02-24 12:38:30 +00:00
19 lines
576 B
C#
19 lines
576 B
C#
namespace NftFaucetRadzen.Plugins.NetworkPlugins;
|
|
|
|
public interface INetwork
|
|
{
|
|
public Guid Id { get; }
|
|
public string Name { get; }
|
|
public string ShortName { get; }
|
|
public ulong? ChainId { get; }
|
|
public int? Order { get; }
|
|
public string Currency { get; }
|
|
public string ImageName { get; }
|
|
public bool IsSupported { get; }
|
|
public bool IsTestnet { get; }
|
|
public bool IsDeprecated { get; }
|
|
public NetworkType Type { get; }
|
|
public NetworkSubtype SubType { get; }
|
|
public IReadOnlyCollection<IContract> DeployedContracts { get; }
|
|
}
|