
Security News
The Code You Didn't Write Is Still Yours to Defend
AI agents are pulling packages into environments no scanner is watching, creating exposure before security teams can see it.
@ensofinance/uniswap-migrator
Advanced tools
The Uniswap Migrator is a tool that helps users easily migrate their existing Uniswap v3 position or deposit any token into Uniswap v4 pool. This widget provides a seamless experience for users to transfer their liquidity between different Uniswap versions while maintaining control over their positions.
app/: Main application that uses the widgetwidget/: Reusable Uniswap migrator widgetTo install the widget in your project using npm:
npm install @ensofinance/uniswap-migrator
Get your key at Enso Dashboard
Here's a basic example of how to use the widget in your React application:
import { WidgetWrapper } from "@ensofinance/uniswap-migrator";
/*
* for next Next.js projects we need to use dynamic import instead
import dynamic from "next/dynamic";
const WidgetWrapper= dynamic(() => import("@ensofinance/uniswap-migrator").then(mod => mod.WidgetWrapper), {
ssr: false,
});
*/
function App() {
return (
<div>
<h1>My DeFi App</h1>
<WidgetWrapper apiKey="YOUR_ENSO_API_KEY" />
</div>
);
}
export default App;
You can customize the widget behavior with additional props:
import { WidgetWrapper } from "@ensofinance/uniswap-migrator";
function App() {
return (
<div>
<h1>My DeFi App</h1>
<WidgetWrapper
apiKey="YOUR_ENSO_API_KEY"
outTokens={[
"0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee", // Native token (ETH)
"0x0b2c639c533813f4aa9d7837caf62653d097ff85", // Example token address
]}
poolFeeGrade={500}
outChainId={10} // Optimism
ticks={[-200050, -195990]}
/>
</div>
);
}
export default App;
| Property | Type | Description |
|---|---|---|
apiKey | string | Your Enso API key (required) |
outTokens | string[] | Array of token addresses to use for output |
poolFeeGrade | number | Fee tier for the pool (e.g., 500 = 0.05%) |
outChainId | number | Target chain ID for migration |
ticks | number[] | Price tick range for the position |
pnpm --filter widget build --watchpnpm devFAQs
Unknown package
The npm package @ensofinance/uniswap-migrator receives a total of 23 weekly downloads. As such, @ensofinance/uniswap-migrator popularity was classified as not popular.
We found that @ensofinance/uniswap-migrator demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 7 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
AI agents are pulling packages into environments no scanner is watching, creating exposure before security teams can see it.

Security News
GitHub Actions checkout now blocks risky pull_request_target checkouts by default to help prevent pwn request supply chain attacks.

Product
Socket now supports Custom Roles and Repository Access Permissions so organizations can control who can access specific repositories and actions.