diff --git a/README.md b/README.md index fd702b9d..829dff02 100644 --- a/README.md +++ b/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 diff --git a/package.json b/package.json index 82709a2f..b356a9b1 100644 --- a/package.json +++ b/package.json @@ -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", diff --git a/tasks/migrations/pro.mainnet.ts b/tasks/migrations/arc.mainnet.ts similarity index 97% rename from tasks/migrations/pro.mainnet.ts rename to tasks/migrations/arc.mainnet.ts index 670cdb22..500bb7d0 100644 --- a/tasks/migrations/pro.mainnet.ts +++ b/tasks/migrations/arc.mainnet.ts @@ -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; diff --git a/test.log b/test.log deleted file mode 100644 index e69de29b..00000000