From 38077475d52d14d4ac50b2dea9b3ee0fe26aa41b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=9Fingen?= Date: Thu, 20 Jan 2022 20:34:27 +0100 Subject: [PATCH] Remove quotes from README .env example Quotes were being included, getting things like for instance `https://eth-kovan.alchemyapi.io/v2/"xxxxxx"` for the URL. --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index d59473e74..5b5ec2a69 100644 --- a/README.md +++ b/README.md @@ -80,23 +80,23 @@ The repository uses Docker Compose to manage sensitive keys and load the configu Follow the next steps to setup the repository: - Install `docker` and `docker-compose` -- Create an enviroment file named `.env` and fill the next enviroment variables +- Create an enviroment file named `.env` and fill the next enviroment variables (without quotes) ``` # Mnemonic, only first address will be used -MNEMONIC="" +MNEMONIC= # Add Alchemy or Infura provider keys, alchemy takes preference at the config level -ALCHEMY_KEY="" -INFURA_KEY="" +ALCHEMY_KEY= +INFURA_KEY= # Optional Etherscan key, for automatize the verification of the contracts at Etherscan -ETHERSCAN_KEY="" +ETHERSCAN_KEY= # Optional, if you plan to use Tenderly scripts -TENDERLY_PROJECT="" -TENDERLY_USERNAME="" +TENDERLY_PROJECT= +TENDERLY_USERNAME= ```