Clanker Documentation
  • Introduction to Clanker
  • Users
    • FAQ
    • Deploying a Token
    • Creator Rewards
    • Token Deployment & Token Info
      • Presale Token Deployments
    • Unclaimed Rewards Balance
  • Developers
    • SDK
    • API
      • Public Endpoints
      • Deploy a Token
        • Standard Deployment
        • Standard Deployment w/Custom Reward Splits
      • Get Clanker Info by Address
      • Get Tokens Deployed by Address
      • Get Estimated Rewards in USD
      • Get Estimated Uncollected Fees
  • Core Contracts
    • Clanker (Direct Contract Deployments)
    • LpLockerv2
    • ClankerVault
  • Integrations / Partnerships
  • References
    • Brand Assets
    • Changelog
    • Audits
    • Deployed Contracts
    • Supported Quote Tokens
    • Core Team
    • Contact
Powered by GitBook
On this page
  • Notes
  • Request Key Generation
  • Creator Rewards
  1. Developers
  2. API
  3. Deploy a Token

g8keep Deployment

A g8keep deployment uses anti-sniping measures that penalize large, early purchases.

Last updated 2 months ago

g8keep token deployments have been deprecated on March 18, 2025 during the upgrade to v0.3.1. If you use the g8keep API, please prepare your services accordingly.

g8keep deployments are third-party contracts managed by the g8keep team. Please refer to for more info on g8keep.

POST https://www.clanker.world/api/tokens/deploy/g8

Headers:

x-api-key: your_api_key
Content-Type: application/json

Request Body

{
  "name": "G8 Token",
  "symbol": "G8T",
  "image": "https://example.com/image.png",
  "requestorAddress": "0x1234567890abcdef1234567890abcdef12345678",
  "requestKey": "unique-request-identifier"
}

Response

{
  "success": true,
  "data": {
    "contractAddress": "0x...",
    "deploymentTx": "0x...",
    "name": "G8 Token",
    "symbol": "G8T",
    "createdAt": "2024-02-21T08:30:15.123Z"
  }
}

Example Request

curl -X POST 'https://www.clanker.world/api/tokens/deploy/g8' \
-H 'Authorization: Bearer YOUR_CLANKER_API_KEY' \
-H 'Content-Type: application/json' \
-d '{
 "name": "G8 Token",
  "symbol": "G8T",
  "image": "https://example.com/image.png",
  "requestorAddress": "0x1234567890abcdef1234567890abcdef12345678",
  "requestKey": "unique-request-identifier"
}'

Notes

Request Key Generation

  • Generate a unique 32-character string for each request

  • This is used as an idempotency key to prevent duplicate token deployments

Creator Rewards

  • 40% of creator rewards will accrue to the requestorAddress

  • Ensure the provided address is correct and accessible

https://g8.xyz/