🚀 Socket Launch Week Day 5:Introducing Repository Access Permissions and Custom Roles.Learn more
Sign In

@ensofinance/uniswap-migrator

Package Overview
Dependencies
Maintainers
7
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ensofinance/uniswap-migrator

latest
Source
npmnpm
Version
0.1.1
Version published
Weekly downloads
25
-34.21%
Maintainers
7
Weekly downloads
 
Created
Source

NPM Version X (formerly Twitter) Follow

Uniswap Migrator

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.

Workspace Structure

  • app/: Main application that uses the widget
  • widget/: Reusable Uniswap migrator widget

Installation

To install the widget in your project using npm:

npm install @ensofinance/uniswap-migrator

Usage

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;

Advanced Configuration

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;

Configuration Options

PropertyTypeDescription
apiKeystringYour Enso API key (required)
outTokensstring[]Array of token addresses to use for output
poolFeeGradenumberFee tier for the pool (e.g., 500 = 0.05%)
outChainIdnumberTarget chain ID for migration
ticksnumber[]Price tick range for the position

Development

  • To work on the widget: pnpm --filter widget build --watch
  • To run the app: pnpm dev

FAQs

Package last updated on 21 May 2025

Did you know?

Socket

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.

Install

Related posts