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

update rate limit config #4

Merged
merged 4 commits into from
Nov 11, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion .env
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,11 @@ NODE_NUM_WORKERS=1
NODE_SRS_ORDER=300000
NODE_CHALLENGER_ORDER=3000
NODE_DISPERSAL_PORT=32005
NODE_INTERNAL_DISPERSAL_PORT=${NODE_DISPERSAL_PORT}
NODE_QUORUM_ID_LIST=0
NODE_VERBOSE=true
NODE_RETRIEVAL_PORT=32004
NODE_INTERNAL_RETRIEVAL_PORT=${NODE_RETRIEVAL_PORT}
NODE_TIMEOUT=20s
NODE_ENABLE_NODE_API=true

Expand All @@ -41,7 +43,15 @@ NODE_EIGENDA_SERVICE_MANAGER=0x9FcE30E01a740660189bD8CbEaA48Abd36040010
NODE_BLS_OPERATOR_STATE_RETRIVER=0x737Dd62816a9392e84Fa21C531aF77C00816A3a3

# Churner URL
NODE_CHURNER_URL=churner.eigenda-preprod.eigenops.xyz:443
NODE_CHURNER_URL=churner-goerli.eigenda-testnet.eigenops.xyz:443

# The name of the header used to get the client IP address
# If set to empty string, the IP address will be taken from the connection.
# The rightmost value of the header will be used.
NODE_CLIENT_IP_HEADER=x-real-ip

# goerli testnet disperser ip
NAT_GATEWAY_IP=3.221.120.68

###############################################################################
####### TODO: Operators please update below values for your node ##############
Expand Down
8 changes: 0 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,6 @@ git clone https://github.comLayr-Labs/eigenda-operator-setup.git
cd eigenda-operator-setup
chmod +x run.sh
```

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I am removing this since this is not idea. they have to download more than this for successfully running with this setup. there's instructions to clone above it.

#### Download files
```bash
wget https://raw.githubusercontent.com/Layr-Labs/eigenda-operator-setup/master/docker-compose.yml
wget https://raw.githubusercontent.com/Layr-Labs/eigenda-operator-setup/master/.env
wget https://raw.githubusercontent.com/Layr-Labs/eigenda-operator-setup/master/run.sh
chmod +x run.sh
```
Update the `TODO` sections in the `.env` file given in the root directory of the repository with your own details.:

### Create some local folders which are required by EigenDA
Expand Down
1 change: 1 addition & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ services:
environment:
- REQUEST_LIMIT=1r/s
- NODE_HOST=${MAIN_SERVICE_NAME}
- BURST_LIMIT=2
env_file:
- .env
da-node:
Expand Down
Loading