mirror of
https://github.com/Instadapp/dsa-connectors.git
synced 2024-07-29 22:37:00 +00:00
lint fix
This commit is contained in:
parent
81060d5ed5
commit
ed3fdab7ac
|
@ -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
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -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
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -52,8 +52,8 @@ const networkGasPriceConfig: Record<string, string> = {
|
|||
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",
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue
Block a user