Skip to content

Commit 9d70055

Browse files
authored
Merge pull request #170 from stader-labs/move-bloxroute-relay-to-regulated
move bloxroute max profit relay to regulated
2 parents e145599 + e5ed186 commit 9d70055

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

Diff for: go.mod

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ require (
3535
github.com/rivo/tview v0.0.0-20230621164836-6cc0565babaf // indirect
3636
github.com/sethvargo/go-password v0.2.0
3737
github.com/shirou/gopsutil/v3 v3.23.1
38-
github.com/stader-labs/ethcli-ui/configuration v0.0.0-20231220054540-83f130b78833
39-
github.com/stader-labs/ethcli-ui/wizard v0.0.0-20231220054540-83f130b78833
38+
github.com/stader-labs/ethcli-ui/configuration v0.0.0-20231226083422-f3da49b84cc1
39+
github.com/stader-labs/ethcli-ui/wizard v0.0.0-20231226083422-f3da49b84cc1
4040
github.com/tyler-smith/go-bip39 v1.1.0
4141
github.com/urfave/cli v1.22.10
4242
github.com/wealdtech/go-eth2-types/v2 v2.7.0

Diff for: go.sum

+4-4
Original file line numberDiff line numberDiff line change
@@ -1231,10 +1231,10 @@ github.com/spf13/viper v1.0.0/go.mod h1:A8kyI5cUJhb8N+3pkfONlcEcZbueH6nhAm0Fq7Sr
12311231
github.com/spf13/viper v1.3.2/go.mod h1:ZiWeW+zYFKm7srdB9IoDzzZXaJaI5eL9QjNiN/DMA2s=
12321232
github.com/spf13/viper v1.7.0/go.mod h1:8WkrPz2fc9jxqZNCJI/76HCieCp4Q8HaLFoCha5qpdg=
12331233
github.com/src-d/envconfig v1.0.0/go.mod h1:Q9YQZ7BKITldTBnoxsE5gOeB5y66RyPXeue/R4aaNBc=
1234-
github.com/stader-labs/ethcli-ui/configuration v0.0.0-20231220054540-83f130b78833 h1:fdNP6MpGikpxIMTEtdnWVfvNg8yYyXZpx2+pXQd84pg=
1235-
github.com/stader-labs/ethcli-ui/configuration v0.0.0-20231220054540-83f130b78833/go.mod h1:gZcnx3O0sm+mEO2INhKDHw+iUzJH5tPaX4cv5SN5tsQ=
1236-
github.com/stader-labs/ethcli-ui/wizard v0.0.0-20231220054540-83f130b78833 h1:TgwSpUj+rdPQzmHUuQesGm648hRRERzaptISCfoIOUQ=
1237-
github.com/stader-labs/ethcli-ui/wizard v0.0.0-20231220054540-83f130b78833/go.mod h1:5ojn2lxD9wd5sF0KYaHBDcpUC3ACFgqr0XG1atCIeAs=
1234+
github.com/stader-labs/ethcli-ui/configuration v0.0.0-20231226083422-f3da49b84cc1 h1:g0iwUPYfGEvaUkulr5o+40dR9UQFXconbLWN5+/DdoA=
1235+
github.com/stader-labs/ethcli-ui/configuration v0.0.0-20231226083422-f3da49b84cc1/go.mod h1:gZcnx3O0sm+mEO2INhKDHw+iUzJH5tPaX4cv5SN5tsQ=
1236+
github.com/stader-labs/ethcli-ui/wizard v0.0.0-20231226083422-f3da49b84cc1 h1:nmJhcmTlR/SkEg4A8wnkTI4fOSj33786crIyBKHB6eg=
1237+
github.com/stader-labs/ethcli-ui/wizard v0.0.0-20231226083422-f3da49b84cc1/go.mod h1:5ojn2lxD9wd5sF0KYaHBDcpUC3ACFgqr0XG1atCIeAs=
12381238
github.com/status-im/keycard-go v0.0.0-20190316090335-8537d3370df4/go.mod h1:RZLeN1LMWmRsyYjvAu+I6Dm9QmlDaIIt+Y+4Kd7Tp+Q=
12391239
github.com/status-im/keycard-go v0.0.0-20200402102358-957c09536969 h1:Oo2KZNP70KE0+IUJSidPj/BFS/RXNHmKIJOdckzml2E=
12401240
github.com/status-im/keycard-go v0.0.0-20200402102358-957c09536969/go.mod h1:RZLeN1LMWmRsyYjvAu+I6Dm9QmlDaIIt+Y+4Kd7Tp+Q=

Diff for: shared/services/config/geth-params.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ import (
2828

2929
// Constants
3030
const (
31-
gethTagProd string = "ethereum/client-go:v1.13.7"
32-
gethTagTest string = "ethereum/client-go:v1.13.7"
31+
gethTagProd string = "ethereum/client-go:v1.13.8"
32+
gethTagTest string = "ethereum/client-go:v1.13.8"
3333
gethEventLogInterval int = 1000
3434
gethStopSignal string = "SIGTERM"
3535
)

Diff for: shared/services/config/mev-boost-config.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -435,7 +435,7 @@ func createDefaultRelays() []config.MevRelay {
435435
config.Network_Prater: "https://0x821f2a65afb70e7f2e820a925a9b4c80a159620582c1766b1b09729fec178b11ea22abb3a51f07b288be815a1a2ff516@bloxroute.max-profit.builder.goerli.blxrbdn.com?id=staderlabs",
436436
config.Network_Devnet: "https://0x821f2a65afb70e7f2e820a925a9b4c80a159620582c1766b1b09729fec178b11ea22abb3a51f07b288be815a1a2ff516@bloxroute.max-profit.builder.goerli.blxrbdn.com?id=staderlabs",
437437
},
438-
Regulated: false,
438+
Regulated: true,
439439
NoSandwiching: false,
440440
},
441441
// bloXroute Regulated

0 commit comments

Comments
 (0)