Add support for sepolia testnet
This commit is contained in:
parent
fb8d5d8921
commit
82b003f29b
|
@ -17,6 +17,8 @@ const WarningHeader: React.FC = () => {
|
||||||
chainMsg = "Görli Testnet";
|
chainMsg = "Görli Testnet";
|
||||||
} else if (chainId === 42) {
|
} else if (chainId === 42) {
|
||||||
chainMsg = "Kovan Testnet";
|
chainMsg = "Kovan Testnet";
|
||||||
|
} else if (chainId === 11155111) {
|
||||||
|
chainMsg = "Sepolia Testnet";
|
||||||
}
|
}
|
||||||
return (
|
return (
|
||||||
<div className="w-full bg-orange-400 text-white text-center font-bold px-2 py-1">
|
<div className="w-full bg-orange-400 text-white text-center font-bold px-2 py-1">
|
||||||
|
|
Loading…
Reference in New Issue