## Introduction

This guide shows how to perform a cross-chain swap from an EVM chain to Solana using 1inch Fusion+.

## Before You Start

- You must have a valid **1inch API Key**. You can get one from the [1inch Business](https://business.1inch.com/portal).
- Your wallet must have at least $5 worth of USDT (or the token you're swapping) on Ethereum
- You need both an EVM wallet (source) and a Solana wallet address (destination)

## Key Differences from EVM-to-EVM

- Uses `SolanaAddress` for the destination token and receiver address
- Order is created with `quote.createEvmOrder()` and submitted via `sdk.submitOrder()` (two-step flow)
- The destination chain ID is `NetworkEnum.SOLANA` (501)

## Interactive Code Example

Explore the complete EVM-to-Solana implementation:

<stackblitz example="cross-chain-swap" file="src/swap-erc20-cross-chain.ts" />
