Skip to main content
Use platform: "heaven" for Heaven launches.

Methods

TypePurpose
create_with_image_urlCreate a Heaven launch from an image URL.
create_with_image_blobCreate 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:
{
  "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.