Skip to content

Commit ea8a669

Browse files
author
vcart
committed
chore: update README
1 parent f19a4cf commit ea8a669

1 file changed

Lines changed: 6 additions & 5 deletions

File tree

README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -156,16 +156,17 @@ npm install
156156

157157
## ⚙️ Configuration
158158

159-
The server uses public RPC endpoints by default for all supported networks. For production use, you can configure custom RPC providers by:
159+
The server uses public RPC endpoints by default for all supported networks. For production use, you can configure server settings by:
160160

161161
1. Create a `.env` file in the project root
162-
2. Add custom RPC URLs for any networks you want to override:
162+
2. Add custom configurations for any settings you want to override:
163163

164164
```env
165165
# Example .env configuration
166-
ETHEREUM_RPC_URL=https://your-custom-ethereum-rpc.com
167-
OPTIMISM_RPC_URL=https://your-custom-optimism-rpc.com
168-
ARBITRUM_RPC_URL=https://your-custom-arbitrum-rpc.com
166+
DEFAULT_CHAIN_ID=1 # The default chain ID to use if no chain ID is provided (default: Ethereum Mainnet)
167+
SERVER_PORT=3001 # The port to run the server on (default: 3001)
168+
SERVER_HOST=localhost # The host to run the server on (default: localhost)
169+
169170
```
170171

171172
## 🚀 Usage

0 commit comments

Comments
 (0)