Skip to content

Commit

Permalink
Add Checkpoints to Sync for Holesky (#1552)
Browse files Browse the repository at this point in the history
  • Loading branch information
mabasian authored Nov 11, 2023
1 parent b2de63d commit b4f34b5
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 3 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,9 @@ export default {
case 4:
this.selectedLinks = this.gnosis;
break;
case 5:
this.selectedLinks = this.holesky;
break;
default:
break;
}
Expand Down
31 changes: 28 additions & 3 deletions launcher/src/store/clickInstallation.js
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ export const useClickInstall = defineStore("clickInstallation", {
{
id: 2,
name: "Lodestar",
icon: "",
icon: "/img/icon/service-icons/lodestar.png",
url: "https://beaconstate-mainnet.chainsafe.io/",
},
{
Expand Down Expand Up @@ -221,7 +221,7 @@ export const useClickInstall = defineStore("clickInstallation", {
{
id: 7,
name: "Lodestar",
icon: "",
icon: "/img/icon/service-icons/lodestar.png",
url: "https://beaconstate-goerli.chainsafe.io/",
},

Expand Down Expand Up @@ -250,7 +250,32 @@ export const useClickInstall = defineStore("clickInstallation", {
url: "https://checkpoint.gnosischain.com/",
},
],
holesky: [],
holesky: [
{
id: 1,
name: "Lodestar",
icon: "/img/icon/service-icons/lodestar.png",
url: "https://beaconstate-holesky.chainsafe.io",
},
{
id: 2,
name: "BeaconState.info",
icon: "",
url: "https://holesky.beaconstate.info",
},
{
id: 3,
name: "EthStaker",
icon: "/img/icon/service-icons/ethstaker.png",
url: "https://holesky.beaconstate.ethstaker.cc",
},
{
id: 4,
name: "EF DevOps",
icon: "/img/icon/service-icons/ef-devops.png",
url: "https://checkpoint-sync.holesky.ethpandaops.io",
},
],
};
},
actions: {},
Expand Down

0 comments on commit b4f34b5

Please sign in to comment.