fix: Fix naming of ARC market

This commit is contained in:
miguelmtzinf 2021-11-03 14:27:44 +01:00
parent e43e046d62
commit 9d2a1d365c
3 changed files with 10 additions and 10 deletions

View File

@ -138,11 +138,11 @@ docker-compose exec contracts-env bash
npm run aave:kovan:full:migration
```
### Kovan Aave Pro Deployment
### Kovan Aave ARC Deployment
You can deploy aave-pro with default configuration on kovan.
You can deploy aave-arc with default configuration on kovan.
In `markets/aave-pro/commons.ts` make following changes:
In `markets/aave-arc/commons.ts` make following changes:
- Configure `ProviderRegistryOwner` and `ReserveFactorTreasuryAddress`
@ -189,7 +189,7 @@ In `markets/aave-pro/commons.ts` make following changes:
},
```
**Note:** To configure aave pro market you can update `markets/aave-pro/`
**Note:** To configure aave arc market you can update `markets/aave-arc/`
#### Deploy Market
@ -203,13 +203,13 @@ docker-compose up
docker-compose exec contracts-env bash
# A new Bash terminal is prompted, connected to the container
npm run pro:kovan:full:migration
npm run arc:kovan:full:migration
```
**Without Docker**
```
npm run pro:kovan:full:migration
npm run arc:kovan:full:migration
```
### Mainnet fork deployment

View File

@ -64,9 +64,9 @@
"aave:main:full:migration": "npm run compile && npm run hardhat:main -- aave:mainnet --verify",
"aave:main:full:initialize": "npm run compile && FORK=main full:initialize-tokens --pool Aave",
"amm:main:full:migration": "npm run compile && npm run hardhat:main -- amm:mainnet --verify",
"pro:fork:kovan": "npm run compile && FORK=kovan hardhat pro:mainnet",
"pro:kovan:full:migration": "npm run compile && npm run hardhat:kovan -- pro:mainnet --verify",
"pro:main:full:migration": "npm run compile && npm run hardhat:main -- pro:mainnet --verify",
"arc:fork:kovan": "npm run compile && FORK=kovan hardhat pro:mainnet",
"arc:kovan:full:migration": "npm run compile && npm run hardhat:kovan -- pro:mainnet --verify",
"arc:main:full:migration": "npm run compile && npm run hardhat:main -- pro:mainnet --verify",
"prettier:check": "npx prettier -c 'tasks/**/*.ts' 'contracts/**/*.sol' 'helpers/**/*.ts' 'test-suites/test-aave/**/*.ts'",
"prettier:write": "prettier --write 'tasks/**/*.ts' 'contracts/**/*.sol' 'helpers/**/*.ts' 'test-suites/test-aave/**/*.ts'",
"ci:test": "npm run compile && npm run test",

View File

@ -4,7 +4,7 @@ import { ConfigNames } from '../../helpers/configuration';
import { printContracts } from '../../helpers/misc-utils';
import { usingTenderly } from '../../helpers/tenderly-utils';
task('pro:mainnet', 'Deploy development enviroment')
task('arc:mainnet', 'Deploy development enviroment')
.addFlag('verify', 'Verify contracts at Etherscan')
.setAction(async ({ verify }, DRE) => {
const POOL_NAME = ConfigNames.Arc;