Skip to content

Commit

Permalink
fix: import and expose the verifier flags
Browse files Browse the repository at this point in the history
  • Loading branch information
samlaf committed Sep 29, 2024
1 parent db9d13b commit 5000e33
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions flags/flags.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import (
"github.com/Layr-Labs/eigenda-proxy/store/generated_key/memstore"
"github.com/Layr-Labs/eigenda-proxy/store/precomputed_key/redis"
"github.com/Layr-Labs/eigenda-proxy/store/precomputed_key/s3"
"github.com/Layr-Labs/eigenda-proxy/verify"
"github.com/urfave/cli/v2"

opservice "github.com/ethereum-optimism/optimism/op-service"
Expand All @@ -17,6 +18,7 @@ const (
MemstoreFlagsCategory = "Memstore (replaces EigenDA when enabled)"
RedisCategory = "Redis Cache/Fallback"
S3Category = "S3 Cache/Fallback"
VerifierCategory = "KZG and Cert Verifier"
)

const (
Expand Down Expand Up @@ -77,4 +79,5 @@ func init() {
Flags = append(Flags, redis.CLIFlags(EnvVarPrefix, RedisCategory)...)
Flags = append(Flags, s3.CLIFlags(EnvVarPrefix, S3Category)...)
Flags = append(Flags, memstore.CLIFlags(EnvVarPrefix, MemstoreFlagsCategory)...)
Flags = append(Flags, verify.CLIFlags(EnvVarPrefix, VerifierCategory)...)
}

0 comments on commit 5000e33

Please sign in to comment.