> ## Documentation Index
> Fetch the complete documentation index at: https://unevenlabs-ted-add-sdk-methods.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# getBridgeQuote

> Method to get a quote for a bridge action.

### Parameters

| Property      | Description                                                                                                                                                                                                  | Required |
| ------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -------- |
| **chainId**   | The chain id to deposit funds on                                                                                                                                                                             | ✅        |
| **toChainId** | The chain id to execute the txs on                                                                                                                                                                           | ✅        |
| **value**     | Amount in wei to bridge                                                                                                                                                                                      | ✅        |
| **wallet**    | A valid WalletClient from viem or an adapted wallet generated from an adapter that meets this [interface](https://github.com/reservoirprotocol/relay-sdk/blob/main/packages/sdk/src/types/AdaptedWallet.ts). | ✅        |
| **to**        | A valid address to send the funds to                                                                                                                                                                         | ❌        |

### Example

```typescript
import { getClient } from '@reservoir0x/relay-sdk'
import { useWalletClient } from 'wagmi'

const { data: wallet } = useWalletClient()

const quote = await getClient()?.methods.getBridgeQuote({
  chainId,
  toChainId,
  value: '10000000000000000', // 0.01 ETH
  wallet,
})
```
