© 2026 LinearBytes Inc.
Search posts, tags, users, and pages
Jay Nalam
Freelance Full stack Web3 Engineer
We all know that Uniswap has become the most used DEX on the market and it has wide variety of features. The Uniswap v3 has many interesting features from v1 and v2. And in this guide, we will understand the technicalities on how to interact with the...
Jweboy
I am focus on Javascript.
import { SingleHopSwap, IERC20 } from "../typechain-types";
May I ask how the typechain-types piece is defined? Can you suggest a reference?
I used hardhat with typescript which will generate types automatically.
But if you want to generate types without hardhat, you can use typechain npmjs.com/package/typechain
Thanks, I found the command, ran npx hardhat typechain and it auto-generated it for me.Jay Nalam
npx hardhat typechain
Jweboy
I am focus on Javascript.
import { SingleHopSwap, IERC20 } from "../typechain-types";May I ask how the typechain-types piece is defined? Can you suggest a reference?