Skip to content

Commit

Permalink
(NOBIDS) replace erigon repo (#2917)
Browse files Browse the repository at this point in the history
  • Loading branch information
manuelsc authored Jul 22, 2024
1 parent 6f874f3 commit f1aaad9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion ethClients/ethClients.go
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ func updateEthClient() {
ethClients.Geth.ClientReleaseVersion, ethClients.Geth.ClientReleaseDate = prepareEthClientData("/ethereum/go-ethereum", "Geth", curTime)
ethClients.Nethermind.ClientReleaseVersion, ethClients.Nethermind.ClientReleaseDate = prepareEthClientData("/NethermindEth/nethermind", "Nethermind", curTime)
ethClients.Besu.ClientReleaseVersion, ethClients.Besu.ClientReleaseDate = prepareEthClientData("/hyperledger/besu", "Besu", curTime)
ethClients.Erigon.ClientReleaseVersion, ethClients.Erigon.ClientReleaseDate = prepareEthClientData("/ledgerwatch/erigon", "Erigon", curTime)
ethClients.Erigon.ClientReleaseVersion, ethClients.Erigon.ClientReleaseDate = prepareEthClientData("/erigontech/erigon", "Erigon", curTime)

ethClients.Teku.ClientReleaseVersion, ethClients.Teku.ClientReleaseDate = prepareEthClientData("/ConsenSys/teku", "Teku", curTime)
ethClients.Prysm.ClientReleaseVersion, ethClients.Prysm.ClientReleaseDate = prepareEthClientData("/prysmaticlabs/prysm", "Prysm", curTime)
Expand Down
4 changes: 2 additions & 2 deletions services/notifications.go
Original file line number Diff line number Diff line change
Expand Up @@ -2091,7 +2091,7 @@ func (n *ethClientNotification) GetInfo(includeUrl bool) string {
case "Lighthouse":
url = "https://github.com/sigp/lighthouse/releases"
case "Erigon":
url = "https://github.com/ledgerwatch/erigon/releases"
url = "https://github.com/erigontech/erigon/releases"
case "Rocketpool":
url = "https://github.com/rocket-pool/smartnode-install/releases"
case "MEV-Boost":
Expand Down Expand Up @@ -2131,7 +2131,7 @@ func (n *ethClientNotification) GetInfoMarkdown() string {
case "Lighthouse":
url = "https://github.com/sigp/lighthouse/releases"
case "Erigon":
url = "https://github.com/ledgerwatch/erigon/releases"
url = "https://github.com/erigontech/erigon/releases"
case "Rocketpool":
url = "https://github.com/rocket-pool/smartnode-install/releases"
case "MEV-Boost":
Expand Down
4 changes: 2 additions & 2 deletions templates/ethClientsServices.html
Original file line number Diff line number Diff line change
Expand Up @@ -118,10 +118,10 @@ <h1 class="h2 mb-4 font-weight-bold text-primary text-center">Execution Clients<
{{ end }}
</tr>
<tr>
<td data-column="Name"><a href="https://github.com/ledgerwatch/erigon">Erigon </a></td>
<td data-column="Name"><a href="https://github.com/erigontech/erigon">Erigon </a></td>
<td data-column="Language">Go</td>
<td data-column="Network share"><a href="https://ethernodes.org">{{ if .Erigon.NetworkShare }}{{ .Erigon.NetworkShare }}{{ else }}N/a{{ end }}</a></td>
<td data-column="Latest update"><a href="https://github.com/ledgerwatch/erigon/releases">{{ .Erigon.ClientReleaseVersion }}</a> - {{ .Erigon.ClientReleaseDate }}</td>
<td data-column="Latest update"><a href="https://github.com/erigontech/erigon/releases">{{ .Erigon.ClientReleaseVersion }}</a> - {{ .Erigon.ClientReleaseDate }}</td>
<td data-column="Social media">
<a href="https://twitter.com/erigoneth" target="_blank"><i class="fab fa-twitter ml-1 mr-1"></i></a>
</td>
Expand Down

0 comments on commit f1aaad9

Please sign in to comment.