Skip to main content
Use platform: "clanker_base" for Clanker launches on Base.

Methods

TypePurpose
create_with_image_urlLaunch with an image URL.
create_with_image_blobLaunch with raw image bytes.

Request fields

Shared fields:
  • transaction_data
  • launch_data
  • image_url or image_blob
Clanker-specific fields:
FieldTypeNotes
gweinumber | nullOptional EIP-1559 gas cap.
dev_buyobjectPreferred dev-buy config.
buy_configBnbBuyConfig | nullLegacy alias for dev-buy amount.
vanitybooleanOptional vanity deployment flag.
saltstring | nullOptional custom salt.
data_suffixstring | nullOptional extra calldata bytes.

dev_buy

{
  "dev_buy": {
    "eth_amount_wei": "10000000000000000",
    "amount_out_min_wei": "0",
    "recipient": "0xRECIPIENT"
  }
}

Example

{
  "platform": "clanker_base",
  "type": "create_with_image_url",
  "transaction_data": {
    "rpcs": [],
    "identifier": "clanker_create_1",
    "priority_fee": 0,
    "payer_wallet": "0xYOUR_WALLET"
  },
  "launch_data": {
    "name": "Clanker Coin",
    "symbol": "CLNK",
    "description": "Example Clanker launch",
    "twitter": "https://x.com/example/status/1",
    "attached_referral": null,
    "website": "https://example.com",
    "generated": false,
    "multi_deploy_count": 1
  },
  "image_url": "https://example.com/image.png",
  "gwei": 0.5,
  "dev_buy": {
    "eth_amount_wei": "10000000000000000",
    "amount_out_min_wei": "0"
  },
  "vanity": false,
  "salt": null,
  "data_suffix": null
}

Notes

  • transaction_data.priority_fee is ignored on Base; use gwei to control EIP-1559 gas settings.
  • Bundled legacy buy_config values are rejected for Clanker.
  • Use dev_buy instead of buy_config for new integrations.