Standard Deployment w/Custom Reward Splits
Deploy a new token with Clanker's standard configuration and custom split configurations (via Splits) for reward distribution.
Headers:
Request Body Parameters:
name
string
The name of your token
symbol
string
Token symbol (usually 3-4 characters)
image
string
URL to the token's image
requestorAddress
string
Ethereum address where 40% of creator rewards will be sent
requestKey
string
Unique 32-character identifier for idempotency
requestorId
string
ID of requestor on any given platform
description
string
Description of token for creators to provide
socialMediaUrls
string[]
URLs for external pages related to the token
platform
string
Platform launch name for social context
castHash
string
Legacy version of messageId
messageId
string
ID of message on any given platform
vaultUnlockTimestamp
number
UNIX timestamp of the creator vault unlock. Must be at least 30 days from time of deployment
vaultPercentage
number
% of supply to place in the creator vault
creatorRewardsAdmin
string
Address with admin control over the creator rewards and creator vault. Defaults to requestorAddress
initialMarketCap
number
Starting market cap in ETH. Only works for WETH-paired tokens. Minimum value of 1 (1 ETH market cap) and defaults to 10 (10 ETH market cap). There is no maximum value.
groupAddresses
JSON
Object to designate creator rewards by address and percentage. Total must equal 100. Example:
[{"address": "0x1eaf444ebDf6495C57aD52A04C61521bBf564ace",
"allocation": 34
},
{
"address": "0x1eaf444ebDf6495C57aD52A04C61521bBf564ace",
"allocation": 66
}]
Example Request:
Last updated