mirror of
https://github.com/Instadapp/aave-protocol-v2.git
synced 2024-07-29 21:47:30 +00:00
Moved gas-tracker.ts into ./helpers and updated references
This commit is contained in:
parent
f590040c60
commit
039e00fdb0
|
@ -18,7 +18,7 @@ import { Artifact as BuidlerArtifact } from '@nomiclabs/buidler/types';
|
|||
import { verifyContract } from './etherscan-verification';
|
||||
import { getIErc20Detailed } from './contracts-getters';
|
||||
import { usingTenderly } from './tenderly-utils';
|
||||
import { addGas, totalGas } from '../gas-tracker';
|
||||
import { addGas, totalGas } from './gas-tracker';
|
||||
|
||||
export type MockTokenMap = { [symbol: string]: MintableERC20 };
|
||||
|
||||
|
|
|
@ -26,7 +26,7 @@ import {
|
|||
} from './contracts-deployments';
|
||||
import { ZERO_ADDRESS } from './constants';
|
||||
import { isZeroAddress } from 'ethereumjs-util';
|
||||
import { addGas } from '../gas-tracker';
|
||||
import { addGas } from './gas-tracker';
|
||||
import { getTreasuryAddress } from './configuration';
|
||||
|
||||
export const chooseATokenDeployment = (id: eContractid) => {
|
||||
|
|
|
@ -13,7 +13,7 @@ import {MockAggregator} from '../types/MockAggregator';
|
|||
import {deployMockAggregator} from './contracts-deployments';
|
||||
import {chunk, waitForTx} from './misc-utils';
|
||||
import {getStableAndVariableTokensHelper} from './contracts-getters';
|
||||
import { addGas } from '../gas-tracker';
|
||||
import { addGas } from './gas-tracker';
|
||||
|
||||
export const setInitialMarketRatesInRatesOracleByHelper = async (
|
||||
marketRates: iMultiPoolsAssets<IMarketRates>,
|
||||
|
|
|
@ -20,7 +20,7 @@ import { formatEther, isAddress, parseEther } from 'ethers/lib/utils';
|
|||
import { isZeroAddress } from 'ethereumjs-util';
|
||||
import { Signer, BigNumber } from 'ethers';
|
||||
import { parse } from 'path';
|
||||
import { addGas } from '../../gas-tracker';
|
||||
import { addGas } from '../../helpers/gas-tracker';
|
||||
//import BigNumber from 'bignumber.js';
|
||||
|
||||
task(
|
||||
|
|
|
@ -17,7 +17,7 @@ import {
|
|||
getLendingRateOracle,
|
||||
getPairsTokenAggregator,
|
||||
} from '../../helpers/contracts-getters';
|
||||
import { addGas } from '../../gas-tracker';
|
||||
import { addGas } from '../../helpers/gas-tracker';
|
||||
|
||||
task('full:deploy-oracles', 'Deploy oracles for dev enviroment')
|
||||
.addFlag('verify', 'Verify contracts at Etherscan')
|
||||
|
|
|
@ -21,7 +21,7 @@ import {
|
|||
getLendingPoolAddressesProvider,
|
||||
} from '../../helpers/contracts-getters';
|
||||
import { ZERO_ADDRESS } from '../../helpers/constants';
|
||||
import { addGas } from '../../gas-tracker';
|
||||
import { addGas } from '../../helpers/gas-tracker';
|
||||
|
||||
task('full:initialize-lending-pool', 'Initialize lending pool configuration.')
|
||||
.addFlag('verify', 'Verify contracts at Etherscan')
|
||||
|
|
|
@ -3,7 +3,7 @@ import { checkVerification } from '../../helpers/etherscan-verification';
|
|||
import { ConfigNames } from '../../helpers/configuration';
|
||||
import { printContracts } from '../../helpers/misc-utils';
|
||||
import { usingTenderly } from '../../helpers/tenderly-utils';
|
||||
import {totalGas} from '../../gas-tracker';
|
||||
import {totalGas} from '../../helpers/gas-tracker';
|
||||
|
||||
task('aave:mainnet', 'Deploy development enviroment')
|
||||
.addFlag('verify', 'Verify contracts at Etherscan')
|
||||
|
|
|
@ -4,7 +4,7 @@ import {checkVerification} from '../../helpers/etherscan-verification';
|
|||
import {ConfigNames} from '../../helpers/configuration';
|
||||
import {EthereumNetworkNames} from '../../helpers/types';
|
||||
import {printContracts} from '../../helpers/misc-utils';
|
||||
import {totalGas} from '../../gas-tracker';
|
||||
import {totalGas} from '../../helpers/gas-tracker';
|
||||
|
||||
task('uniswap:mainnet', 'Deploy development enviroment')
|
||||
.addFlag('verify', 'Verify contracts at Etherscan')
|
||||
|
|
Loading…
Reference in New Issue
Block a user