> ## Documentation Index
> Fetch the complete documentation index at: https://docs.delora.build/llms.txt
> Use this file to discover all available pages before exploring further.

# Warnings

> Non-critical issues that do not block quote generation. A quote is still returned, but some features may be skipped.

<Note>
  Notes about warnings:

  * Warnings are optional
  * Multiple warnings may be returned
  * Warnings do not indicate failure
</Note>

## Format

```TypeScript theme={null}
type QuoteWarning = {
  code: string;
  message: string;
};
```

***

## Fee-related warnings

`INTEGRATOR_SOLANA_WALLET_NOT_ACTIVATED_FEE_SKIPPED`: Integrator’s Solana wallet is not activated on-chain.

`INTEGRATOR_WALLET_NOT_CONFIGURED_FEE_SKIPPED`: Integrator has no wallet configured for the required chain.

`SOLANA_SYSTEM_ACCOUNT_SKIPPED`: `senderAddress` or `receiverAddress` uses the placeholder Solana System Program address `11111111111111111111111111111111`. The quote is still returned, but wallet-dependent checks and transaction simulation are skipped.

`SOLANA_INSUFFICIENT_BALANCE`: Solana simulation indicates that the sender does not have enough balance to execute the route. This can mean insufficient SOL for rent or fees, or insufficient token balance for the swap. The quote is still returned for UI display.

`SOLANA_SIMULATION_FAILED`: Solana simulation failed for a reason other than a recognized insufficient-balance case. The quote is still returned for UI display, but the route should be treated as a soft warning.

### Example

```TypeScript theme={null}
{
  "warnings": [
    {
      "code": "INTEGRATOR_SOLANA_WALLET_NOT_ACTIVATED_FEE_SKIPPED",
      "message": "Integrator \"integrator\" Solana wallet 9xQ...abc is not activated on-chain. Transaction will continue without integrator fee."
    },
    {
      "code": "SOLANA_INSUFFICIENT_BALANCE",
      "message": "Insufficient SOL for JUPITER route: need ~0.002 SOL for rent/fees."
    }
  ]
}
```

***
