mirror of
https://github.com/Instadapp/aave-protocol-v2.git
synced 2024-07-29 21:47:30 +00:00
✨ update readme
This commit is contained in:
parent
639e2c3a46
commit
b6eacf5a3a
18
README.md
18
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:
|
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 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.
|
**Notet:** Script uses first address generated, from `MNEMONIC` provided in `.env` file, as the deployer.
|
||||||
|
|
||||||
```
|
```
|
||||||
ProviderRegistryOwner: {
|
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
|
// 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: {
|
ProviderRegistry: {
|
||||||
[eEthereumNetwork.kovan]: '',
|
[eEthereumNetwork.kovan]: '',
|
||||||
// Other network settings. You can leave them empty or same
|
// Other network settings. You can leave them empty or same
|
||||||
},
|
},
|
||||||
|
LendingPoolCollateralManager: {
|
||||||
|
[eEthereumNetwork.kovan]: '',
|
||||||
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
- Configure to deploy/initialize `PermissionedWethGateWay`
|
- Configure to deploy/initialize `PermissionedWethGateWay`
|
||||||
|
|
Loading…
Reference in New Issue
Block a user