mirror of
https://github.com/status-im/nft-faucet.git
synced 2025-02-25 21:15:30 +00:00
18 lines
753 B
C#
18 lines
753 B
C#
|
namespace NftFaucetRadzen.Plugins.NetworkPlugins.Ethereum.Networks;
|
||
|
|
||
|
public class SepoliaNetwork : INetwork
|
||
|
{
|
||
|
public Guid Id { get; } = Guid.Parse("3e792942-4f46-40a9-b2c7-e44a975678bc");
|
||
|
public string Name { get; } = "Sepolia";
|
||
|
public string ShortName { get; } = "Sepolia";
|
||
|
public ulong? ChainId { get; } = 11155111;
|
||
|
public string Currency { get; } = "SEP";
|
||
|
public string ImageName { get; } = "ethereum-gray.svg";
|
||
|
public bool IsSupported { get; } = false;
|
||
|
public bool IsTestnet { get; } = true;
|
||
|
public bool IsDeprecated { get; } = false;
|
||
|
public NetworkType Type { get; } = NetworkType.Ethereum;
|
||
|
public string Erc721ContractAddress { get; } = null;
|
||
|
public string Erc1155ContractAddress { get; } = null;
|
||
|
}
|