0.1.1 • Published 10 months ago

@ensofinance/uniswap-migrator v0.1.1

Weekly downloads
-
License
-
Repository
github
Last release
10 months ago

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
0.1.1

10 months ago

0.1.0

10 months ago

0.0.18

10 months ago

0.0.17

11 months ago

0.0.16

11 months ago

0.0.15

11 months ago

0.0.14

11 months ago

0.0.12

11 months ago

0.0.11

11 months ago

0.0.10

11 months ago

0.0.9

11 months ago

0.0.7

11 months ago

0.0.6

11 months ago

0.0.5

11 months ago

0.0.4

11 months ago

0.0.3

11 months ago

0.0.2

11 months ago

0.0.1

11 months ago

0.0.0

11 months ago