@@ -123,6 +123,7 @@ defmodule ExplorerWeb.Helpers do
123123 case prefix do
124124 "holesky" -> "https://holesky.eigenlayer.xyz"
125125 "mainnet" -> "https://app.eigenlayer.xyz"
126+ "sepolia" -> "https://sepolia.eigenlayer.xyz"
126127 _ -> "http://localhost:4000"
127128 end
128129 end
@@ -134,6 +135,7 @@ defmodule ExplorerWeb.Helpers do
134135 [
135136 { "Mainnet" , "https://explorer.alignedlayer.com" } ,
136137 { "Holesky" , "https://holesky.explorer.alignedlayer.com" } ,
138+ { "Sepolia" , "https://sepolia.explorer.alignedlayer.com" } ,
137139 { "Stage" , "https://stage.explorer.alignedlayer.com" } ,
138140 { "Devnet" , "http://localhost:4000/" }
139141 ]
@@ -143,6 +145,7 @@ defmodule ExplorerWeb.Helpers do
143145 case host do
144146 "explorer.alignedlayer.com" -> "Mainnet"
145147 "holesky.explorer.alignedlayer.com" -> "Holesky"
148+ "sepolia.explorer.alignedlayer.com" -> "Sepolia"
146149 "stage.explorer.alignedlayer.com" -> "Stage"
147150 _ -> "Devnet"
148151 end
@@ -160,6 +163,7 @@ defmodule ExplorerWeb.Helpers do
160163 case prefix do
161164 "mainnet" -> "https://etherscan.io"
162165 "holesky" -> "https://holesky.etherscan.io"
166+ "sepolia" -> "https://sepolia.etherscan.io"
163167 _ -> "http://localhost:4000"
164168 end
165169 end
@@ -176,6 +180,7 @@ defmodule ExplorerWeb.Helpers do
176180 case prefix do
177181 "mainnet" -> "https://blobscan.com/"
178182 "holesky" -> "https://holesky.blobscan.com/"
183+ "sepolia" -> "https://sepolia.blobscan.com/"
179184 _ -> "http://localhost:4000"
180185 end
181186 end
0 commit comments