Neynar · Schema

TransactionSendFungiblesRecipient

Neynar Farcaster API schema for TransactionSendFungiblesRecipient

FarcasterSocialDecentralizedWeb3BlockchainSocial GraphCastsChannelsFeedsReactionsNotificationsWebhooksOnchain

Properties

Name Type Description
amount number Amount to send (must be greater than 0)
fid object
View JSON Schema on GitHub

JSON Schema

transactionsendfungiblesrecipient.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://neynar.com/schemas/TransactionSendFungiblesRecipient",
  "title": "TransactionSendFungiblesRecipient",
  "description": "Neynar Farcaster API schema for TransactionSendFungiblesRecipient",
  "properties": {
    "amount": {
      "description": "Amount to send (must be greater than 0)",
      "minimum": 1e-08,
      "type": "number"
    },
    "fid": {
      "$ref": "#/components/schemas/Fid"
    }
  },
  "required": [
    "fid",
    "amount"
  ],
  "type": "object"
}