From 574f75df381fe6fee9251587db38f7f41acf74ec Mon Sep 17 00:00:00 2001 From: lbeder Date: Thu, 11 Apr 2024 18:52:13 +0100 Subject: [PATCH] Compile legacy contracts prior to tests --- test/hardhat.config.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/hardhat.config.ts b/test/hardhat.config.ts index c2abe10..c74fbe3 100644 --- a/test/hardhat.config.ts +++ b/test/hardhat.config.ts @@ -36,7 +36,9 @@ const config: HardhatUserConfig = { dependencyCompiler: { paths: [ '@ethereum-attestation-service/eas-contracts/contracts/EAS.sol', - '@ethereum-attestation-service/eas-contracts/contracts/SchemaRegistry.sol' + '@ethereum-attestation-service/eas-contracts/contracts/SchemaRegistry.sol', + '@ethereum-attestation-service/eas-contracts-legacy/contracts/EAS.sol', + '@ethereum-attestation-service/eas-contracts-legacy/contracts/SchemaRegistry.sol' ] },