mirror of
https://github.com/status-im/nim-ethers.git
synced 2025-01-13 00:54:38 +00:00
4ad5b6065e
Updates hardhat and solidity Uses personal_sign instead of eth_sign, because ethers.js also uses personal_sign, and eth_sign is now broken in hardhat (arguments are reversed). Co-authored-by: Adam Uhlíř <adam@uhlir.dev>
10 lines
155 B
JavaScript
10 lines
155 B
JavaScript
require("hardhat-deploy")
|
|
require("hardhat-deploy-ethers")
|
|
|
|
module.exports = {
|
|
solidity: "0.8.24",
|
|
namedAccounts: {
|
|
deployer: { default: 0 }
|
|
}
|
|
}
|