> For the complete documentation index, see [llms.txt](https://delpho.gitbook.io/delpho-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://delpho.gitbook.io/delpho-docs/for-developers/quickstart.md).

# Quickstart

This page walks through a minimal end-to-end interaction with Delpho contracts.

## Prerequisites

* A wallet with HYPE on HyperEVM.
* An RPC endpoint for HyperEVM.
* Familiarity with EVM tooling (ethers.js, viem, or equivalent).

## Read sUSDV per-share value

```
const sUsdvValue = await sUsdvContract.pricePerShare()
// returns the current USDV value of 1 sUSDV
```

## Mint USDV against HYPE

\[PENDING: full example calldata.]

The flow is: approve HYPE token transfer to the Delpho mint contract, then call `mint(collateralType, amount, mintAmount)`.

## Stake USDV into sUSDV

The flow is: approve USDV transfer to the staking contract, then call `stake(amount)`. You receive sUSDV in proportion to your share of the staking pool.
