From ed3fdab7ac26324b53f8f49339a8d3e37c70636d Mon Sep 17 00:00:00 2001 From: pradyuman-verma Date: Sat, 19 Mar 2022 12:55:39 +0530 Subject: [PATCH] lint fix --- .../avalanche/connectors/aave/v2-to-v3-import/main.sol | 6 +++++- contracts/polygon/connectors/aave/v2-to-v3-import/main.sol | 6 +++++- hardhat.config.ts | 6 +++--- package.json | 2 +- 4 files changed, 14 insertions(+), 6 deletions(-) diff --git a/contracts/avalanche/connectors/aave/v2-to-v3-import/main.sol b/contracts/avalanche/connectors/aave/v2-to-v3-import/main.sol index d8fc54bc..c9b992b6 100644 --- a/contracts/avalanche/connectors/aave/v2-to-v3-import/main.sol +++ b/contracts/avalanche/connectors/aave/v2-to-v3-import/main.sol @@ -143,7 +143,11 @@ contract _AaveV2ToV3MigrationResolver is _AaveHelper { payable returns (string memory _eventName, bytes memory _eventParam) { - (_eventName, _eventParam) = _importAave(address(this), inputData, false); + (_eventName, _eventParam) = _importAave( + address(this), + inputData, + false + ); } } diff --git a/contracts/polygon/connectors/aave/v2-to-v3-import/main.sol b/contracts/polygon/connectors/aave/v2-to-v3-import/main.sol index 44f738c2..e4915292 100644 --- a/contracts/polygon/connectors/aave/v2-to-v3-import/main.sol +++ b/contracts/polygon/connectors/aave/v2-to-v3-import/main.sol @@ -151,7 +151,11 @@ contract _AaveV2ToV3MigrationResolver is _AaveHelper { payable returns (string memory _eventName, bytes memory _eventParam) { - (_eventName, _eventParam) = _importAave(address(this), inputData, false); + (_eventName, _eventParam) = _importAave( + address(this), + inputData, + false + ); } } diff --git a/hardhat.config.ts b/hardhat.config.ts index 9b7e4eb6..a9ee4f9b 100644 --- a/hardhat.config.ts +++ b/hardhat.config.ts @@ -52,8 +52,8 @@ const networkGasPriceConfig: Record = { function createConfig(network: string) { return { url: getNetworkUrl(network), - accounts: !!PRIVATE_KEY ? [`0x${PRIVATE_KEY}`] : { mnemonic } - // gasPrice: 1000000, // 0.0001 GWEI + accounts: !!PRIVATE_KEY ? [`0x${PRIVATE_KEY}`] : { mnemonic }, + gasPrice: 35 * 1e9 // 0.0001 GWEI }; } @@ -126,7 +126,7 @@ const config: HardhatUserConfig = { tests: "./test" }, etherscan: { - apiKey: getScanApiKey(String(process.env.networkType)) + apiKey: "CZ1YB396AX4XAQ489Y4NJ33SJBCYZZD1VS" }, typechain: { outDir: "typechain", diff --git a/package.json b/package.json index 0deaf533..84f57114 100644 --- a/package.json +++ b/package.json @@ -35,7 +35,7 @@ "chalk": "^5.0.0", "dotenv": "^10.0.0", "hardhat-docgen": "^1.2.0", - "inquirer": "^8.2.0", + "inquirer": "^8.2.0", "minimist": "^1.2.5", "solc": "^0.8.10", "typechain": "^6.0.5"