Skip to content

EnsoBuild/sdk-ts

Repository files navigation

NPM Version X (formerly Twitter) Follow

Enso SDK

The Enso SDK provides a set of tools and methods to interact with the Enso API. It includes functionalities for token approvals, routing, quoting, and balance checking.

Introduction

The Route API is a highly-efficient DeFi aggregation and smart order routing REST API. With it, developers can easily tap into optimized routes for DeFi tokens/positions and multi-token swaps across various chains.

With a single API integration, unlock a host of DeFi strategies in your application. The Route API finds the optimal execution path across a multitude of DeFi protocols such as liquidity pools, lending platforms, automated market makers, yield optimizers, and more.

This allows for maximized capital efficiency and yield optimization, taking into account return rates, gas costs, and slippage. The Route API is your key to navigating the intricate DeFi landscape with ease and efficiency.

Table of Contents

Routing options

There are 3 options for routing strategies depending upon your use case of EOA, Smart Account, or new Smart Account:

  • router - single contract, which can be seen as the universal router
  • delegate - returns calldata in the form of delegateCalls for smart accounts
  • ensowallet - returns calldata for deploying an Enso smart account, and executing all the logic inside of the smart account in the same transaction

Installation

To install the SDK, use npm:

npm install @ensofinance/sdk

Usage

Importing the SDK

import { EnsoClient } from "@ensofinance/sdk";

Initializing the Client

Create an instance of EnsoClient with your API key:

const ensoClient = new EnsoClient({
  apiKey: "YOUR_API_KEY",
});

Methods

Basic Operations

Get Approval Data

Get approval data to allow token spending:

const approvalData = await ensoClient.getApprovalData({
  fromAddress: "0xYourAddress",
  tokenAddress: "0xTokenAddress",
  chainId: 1,
  amount: "1000000000000000000",
});
Get Router Data

Get execution data for the best route from one token to another:

const routeData = await ensoClient.getRouterData({
  fromAddress: "0xYourAddress",
  receiver: "0xReceiverAddress",
  spender: "0xSpenderAddress",
  chainId: 1,
  amountIn: "1000000000000000000",
  tokenIn: "0xTokenInAddress",
  tokenOut: "0xTokenOutAddress",
  routingStrategy: "router", // optional
});
Get Balances

Get wallet balances per chain:

const balances = await ensoClient.getBalances({
  eoaAddress: "0xYourAddress",
  chainId: 1,
});

Advanced Operations

Get Token Data

Get token data by address:

const tokenData = await ensoClient.getTokenData({
  address: "0xTokenAddress",
  chainId: 1,
});
Get Price Data

Get token price data:

const priceData = await ensoClient.getPriceData({
  chainId: 1,
  address: "0xTokenAddress",
});
Get Protocol Data

Get protocol data:

const protocolData = await ensoClient.getProtocolData({
  slug: "protocol-slug",
});

Bundle Operations

Get Bundle Data

Bundle multiple actions into a single transaction. This is useful for complex DeFi operations that require multiple steps:

const bundleData = await ensoClient.getBundleData(
  {
    fromAddress: "0xYourAddress",
    chainId: 1,
    routingStrategy: "router",
  },
  [
    {
      protocol: "enso",
      action: "route",
      args: {
        amountIn: "1000000000000000000",
        tokenIn: "0xTokenInAddress",
        tokenOut: "0xTokenOutAddress",
      },
    },
    {
      protocol: "aave-v2",
      action: "deposit",
      primaryAddress: "0xDepositAddress",
      args: {
        amountIn: {
          useOutputOfCallAt: 0,
        },
        tokenIn: "0xTokenOutAddress",
        tokenOut: "0xDepositAddress",
      },
    },
  ]
);

The bundle supports various action types:

  • swap - Token swaps
  • transfer - Token transfers
  • bridge - Cross-chain bridging
  • deposit - Protocol deposits
  • depositclmm - Concentrated liquidity deposits
  • redeem - Protocol redemptions
  • redeemclmm - Concentrated liquidity redemptions
  • route - Enso routing
  • balance - Balance checks

License

This project is licensed under the MIT License.

About

SDK to easily access Enso API

Resources

Stars

Watchers

Forks

Packages

No packages published

Contributors 3

  •  
  •  
  •