Add custom network

This commit is contained in:
Ivan Yaremenchuk 2022-08-19 22:23:45 -05:00
parent edd369e9fb
commit 02b694739c

View File

@ -35,7 +35,7 @@ namespace NftFaucetRadzen.Pages
{
new NetworkModel
{
Name = "Ethereum Mainnet",
Name = "Mainnet",
ChainId = 1,
Currency = "ETH",
ImageName = "ethereum.svg",
@ -96,6 +96,15 @@ namespace NftFaucetRadzen.Pages
IsSupported = false,
IsTestnet = true,
},
new NetworkModel
{
Name = "Custom",
ChainId = 1337,
Currency = "???",
ImageName = "ethereum.svg",
IsSupported = false,
IsTestnet = true,
},
};
}
}