diff --git a/README.md b/README.md index 83ac597..f1d17b3 100644 --- a/README.md +++ b/README.md @@ -139,7 +139,8 @@ To make setting environment variables easier there is a `.env.example` file in t | -------------|------------- | | `REDIS_HOST` | Required for the local persistence layer operation. If not provided the setup will fallback to the default Redis instance which should be running on localhost or 127.0.0.1 if ran with the provided docker compose setup. | | `REDIS_PASSWORD` | Required for the local persistence layer operation. If not provided the setup will fallback to the default Redis password. | -| `PRIVATE_KEY` | Used to make payments in LINK for the Data Streams verifications on-chain and for writing data on-chain on the user provided custom contract. This account will be used to pay for the transaction fees in the respective native currency for the target chain specified. | +| `PRIVATE_KEY_EVM` | Used to make payments in LINK for the EVM Data Streams verifications on-chain and for writing data on-chain on the user provided custom contract. This account will be used to pay for the transaction fees in the respective native currency for the target chain specified. | +| `SECRET_KEY_SVM` | Used to make payments in LINK for the SVM Data Streams verifications on-chain and for writing data on-chain on the user provided custom contract. This account will be used to pay for the transaction fees in the respective native currency for the target chain specified. | | `DATASTREAMS_HOSTNAME` | Chainlink Data Streams Hostname **with protocol prefix** `https://`. Ex.: `https://api.testnet-dataengine.chain.link` | | `DATASTREAMS_WS_HOSTNAME` | WebSocket Hostname for Data Streams **with protocol prefix** `wss://`. Ex.: `wss://ws.testnet-dataengine.chain.link` | | `DATASTREAMS_CLIENT_ID` | Client ID for authentication. | diff --git a/server/config/config.ts b/server/config/config.ts index be96696..33cb865 100644 --- a/server/config/config.ts +++ b/server/config/config.ts @@ -10,7 +10,7 @@ export const config: Config = (() => { try { return load(readFileSync(CONFIG_PATH, 'utf8')) as Config; } catch { - logger.warn('⚠️ No config file provided - proceeding with empty config.'); + logger.warn(`⚠️ No config file provided in ${CONFIG_PATH} - proceeding with empty config.`); return {} as Config; } })();