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

# Liquid AF

> Create methods for the `liquid_af` transaction socket platform.

Use `platform: "liquid_af"` for Liquid AF launches.

## Methods

| Type                     | Purpose                                         |
| ------------------------ | ----------------------------------------------- |
| `create_with_image_url`  | Create a Liquid AF launch from an image URL.    |
| `create_with_image_blob` | Create a Liquid AF launch from raw image bytes. |

## Request fields

Shared fields:

* `transaction_data`
* `launch_data`
* `buy_config`
* `image_url` or `image_blob`

Optional Liquid AF-specific fields:

* `supply_transfer`

## Example

```json theme={null}
{
  "platform": "liquid_af",
  "type": "create_with_image_url",
  "transaction_data": {
    "rpcs": ["standard"],
    "identifier": "liquid_af_create_1",
    "priority_fee": 1000000,
    "payer_wallet": "SOLANA_WALLET"
  },
  "launch_data": {
    "name": "Liquid Coin",
    "symbol": "LAF",
    "description": "Example Liquid AF launch",
    "twitter": "https://x.com/example/status/1",
    "attached_referral": null,
    "website": null,
    "generated": false,
    "multi_deploy_count": 1
  },
  "image_url": "https://example.com/image.png",
  "buy_config": {
    "type": "standard",
    "buy_amount": 50000000,
    "min_tokens_out": 0
  }
}
```

## Notes

* Liquid AF currently supports only the `standard` form of the shared Solana `buy_config`.
* Bundled launch buys are rejected for this platform.
