-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Steal some tokens from rich users for testing
- Loading branch information
1 parent
d69493a
commit c8a15e5
Showing
7 changed files
with
948 additions
and
417 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,16 @@ | ||
import "@nomicfoundation/hardhat-ethers"; | ||
|
||
/** @type import('hardhat/config').HardhatUserConfig */ | ||
module.exports = { | ||
solidity: "0.8.24", | ||
networks: { | ||
hardhat: { | ||
chainId: 1, | ||
hardfork: "shanghai", | ||
// base fee of 0 allows use of 0 gas price when testing | ||
initialBaseFeePerGas: 0, | ||
// brownie expects calls and transactions to throw on revert | ||
throwOnTransactionFailures: true, | ||
throwOnCallFailures: true | ||
} | ||
} | ||
}; |
Oops, something went wrong.