mirror of
https://github.com/Instadapp/aave-protocol-v2.git
synced 2024-07-29 21:47:30 +00:00
fix: Fix naming of ARC market
This commit is contained in:
parent
e43e046d62
commit
9d2a1d365c
12
README.md
12
README.md
|
@ -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
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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;
|
Loading…
Reference in New Issue
Block a user