Skip to content

Commit 0643d17

Browse files
Bump ws, ethers and hardhat-gas-reporter (#5345)
1 parent 8829465 commit 0643d17

12 files changed

+77
-61
lines changed

package-lock.json

Lines changed: 65 additions & 49 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,13 +66,13 @@
6666
"chai": "^4.2.0",
6767
"eslint": "^9.0.0",
6868
"eslint-config-prettier": "^9.0.0",
69-
"ethers": "^6.7.1",
69+
"ethers": "^6.13.4",
7070
"glob": "^11.0.0",
7171
"globals": "^15.3.0",
7272
"graphlib": "^2.1.8",
7373
"hardhat": "^2.22.2",
7474
"hardhat-exposed": "^0.3.15",
75-
"hardhat-gas-reporter": "^2.0.0",
75+
"hardhat-gas-reporter": "^2.1.0",
7676
"hardhat-ignore-warnings": "^0.2.11",
7777
"husky": "^9.1.7",
7878
"lint-staged": "^15.2.10",

test/governance/extensions/GovernorCountingFractional.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ describe('GovernorCountingFractional', function () {
2727
const [owner, proposer, voter1, voter2, voter3, voter4, other] = await ethers.getSigners();
2828
const receiver = await ethers.deployContract('CallReceiverMock');
2929

30-
const token = await ethers.deployContract(Token, [tokenName, tokenSymbol, version]);
30+
const token = await ethers.deployContract(Token, [tokenName, tokenSymbol, tokenName, version]);
3131
const mock = await ethers.deployContract('$GovernorFractionalMock', [
3232
name, // name
3333
votingDelay, // initialVotingDelay

test/governance/extensions/GovernorERC721.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ describe('GovernorERC721', function () {
2929
const [owner, voter1, voter2, voter3, voter4] = await ethers.getSigners();
3030
const receiver = await ethers.deployContract('CallReceiverMock');
3131

32-
const token = await ethers.deployContract(Token, [tokenName, tokenSymbol, version]);
32+
const token = await ethers.deployContract(Token, [tokenName, tokenSymbol, tokenName, version]);
3333
const mock = await ethers.deployContract('$GovernorMock', [
3434
name, // name
3535
votingDelay, // initialVotingDelay

test/governance/extensions/GovernorPreventLateQuorum.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ describe('GovernorPreventLateQuorum', function () {
2828
const [owner, proposer, voter1, voter2, voter3, voter4] = await ethers.getSigners();
2929
const receiver = await ethers.deployContract('CallReceiverMock');
3030

31-
const token = await ethers.deployContract(Token, [tokenName, tokenSymbol, version]);
31+
const token = await ethers.deployContract(Token, [tokenName, tokenSymbol, tokenName, version]);
3232
const mock = await ethers.deployContract('$GovernorPreventLateQuorumMock', [
3333
name, // name
3434
votingDelay, // initialVotingDelay

test/governance/extensions/GovernorStorage.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ describe('GovernorStorage', function () {
3333
const [deployer, owner, proposer, voter1, voter2, voter3, voter4] = await ethers.getSigners();
3434
const receiver = await ethers.deployContract('CallReceiverMock');
3535

36-
const token = await ethers.deployContract(Token, [tokenName, tokenSymbol, version]);
36+
const token = await ethers.deployContract(Token, [tokenName, tokenSymbol, tokenName, version]);
3737
const timelock = await ethers.deployContract('TimelockController', [delay, [], [], deployer]);
3838
const mock = await ethers.deployContract('$GovernorStorageMock', [
3939
name,

test/governance/extensions/GovernorTimelockAccess.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ describe('GovernorTimelockAccess', function () {
4040
const manager = await ethers.deployContract('$AccessManager', [admin]);
4141
const receiver = await ethers.deployContract('$AccessManagedTarget', [manager]);
4242

43-
const token = await ethers.deployContract(Token, [tokenName, tokenSymbol, version]);
43+
const token = await ethers.deployContract(Token, [tokenName, tokenSymbol, tokenName, version]);
4444
const mock = await ethers.deployContract('$GovernorTimelockAccessMock', [
4545
name,
4646
votingDelay,

test/governance/extensions/GovernorTimelockCompound.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ describe('GovernorTimelockCompound', function () {
2828
const [deployer, owner, voter1, voter2, voter3, voter4, other] = await ethers.getSigners();
2929
const receiver = await ethers.deployContract('CallReceiverMock');
3030

31-
const token = await ethers.deployContract(Token, [tokenName, tokenSymbol, version]);
31+
const token = await ethers.deployContract(Token, [tokenName, tokenSymbol, tokenName, version]);
3232
const predictGovernor = await deployer
3333
.getNonce()
3434
.then(nonce => ethers.getCreateAddress({ from: deployer.address, nonce: nonce + 1 }));

test/governance/extensions/GovernorTimelockControl.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ describe('GovernorTimelockControl', function () {
3434
const [deployer, owner, voter1, voter2, voter3, voter4, other] = await ethers.getSigners();
3535
const receiver = await ethers.deployContract('CallReceiverMock');
3636

37-
const token = await ethers.deployContract(Token, [tokenName, tokenSymbol, version]);
37+
const token = await ethers.deployContract(Token, [tokenName, tokenSymbol, tokenName, version]);
3838
const timelock = await ethers.deployContract('TimelockController', [delay, [], [], deployer]);
3939
const mock = await ethers.deployContract('$GovernorTimelockControlMock', [
4040
name,

test/governance/extensions/GovernorVotesQuorumFraction.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ describe('GovernorVotesQuorumFraction', function () {
2929

3030
const receiver = await ethers.deployContract('CallReceiverMock');
3131

32-
const token = await ethers.deployContract(Token, [tokenName, tokenSymbol, version]);
32+
const token = await ethers.deployContract(Token, [tokenName, tokenSymbol, tokenName, version]);
3333
const mock = await ethers.deployContract('$GovernorMock', [name, votingDelay, votingPeriod, 0n, token, ratio]);
3434

3535
await owner.sendTransaction({ to: mock, value });

0 commit comments

Comments
 (0)