From b6eacf5a3a116fc7fd8b0f234c11941d3424cfd8 Mon Sep 17 00:00:00 2001 From: shivani Date: Mon, 7 Jun 2021 16:31:21 +0530 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20update=20readme?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index b4c0e6e4..fd702b9d 100644 --- a/README.md +++ b/README.md @@ -144,28 +144,38 @@ You can deploy aave-pro with default configuration on kovan. In `markets/aave-pro/commons.ts` make following changes: -- Configure `ProviderRegistryOwner` +- Configure `ProviderRegistryOwner` and `ReserveFactorTreasuryAddress` Set owner to your deployer address with kovan funds. + Set `ReserveFactorTreasuryAddress` to your team's wallet + **Notet:** Script uses first address generated, from `MNEMONIC` provided in `.env` file, as the deployer. ``` ProviderRegistryOwner: { - [eEthereumNetwork.kovan]: '0xyourDeployerAddress', + [eEthereumNetwork.kovan]: '0xYourDeployerAddress', + // Other network settings. You can leave them empty or same + }, + + ReserveFactorTreasuryAddress: { + [eEthereumNetwork.kovan]: '0xYourDeployerAddress, // Other network settings. You can leave them empty or same }, ``` -- Configure to deploy new `ProviderRegistry` +- Configure to deploy new `ProviderRegistry` and `LendingPoolCollateralManager` - Set registry address to empty string to deploy new registry. + Set registry and collateral manager address to empty string to deploy new registry. ``` ProviderRegistry: { [eEthereumNetwork.kovan]: '', // Other network settings. You can leave them empty or same }, + LendingPoolCollateralManager: { + [eEthereumNetwork.kovan]: '', + } ``` - Configure to deploy/initialize `PermissionedWethGateWay`