Skip to content

Commit

Permalink
fix: Disable svc manager address & eth rpc as mandatory
Browse files Browse the repository at this point in the history
  • Loading branch information
EthenNotEthan committed Dec 3, 2024
1 parent aeeb503 commit e5b83ad
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion client/simple.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type Config struct {

// SimpleCommitmentClient implements a simple client for the eigenda-proxy
// that can put/get simple commitment data and query the health endpoint.
// It is meant to be used by arbitrum nitro integrations.
// Currently it is meant to be used by Arbitrum nitro integrations but can be extended to others in the future.
// Optimism has its own client: https://github.com/ethereum-optimism/optimism/blob/develop/op-alt-da/daclient.go
// so clients wanting to send op commitment mode data should use that client.
type SimpleCommitmentClient struct {
Expand Down
4 changes: 2 additions & 2 deletions flags/eigendaflags/cli.go
Original file line number Diff line number Diff line change
Expand Up @@ -144,14 +144,14 @@ func CLIFlags(envPrefix, category string) []cli.Flag {
Usage: "URL of the Ethereum RPC endpoint. Needed to confirm blobs landed onchain.",
EnvVars: []string{withEnvPrefix(envPrefix, "ETH_RPC")},
Category: category,
Required: true,
Required: false,
},
&cli.StringFlag{
Name: SvcManagerAddrFlagName,
Usage: "Address of the EigenDAServiceManager contract. Required to confirm blobs landed onchain. See https://github.com/Layr-Labs/eigenlayer-middleware/?tab=readme-ov-file#current-mainnet-deployment",
EnvVars: []string{withEnvPrefix(envPrefix, "SERVICE_MANAGER_ADDR")},
Category: category,
Required: true,
Required: false,
},
// Flags that are proxy specific, and not used by the eigenda-client
// TODO: should we move this to a more specific category, like EIGENDA_STORE?
Expand Down

0 comments on commit e5b83ad

Please sign in to comment.