Skip to content

Commit

Permalink
evm: npm i ethers-v5 --save-prod
Browse files Browse the repository at this point in the history
  • Loading branch information
a5-pickle committed Oct 21, 2024
1 parent 05b9e57 commit 8267dcb
Show file tree
Hide file tree
Showing 7 changed files with 57 additions and 7 deletions.
2 changes: 1 addition & 1 deletion evm/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
"chai": "^4.3.7",
"dotenv": "^16.3.1",
"envfile": "^7.1.0",
"ethers": "^5.7.2",
"ethers-v5": "npm:ethers@^5.7.2",
"mocha": "^10.0.0",
"prettier": "^2.8.7",
"prettier-plugin-solidity": "^1.1.3",
Expand Down
2 changes: 1 addition & 1 deletion evm/ts/tests/00__environment.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { expect } from "chai";
import { execSync } from "child_process";
import { ethers } from "ethers";
import { ethers } from "ethers-v5";
import {
ICircleBridge__factory,
IMessageTransmitter__factory,
Expand Down
2 changes: 1 addition & 1 deletion evm/ts/tests/01__registration.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import "@wormhole-foundation/sdk-evm/address";

import { ethers } from "ethers";
import { ethers } from "ethers-v5";
import { ITokenRouter__factory, IMatchingEngine__factory } from "../src/types";
import {
LOCALHOSTS,
Expand Down
2 changes: 1 addition & 1 deletion evm/ts/tests/02__configuration.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ethers } from "ethers";
import { ethers } from "ethers-v5";
import { ITokenRouter__factory, IMatchingEngine__factory } from "../src/types";
import {
LOCALHOSTS,
Expand Down
2 changes: 1 addition & 1 deletion evm/ts/tests/03__marketOrder.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { expect } from "chai";
import { ethers } from "ethers";
import { ethers } from "ethers-v5";
import { EvmTokenRouter, errorDecoder, OrderResponse } from "../src";
import { IERC20__factory } from "../src/types";
import {
Expand Down
2 changes: 1 addition & 1 deletion evm/ts/tests/04__fastMarketOrder.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import "@wormhole-foundation/sdk-evm/address";

import { expect } from "chai";
import { ethers } from "ethers";
import { ethers } from "ethers-v5";
import {
EvmTokenRouter,
EvmMatchingEngine,
Expand Down
52 changes: 51 additions & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 8267dcb

Please sign in to comment.