maticjs-web3
maticjs-web3 copied to clipboard
Cannot find module 'web3/eth/types' or its corresponding type declarations.
File node_modules/@maticnetwork/maticjs-web3/dist/ts/utils/web3_tx_to_matic_tx.d.ts is responsible for the error, I have tried reinstalling the package and manually installing the web3 package but it didn't help.
Looks like it tries to find 'Transaction' and I noticed that Transaction exists here web3-eth/types/index.d.ts (if web3 is installed) So, I changed import { Transaction } from "web3/eth/types"; line to import { Transaction } from "web3-eth/types"; (changed slash to dash) in node_modules/@maticnetwork/maticjs-web3/dist/ts/utils/web3_tx_to_matic_tx.d.ts and issue dissappeared.
That's a tricky way, Is there any way to fix this issue without any changing in node_modules
?