npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@eulerxyz/euler-v2-sdk

v1.0.10

Published

SDK for interacting with Euler V2 Lending Platform

Readme

Euler V2 SDK

Installation

npm install @eulerxyz/euler-v2-sdk

Example Usage (Multiply + Simulation)

import { buildEulerSDK, getSubAccountAddress } from "@eulerxyz/euler-v2-sdk";
import { mainnet } from "viem/chains";
import { parseUnits } from "viem";

// Set EULER_SDK_RPC_URL_1=https://your-rpc-url in the environment.
const sdk = await buildEulerSDK();

const owner = "0xYourEOA";
const subAccount = getSubAccountAddress(owner, 1);

const account = await sdk.accountService.fetchAccount(mainnet.id, owner, {
  populateVaults: true,
});

const quotes = await sdk.swapService.getDepositQuote({
  chainId: mainnet.id,
  fromVault: "0xLiabilityVault",
  toVault: "0xLongVault",
  fromAccount: subAccount,
  toAccount: subAccount,
  fromAsset: "0xLiabilityAsset",
  toAsset: "0xLongAsset",
  amount: parseUnits("50", 6),
  origin: owner,
  slippage: 0.5,
  deadline: Math.floor(Date.now() / 1000) + 1800,
});

const plan = sdk.executionService.planMultiplyWithSwap({
  account,
  collateralVault: "0xCollateralVault",
  collateralAmount: parseUnits("100", 6),
  collateralAsset: "0xCollateralAsset",
  swapQuote: quotes[0]!,
});

const simulation = await sdk.simulationService.simulateTransactionPlan(
  mainnet.id,
  owner,
  plan,
  { stateOverrides: true }
);

// Use simulated account and vaults state in the UI.
// Use simulation.canExecute or errors to decide whether and how to execute this plan in your app.
// See /examples/utils/executor.ts

What This SDK Is For

@eulerxyz/euler-v2-sdk provides everything needed to interact with Euler V2 lending contracts:

  • fetching account, vault, wallet balance/allowance, and market data
  • planning and composing EVC transaction batches
  • resolving approvals (approve/Permit2 paths)
  • simulating transactions before execution
  • handling vault swaps, wallet-to-wallet swaps, pricing, rewards, rEUL locks, normalized euler-labels metadata, and deployed addresses
  • fetching oracle adapter metadata/checks keyed by oracle adapter address (provider, methodology, checks)

The SDK is built with dependency injection, so you can use buildEulerSDK() for a default setup, run individual services in isolation, or modify the behavior with your custom implementations.

Configuration

Runtime config can come from buildEulerSDK({ config }), supported explicit SDK options, EULER_SDK_* environment variables, or SDK defaults. RPC URLs are supplied through config.rpcUrls or EULER_SDK_RPC_URL_<chainId>. See the full Configuration Reference and Config Through Env for all options and defaults.

Docs Table of Contents

All docs are in ./docs.

  1. Configuration - All buildEulerSDK() options, defaults, and service overrides.
  2. Config Through Env - EULER_SDK_* environment variables and matching config fields.
  3. Basic Usage - Fast setup and common account/vault/wallet usage patterns.
  4. SDK Architecture Overview - High-level architecture, dependency injection model, and composition options.
  5. Services - Service map, top-level entry points, and lower-level support services.
  6. Wallet Service - Native/ERC20 balances and direct/Permit2 allowance reads.
  7. Execution Service - encodeX vs planX, approvals flow, named operation groups, mergePlans, and describeBatch.
  8. Simulations and State Overrides - Plan simulation flow, validation output, and state override utilities.
  9. Swaps - Swap quote APIs and how swap payloads fit into plans.
  10. CoW Swaps - CoW quote metadata, CoW-specific planners, order submission, status polling, and cancellation.
  11. rEUL Lock Service - rEUL lock reads and unlock transaction planning.
  12. Pricing System - Price data pipeline, fallback behavior, and pricing integration points.
  13. Data Architecture - Entities/adapters/services layering, population model, and data flow.
  14. Cross-Service Data Population - How services enrich entities with prices, rewards, labels, and nested vaults.
  15. Portfolio - High-level savings/borrows abstraction built from populated accounts.
  16. Entity Reference - Property-level reference for exported entity shapes.
  17. Account Computed Properties - Health factor/LTV/net-value computed fields and data prerequisites.
  18. Caching External Data Queries - query* decoration pattern for caching/logging/profiling.
  19. Plugins - Plugin system for read-path and plan-path extensions.
  20. Labels - Label metadata model and usage.
  21. Decoding Smart Contract Errors - Revert decoding utilities for better error handling.
  22. Entity Diagnostics - Sidecar metadata for data normalization, fallbacks, and per-field warnings.

Examples

Runnable examples are in ./examples, including end-to-end execution flows and simulations against a fork.

Comparison, parity-check, and other test-oriented scripts and reports live under ./test/parity.

Release Process

This package is published through the repo-local RELEASE.md playbook and the local $publish skill.

Git tags and GitHub Releases are the release-note source of truth. The committed package.json does not carry a release version; $publish derives the npm version from the euler-v2-sdk-vX.Y.Z tag, including prerelease tags such as euler-v2-sdk-vX.Y.Z-beta.0.

The publish flow verifies npm auth, runs pnpm -C packages/euler-v2-sdk run release:check, creates and pushes an euler-v2-sdk-vX.Y.Z tag from the selected main commit, temporarily writes the tag version for npm, dry-runs the package, publishes with npm publish --access public --provenance=false, restores the working tree, and creates the GitHub Release against the verified tag from a generated notes file. Prereleases publish with the matching npm dist-tag, for example npm publish --access public --tag beta --provenance=false.

Publishing uses the operator's local npm session. npm may prompt for a one-time password or provide a browser authentication URL; complete that prompt before the publish process exits.