File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
1611611 . 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
You can’t perform that action at this time.
0 commit comments