Skip to content

Commit

Permalink
fix(e2e tests): missing new eigenda-client required config fields - e…
Browse files Browse the repository at this point in the history
…thrpc and svcmanageraddr
  • Loading branch information
samlaf committed Oct 30, 2024
1 parent c6ab8fb commit b652698
Showing 1 changed file with 4 additions and 1 deletion.
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
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

0 comments on commit b652698

Please sign in to comment.