Skip to content

Commit 23ec0c8

Browse files
authored
Bump ethers package to 5.5.2 for EIP1559 support (#174)
* Bump ethers package to 5.5.2 for EIP1559 support * Fix equality check * Increase resource for coverage
1 parent 9e2b8c3 commit 23ec0c8

File tree

4 files changed

+381
-4
lines changed

4 files changed

+381
-4
lines changed

.circleci/config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ jobs:
7373
# in this job (below) as well as the list of files passed
7474
# to istanbul-combine in the `report_coverage` job
7575
parallelism: 5
76+
resource_class: medium+
7677
steps:
7778
- restore_cache:
7879
key: compiled-env-{{ .Environment.CIRCLE_SHA1 }}

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@setprotocol/set-protocol-v2",
3-
"version": "0.1.4",
3+
"version": "0.1.5",
44
"description": "",
55
"main": "dist",
66
"types": "dist/types",
@@ -90,7 +90,7 @@
9090
},
9191
"dependencies": {
9292
"@uniswap/v3-sdk": "^3.5.1",
93-
"ethers": "^5.4.6",
93+
"ethers": "^5.5.2",
9494
"fs-extra": "^5.0.0",
9595
"jsbi": "^3.2.5",
9696
"module-alias": "^2.2.2",

test/integration/aaveGovernanceV2Module.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ describe("AaveGovernanceV2Module", () => {
209209

210210
expect(proposal.executor).to.eq(aaveSetup.executor.address);
211211
expect(proposal.targets).to.deep.eq(targets);
212-
expect(proposalValues).to.deep.eq(values);
212+
expect(proposalValues.map(v => v.toString())).to.deep.eq(values.map(v => v.toString()));
213213
expect(proposal.signatures).to.deep.eq(signatures);
214214
expect(proposal.calldatas).to.deep.eq(calldatas);
215215
expect(proposal.withDelegatecalls).to.deep.eq(withDelegateCall);

0 commit comments

Comments
 (0)