Skip to content

Commit 60c6e4b

Browse files
committed
update tests
Signed-off-by: Faisal Usmani <faisal.of.usmani@gmail.com>
1 parent 4a83f8f commit 60c6e4b

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

.github/actions/generate-evm-artifacts/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ runs:
3232
run: npx ts-node scripts/typechainArtifacts.ts
3333
- name: Generate Typechain
3434
shell: bash
35-
run: npx typechain --target ethers-v5 "typechain-artifacts" --out-dir typechain
35+
run: npx typechain --target ethers-v5 "typechain-artifacts/**/*.json" --out-dir typechain
3636
- name: Archive EVM artifacts (for caching)
3737
shell: bash
3838
env:

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ zkout
3232
cache-foundry
3333

3434
# Typechain
35-
.typechain-artifacts
35+
typechain-artifacts
3636

3737
# Upgradeability files
3838
.openzeppelin

test/evm/hardhat/chain-adapters/Arbitrum_Adapter.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ import {
2727
MessagingReceiptStructOutput,
2828
OFTReceiptStructOutput,
2929
SendParamStruct,
30-
} from "../../../../typechain/IOFT.sol/IOFT";
31-
import { IOFT__factory } from "../../../../typechain/factories/IOFT.sol/IOFT__factory";
30+
} from "../../../../typechain/IOFT";
31+
import { IOFT__factory } from "../../../../typechain/factories/IOFT__factory";
3232
import { hubPoolFixture, enableTokensForLP } from "../fixtures/HubPool.Fixture";
3333
import { constructSingleChainTree } from "../MerkleLib.utils";
3434
import { CIRCLE_DOMAIN_IDs } from "../../../../deploy/consts";

test/evm/hardhat/chain-adapters/Polygon_Adapter.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ import {
3232
MessagingReceiptStructOutput,
3333
OFTReceiptStructOutput,
3434
SendParamStruct,
35-
} from "../../../../typechain/IOFT.sol/IOFT";
36-
import { IOFT__factory } from "../../../../typechain/factories/IOFT.sol/IOFT__factory";
35+
} from "../../../../typechain/IOFT";
36+
import { IOFT__factory } from "../../../../typechain/factories/IOFT__factory";
3737
import { CIRCLE_DOMAIN_IDs } from "../../../../deploy/consts";
3838
import { AdapterStore, AdapterStore__factory } from "../../../../typechain";
3939
import { CHAIN_IDs } from "@across-protocol/constants";

test/evm/hardhat/chain-specific-spokepools/Arbitrum_SpokePool.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ import {
2626
MessagingReceiptStructOutput,
2727
OFTReceiptStructOutput,
2828
SendParamStruct,
29-
} from "../../../../typechain/IOFT.sol/IOFT";
30-
import { IOFT__factory } from "../../../../typechain/factories/IOFT.sol/IOFT__factory";
29+
} from "../../../../typechain/IOFT";
30+
import { IOFT__factory } from "../../../../typechain/factories/IOFT__factory";
3131
import { CHAIN_IDs } from "@across-protocol/constants";
3232

3333
let hubPool: Contract, arbitrumSpokePool: Contract, dai: Contract, weth: Contract, l2UsdtContract: Contract;

test/evm/hardhat/chain-specific-spokepools/Polygon_SpokePool.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@ import {
2525
} from "../../../../utils/utils";
2626
import { getOftEid } from "../../../../utils/utils";
2727
import { CHAIN_IDs } from "@across-protocol/constants";
28-
import { IOFT__factory } from "../../../../typechain/factories/IOFT.sol/IOFT__factory";
28+
import { IOFT__factory } from "../../../../typechain/factories/IOFT__factory";
2929
import {
3030
MessagingFeeStructOutput,
3131
MessagingReceiptStructOutput,
3232
OFTReceiptStructOutput,
3333
SendParamStruct,
34-
} from "../../../../typechain/IOFT.sol/IOFT";
34+
} from "../../../../typechain/IOFT";
3535
import { hre } from "../../../../utils/utils.hre";
3636
import { hubPoolFixture } from "../fixtures/HubPool.Fixture";
3737
import { buildRelayerRefundLeaves, buildRelayerRefundTree, constructSingleRelayerRefundTree } from "../MerkleLib.utils";

0 commit comments

Comments
 (0)