Add lending provider kovan address at deploy-UniswapRepayAdapter task

This commit is contained in:
David Racero 2020-11-30 14:27:56 +01:00
parent a21757d0fc
commit c22533f139

View File

@ -2,6 +2,7 @@ import { task } from 'hardhat/config';
import { UniswapRepayAdapterFactory } from '../../types'; import { UniswapRepayAdapterFactory } from '../../types';
import { verifyContract } from '../../helpers/etherscan-verification'; import { verifyContract } from '../../helpers/etherscan-verification';
import { getFirstSigner } from '../../helpers/contracts-getters';
const CONTRACT_NAME = 'UniswapRepayAdapter'; const CONTRACT_NAME = 'UniswapRepayAdapter';
@ -16,12 +17,15 @@ task(`deploy-${CONTRACT_NAME}`, `Deploys the UniswapRepayAdapter contract`)
console.log(`\n- UniswapRepayAdapter deployment`); console.log(`\n- UniswapRepayAdapter deployment`);
const args = [ const args = [
'0x9fe532197ad76c5a68961439604c037eb79681f0', '0x88757f2f99175387aB4C6a4b3067c77A695b0349', // lending provider kovan address
'0xfcd87315f0e4067070ade8682fcdbc3006631441', '0xfcd87315f0e4067070ade8682fcdbc3006631441', // uniswap router address
]; ];
const uniswapRepayAdapter = await new UniswapRepayAdapterFactory( console.log('before');
await localBRE.ethers.provider.getSigner() const uniswapRepayAdapter = await new UniswapRepayAdapterFactory(await getFirstSigner()).deploy(
).deploy(args[0], args[1]); args[0],
args[1]
);
console.log('afta');
await uniswapRepayAdapter.deployTransaction.wait(); await uniswapRepayAdapter.deployTransaction.wait();
console.log('uniswapRepayAdapter.address', uniswapRepayAdapter.address); console.log('uniswapRepayAdapter.address', uniswapRepayAdapter.address);
await verifyContract(uniswapRepayAdapter.address, args); await verifyContract(uniswapRepayAdapter.address, args);