Skip to content

Commit

Permalink
fix: update hardhat dependencies and fix test-suite error codes
Browse files Browse the repository at this point in the history
  • Loading branch information
kartojal committed Nov 24, 2022
1 parent 84b900c commit 03ceb26
Show file tree
Hide file tree
Showing 24 changed files with 13,289 additions and 33,765 deletions.
1 change: 0 additions & 1 deletion .npmrc
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
@aave:registry=https://npm.pkg.github.com
engine-strict=true
1 change: 0 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ services:
command: npm run run-env
volumes:
- ./:/src
- $HOME/.tenderly/config.yaml:/root/.tenderly/config.yaml
environment:
MNEMONIC: ${MNEMONIC}
ETHERSCAN_KEY: ${ETHERSCAN_KEY}
Expand Down
9 changes: 2 additions & 7 deletions hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,22 +7,17 @@ import {buildForkConfig} from './helper-hardhat-config';

require('dotenv').config();

import '@nomiclabs/hardhat-ethers';
import '@nomiclabs/hardhat-etherscan';
import 'hardhat-gas-reporter';
import '@typechain/hardhat';
import '@typechain/ethers-v5';
import '@nomicfoundation/hardhat-toolbox';
import 'hardhat-deploy';
import '@tenderly/hardhat-tenderly';
import 'solidity-coverage';
import 'hardhat-contract-sizer';
import 'hardhat-dependency-compiler';
import {DEFAULT_NAMED_ACCOUNTS} from '@aave/deploy-v3';

const DEFAULT_BLOCK_GAS_LIMIT = 12450000;
const HARDFORK = 'london';

const hardhatConfig: HardhatUserConfig = {
const hardhatConfig = {
gasReporter: {
enabled: true,
},
Expand Down
2 changes: 1 addition & 1 deletion helpers/types.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {BigNumber} from 'ethers';
import {BigNumber} from '@ethersproject/bignumber';

export interface SymbolMap<T> {
[symbol: string]: T;
Expand Down
Loading

0 comments on commit 03ceb26

Please sign in to comment.