SDK
Enso SDK is a JavaScript library for interacting with Enso API.
For easier integration, Enso provides a JavaScript/TypeScript SDK that wraps the API functionality in a convenient interface.
View on GitHub
Installation
Install the Enso SDK using your preferred package manager:
Quick Start
This example shows how to swap ETH directly to a Yearn vault position:
Core Concepts
The Enso SDK abstracts complex DeFi operations through several key components:
- EnsoClient: The main entry point for all SDK functionalities
- Routing: Determines the most efficient path for token conversions
- Approvals: Manages token allowances for DeFi interactions
- Quotes: Provides price quotes without executing transactions
- Token Data: Retrieves detailed information about tokens and protocols
Methods Reference
Below are the primary methods available in the EnsoClient:
getRouterData(params: RouteParams)
Calculates the optimal route for entering or exiting any DeFi position or swapping tokens. Returns transaction data ready for submission to the blockchain.
getQuoteData(params: QuoteParams)
Provides a quote for a potential swap without requiring token approvals. Useful for showing prices before executing transactions.
getApprovalData(params: ApproveParams)
Generates transaction data for approving tokens to be spent by Enso contracts.
getBalances(params: BalanceParams)
Retrieves token balances for a given wallet address.
getTokenData(params: TokenParams)
Fetches detailed information about tokens, including DeFi tokens and their underlying assets.
getPriceData(params: PriceParams)
Gets the current price data for a specific token.
getProtocolData(params?: ProtocolParams)
Retrieves information about DeFi protocols supported by Enso.
Key Features
- Token Routing: Find the best path for token swaps across multiple DEXs and liquidity pools
- DeFi Position Management: Enter, exit, and manage DeFi positions (lending, farming, staking)
- Token Data: Access comprehensive token information including prices, balances, and metadata
- Transaction Building: Generate executable transaction data for wallets and smart contracts
- Protocol Interactions: Easily interact with supported DeFi protocols using standardized interfaces
Next Steps
Explore these resources to fully leverage the Enso SDK:
- Routing Strategies - Learn about the different routing options (router, delegate, ensowallet) and when to use each one
- Available Actions for Bundle API - Explore all supported DeFi actions like swaps, deposits, borrows, and more
- Shortcuts - See practical examples of common DeFi operations implemented with the SDK
- Non-tokenized Positions - Discover how to interact with non-tokenized DeFi positions like Aave borrows or Liquity CDPs
- GitHub Repository - Access the source code, report issues, or contribute to the SDK
- Developer Chat - Join our Telegram group for technical support and discussions