-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from Layr-Labs/epociask--chore-cleanup-dead-code
chore(op-plasma-eigenda): Remove dead and unecessary code
- Loading branch information
Showing
26 changed files
with
275 additions
and
2,551 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
# Server listening address | ||
EIGEN_PLASMA_SERVER_ADDR=127.0.0.1 | ||
|
||
# Server listening port (default: 3100) | ||
EIGEN_PLASMA_SERVER_PORT=3100 | ||
|
||
# Directory path to SRS tables | ||
EIGEN_PLASMA_SERVER_EIGENDA_CACHE_PATH= | ||
|
||
# Directory path to g1.point file | ||
EIGEN_PLASMA_SERVER_EIGENDA_KZG_G1_PATH= | ||
|
||
# Directory path to g2.point.powerOf2 file | ||
EIGEN_PLASMA_SERVER_EIGENDA_G2_TAU_PATH= | ||
|
||
# RPC endpoint of the EigenDA disperser | ||
EIGEN_PLASMA_SERVER_EIGENDA_RPC= | ||
|
||
# Wait time between retries of EigenDA blob status queries (default: 5s) | ||
EIGEN_PLASMA_SERVER_EIGENDA_STATUS_QUERY_INTERVAL=5s | ||
|
||
# Timeout for aborting an EigenDA blob dispersal (default: 25m0s) | ||
EIGEN_PLASMA_SERVER_EIGENDA_STATUS_QUERY_TIMEOUT=25m0s | ||
|
||
# Use TLS when connecting to the EigenDA disperser (default: true) | ||
EIGEN_PLASMA_SERVER_EIGENDA_GRPC_USE_TLS=true | ||
|
||
# Color the log output if in terminal mode (default: false) | ||
EIGEN_PLASMA_SERVER_LOG_COLOR=false | ||
|
||
# Format the log output (default: text) | ||
# Supported formats: 'text', 'terminal', 'logfmt', 'json', 'json-pretty' | ||
EIGEN_PLASMA_SERVER_LOG_FORMAT=text | ||
|
||
# The lowest log level that will be output (default: INFO) | ||
EIGEN_PLASMA_SERVER_LOG_LEVEL=INFO | ||
|
||
# Metrics listening address (default: 0.0.0.0) | ||
EIGEN_PLASMA_SERVER_METRICS_ADDR=0.0.0.0 | ||
|
||
# Enable the metrics server (default: false) | ||
EIGEN_PLASMA_SERVER_METRICS_ENABLED=false | ||
|
||
# Metrics listening port (default: 7300) | ||
EIGEN_PLASMA_SERVER_METRICS_PORT=7300 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,6 +40,8 @@ jobs: | |
- name: Run Unit Tests | ||
id: unit | ||
run: | | ||
make submodules && | ||
make srs && | ||
make test | ||
|
||
gosec: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,6 +21,7 @@ | |
go.work | ||
|
||
/bin | ||
.env | ||
|
||
## kzg cache | ||
test/resources/SRSTables/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[submodule "operator-setup"] | ||
path = operator-setup | ||
url = https://github.com/Layr-Labs/eigenda-operator-setup.git |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.