> ## 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.

# Heaven

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

Use `platform: "heaven"` for Heaven launches.

## Methods

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

## Request fields

Shared fields:

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

Optional Heaven-specific fields:

* `supply_transfer`

Example:

```json theme={null}
{
  "platform": "heaven",
  "type": "create_with_image_url",
  "transaction_data": {
    "rpcs": ["standard"],
    "identifier": "heaven_create_1",
    "priority_fee": 1000000,
    "payer_wallet": "SOLANA_WALLET"
  },
  "launch_data": {
    "name": "Heaven Coin",
    "symbol": "HVN",
    "description": "Example Heaven 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
  }
}
```

Heaven uses the shared Solana launch request shape documented on [generic transactions](/api/generic-transactions).
