Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(e2e tests): missing new eigenda-client required config fields #196

Merged
merged 9 commits into from
Oct 31, 2024
Next Next commit
fix(e2e tests): missing new eigenda-client required config fields - e…
…thrpc and svcmanageraddr
  • Loading branch information
samlaf committed Oct 30, 2024
commit b652698fcb6e11f837225508e1b0f71ab5dd8c67
5 changes: 4 additions & 1 deletion e2e/setup.go
Original file line number Diff line number Diff line change
Expand Up @@ -183,18 +183,21 @@ func TestSuiteConfig(testCfg *Cfg) server.CLIConfig {
panic(err)
}

svcManagerAddr := "0xD4A7E1Bd8015057293f0D0A557088c286942e84b" // incompatible with non holeskly networks
samlaf marked this conversation as resolved.
Show resolved Hide resolved
eigendaCfg := server.Config{
EdaClientConfig: clients.EigenDAClientConfig{
RPC: holeskyDA,
StatusQueryTimeout: time.Minute * 45,
StatusQueryRetryInterval: pollInterval,
DisableTLS: false,
SignerPrivateKeyHex: pk,
EthRpcUrl: ethRPC,
SvcManagerAddr: svcManagerAddr,
},
VerifierConfig: verify.Config{
VerifyCerts: false,
RPCURL: ethRPC,
SvcManagerAddr: "0xD4A7E1Bd8015057293f0D0A557088c286942e84b", // incompatible with non holeskly networks
SvcManagerAddr: svcManagerAddr,
EthConfirmationDepth: 0,
KzgConfig: &kzg.KzgConfig{
G1Path: "../resources/g1.point",
Expand Down
Loading