# Euler V2

Lend, borrow, and manage collateral on Euler v2's vault-based lending markets. Each market is an ERC-4626 eVault with EVC batching for atomic multi-step flows.

> These prompts work in the Wayfinder app or any coding agent connected to the SDK. Full skill reference: [`using-euler-v2-adapter/SKILL.md`](https://github.com/WayfinderFoundation/wayfinder-paths-sdk/tree/main/.claude/skills/using-euler-v2-adapter) on GitHub.

## When to Use

* Discovering Euler v2 vault markets and APYs
* Reading user lending/borrowing positions
* Supplying, withdrawing, borrowing, or repaying on eVaults
* Managing collateral flags via the Ethereum Vault Connector (EVC)

## What You Can Do

| Objective                    | Prompt                                                                     |
| ---------------------------- | -------------------------------------------------------------------------- |
| List verified vaults         | "Show me all verified Euler v2 vaults on Ethereum"                         |
| View markets with APYs       | "What are the Euler v2 supply and borrow APYs on Base?"                    |
| Get full vault details       | "Show me the full details for Euler v2 vault 0x..."                        |
| View user positions          | "What are my Euler v2 positions -- assets, borrows, and collateral flags?" |
| Supply to a vault            | "Supply 1000 USDC to the Euler v2 USDC vault on Base"                      |
| Enable as collateral         | "Enable the Euler v2 USDC vault as collateral"                             |
| Disable collateral           | "Disable collateral on my Euler v2 USDC vault"                             |
| Borrow from a vault          | "Borrow 500 USDC from Euler v2 on Base"                                    |
| Borrow with collateral setup | "Supply 1000 USDC to Euler v2, enable as collateral, and borrow 500 USDC"  |
| Repay a borrow               | "Repay my full Euler v2 USDC borrow"                                       |
| Withdraw from a vault        | "Withdraw all my funds from the Euler v2 USDC vault"                       |

## Configuration

Supported chains: Ethereum mainnet, Base (check SKILL.md for current list). Each vault address is both the market identifier and the ERC-4626 share token. Supplying does not auto-enable collateral -- call `set_collateral()` separately before borrowing. Multi-step flows can be batched atomically through the EVC.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://wayfinder-1.gitbook.io/wayfinder/protocols-and-adapters/euler-v2.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
