Neynar · Schema
DeployFungibleReqBody
Neynar Farcaster API schema for DeployFungibleReqBody
FarcasterSocialDecentralizedWeb3BlockchainSocial GraphCastsChannelsFeedsReactionsNotificationsWebhooksOnchain
Properties
| Name | Type | Description |
|---|---|---|
| factory | string | Factory name - wow -> [wow.xyz](https://wow.xyz) - clanker -> [clanker.world](https://www.clanker.world) |
| metadata[description] | string | Description of the token |
| metadata[discord] | string | Discord server link |
| metadata[media] | string | Media file associated with the token. Supported formats are image/jpeg, image/gif and image/png |
| metadata[nsfw] | string | Indicates if the token is NSFW (Not Safe For Work). |
| metadata[telegram] | string | Telegram link |
| metadata[twitter] | string | Twitter profile link |
| metadata[website_link] | string | Website link related to the token |
| name | string | Name of the token |
| network | string | Network/Chain name |
| owner | string | Ethereum address of the one who is creating the token |
| symbol | string | Symbol/Ticker for the token |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://neynar.com/schemas/DeployFungibleReqBody",
"title": "DeployFungibleReqBody",
"description": "Neynar Farcaster API schema for DeployFungibleReqBody",
"properties": {
"factory": {
"default": "wow",
"description": "Factory name\n- wow -> [wow.xyz](https://wow.xyz)\n- clanker -> [clanker.world](https://www.clanker.world)",
"enum": [
"wow",
"clanker"
],
"type": "string"
},
"metadata[description]": {
"description": "Description of the token",
"type": "string"
},
"metadata[discord]": {
"description": "Discord server link",
"type": "string"
},
"metadata[media]": {
"description": "Media file associated with the token. \nSupported formats are image/jpeg, image/gif and image/png",
"format": "binary",
"nullable": true,
"type": "string"
},
"metadata[nsfw]": {
"description": "Indicates if the token is NSFW (Not Safe For Work).",
"enum": [
"true",
"false"
],
"type": "string"
},
"metadata[telegram]": {
"description": "Telegram link",
"type": "string"
},
"metadata[twitter]": {
"description": "Twitter profile link",
"type": "string"
},
"metadata[website_link]": {
"description": "Website link related to the token",
"type": "string"
},
"name": {
"description": "Name of the token",
"type": "string"
},
"network": {
"default": "base",
"description": "Network/Chain name",
"enum": [
"base"
],
"type": "string"
},
"owner": {
"description": "Ethereum address of the one who is creating the token",
"type": "string"
},
"symbol": {
"description": "Symbol/Ticker for the token",
"type": "string"
}
},
"required": [
"owner",
"symbol",
"name"
],
"type": "object"
}