You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Provide a brief description of the functionality you're trying to implement.
When I run the command npx hardhat test in the era-contracts/ethereum directory, it gives me the error message 'Cannot find module '../../typechain/ITransparentUpgradeableProxy' or its corresponding type declarations'. I have generated the typechain folder via npx hardhat compile
What is the specific issue or error you're encountering?
test/unit_tests/erc20-bridge-upgrade.fork.ts:8:51 - error TS2307: Cannot find module '../../typechain/ITransparentUpgradeableProxy' or its corresponding type declarations.
8 import type { ITransparentUpgradeableProxy } from "../../typechain/ITransparentUpgradeableProxy";
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
test/unit_tests/erc20-bridge-upgrade.fork.ts:9:53 - error TS2307: Cannot find module '../../typechain/ITransparentUpgradeableProxyFactory' or its corresponding type declarations.
9 import { ITransparentUpgradeableProxyFactory } from "../../typechain/ITransparentUpgradeableProxyFactory";
Can you share the error messages or logs you're receiving, if any?
test/unit_tests/erc20-bridge-upgrade.fork.ts:8:51 - error TS2307: Cannot find module '../../typechain/ITransparentUpgradeableProxy' or its corresponding type declarations.
8 import type { ITransparentUpgradeableProxy } from "../../typechain/ITransparentUpgradeableProxy";
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
test/unit_tests/erc20-bridge-upgrade.fork.ts:9:53 - error TS2307: Cannot find module '../../typechain/ITransparentUpgradeableProxyFactory' or its corresponding type declarations.
9 import { ITransparentUpgradeableProxyFactory } from "../../typechain/ITransparentUpgradeableProxyFactory";
Have you made any recent changes to the contract before encountering this issue?
No
Are there any external libraries or contracts that your contract interacts with?
No
Can you provide the relevant portions of your contract code where the issue is occurring?
Have you tried to isolate the problem, and if so, what were the results?
What steps have you already taken to try to resolve the issue?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
Environment
Testnet
Provide a brief description of the functionality you're trying to implement.
When I run the command npx hardhat test in the
era-contracts/ethereum
directory, it gives me the error message 'Cannot find module '../../typechain/ITransparentUpgradeableProxy' or its corresponding type declarations'. I have generated the typechain folder vianpx hardhat compile
What is the specific issue or error you're encountering?
test/unit_tests/erc20-bridge-upgrade.fork.ts:8:51 - error TS2307: Cannot find module '../../typechain/ITransparentUpgradeableProxy' or its corresponding type declarations.
8 import type { ITransparentUpgradeableProxy } from "../../typechain/ITransparentUpgradeableProxy";
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
test/unit_tests/erc20-bridge-upgrade.fork.ts:9:53 - error TS2307: Cannot find module '../../typechain/ITransparentUpgradeableProxyFactory' or its corresponding type declarations.
9 import { ITransparentUpgradeableProxyFactory } from "../../typechain/ITransparentUpgradeableProxyFactory";
Can you share the error messages or logs you're receiving, if any?
test/unit_tests/erc20-bridge-upgrade.fork.ts:8:51 - error TS2307: Cannot find module '../../typechain/ITransparentUpgradeableProxy' or its corresponding type declarations.
8 import type { ITransparentUpgradeableProxy } from "../../typechain/ITransparentUpgradeableProxy";
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
test/unit_tests/erc20-bridge-upgrade.fork.ts:9:53 - error TS2307: Cannot find module '../../typechain/ITransparentUpgradeableProxyFactory' or its corresponding type declarations.
9 import { ITransparentUpgradeableProxyFactory } from "../../typechain/ITransparentUpgradeableProxyFactory";
Have you made any recent changes to the contract before encountering this issue?
No
Are there any external libraries or contracts that your contract interacts with?
No
Can you provide the relevant portions of your contract code where the issue is occurring?
Have you tried to isolate the problem, and if so, what were the results?
What steps have you already taken to try to resolve the issue?
Repo Link (Optional)
No response
Additional Details
No response
Beta Was this translation helpful? Give feedback.
All reactions