g8keep Deployment

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

g8keep deployments are third-party contracts managed by the g8keep team. Please refer to https://g8.xyz/ 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

Last updated