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

# Billeteras Cripto

> Configura cuentas de billetera de criptomoneda

## Visión General

Las cuentas de billetera cripto representan direcciones blockchain donde los usuarios reciben USDC o USDT durante transacciones on-ramp.

## Ejemplo Rápido

```json theme={null}
{
  "type": "WALLET",
  "userId": "user-id",
  "externalId": "wallet-1",
  "data": {
    "firstName": "Juan",
    "lastName": "García",
    "email": "juan@example.com",
    "phone": "+573001234567",
    "currency": "USDC",
    "network": "POLYGON",
    "address": "0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb",
    "countryCode": "CO",
    "document": {
      "type": "NUIP",
      "number": "1234567890",
      "issuedCountryCode": "CO"
    }
  }
}
```

## Configuraciones Soportadas

| Moneda | Redes                                          | Formato de Dirección |
| ------ | ---------------------------------------------- | -------------------- |
| USDC   | Polygon, Solana, Ethereum, Arbitrum, BSC, Tron | Específico de red    |
| USDT   | Polygon, Solana, Ethereum, Arbitrum, BSC, Tron | Específico de red    |

## Guía de Redes

<CardGroup cols={3}>
  <Card title="Polygon" icon="triangle">
    **Tarifa:** Menos de \$0,01\
    **Velocidad:** 2-5 min\
    **Formato:** 0x...
  </Card>

  <Card title="Solana" icon="s">
    **Tarifa:** Menos de \$0,001\
    **Velocidad:** 30-60 seg\
    **Formato:** Base58
  </Card>

  <Card title="Ethereum" icon="e">
    **Tarifa:** \$5-50\
    **Velocidad:** 10-15 min\
    **Formato:** 0x...
  </Card>
</CardGroup>

## Validación de Dirección

Usa validación del lado del cliente:

```javascript theme={null}
import { ethers } from 'ethers';

const validateWalletAddress = (address, network) => {
  if (['POLYGON', 'ERC20', 'ARBITRUM', 'BSC'].includes(network)) {
    return ethers.utils.isAddress(address);
  }
  
  if (network === 'SOLANA') {
    return /^[1-9A-HJ-NP-Za-km-z]{32,44}$/.test(address);
  }
  
  if (network === 'TRON') {
    return /^T[a-zA-Z0-9]{33}$/.test(address);
  }
  
  return false;
};
```

## Próximos Pasos

<CardGroup cols={2}>
  <Card title="Crear On-Ramp" icon="arrow-up" href="/es/guides/ramps/on-ramp">
    Usa billetera en transacción on-ramp
  </Card>

  <Card title="Guía de Pre-Fondeo" icon="bolt" href="/es/guides/accounts/pre-fund-accounts">
    Configura liquidaciones instantáneas
  </Card>
</CardGroup>
