Neynar · Schema

TransactionSendTxInfo

Neynar Farcaster API schema for TransactionSendTxInfo

FarcasterSocialDecentralizedWeb3BlockchainSocial GraphCastsChannelsFeedsReactionsNotificationsWebhooksOnchain

Properties

Name Type Description
approval_hash string Hash of the transaction that approved the transfer. This is only present if the fungible token is not native token of the network.
gas_used string Gas used for the transaction.
network string
transaction_hash string
View JSON Schema on GitHub

JSON Schema

transactionsendtxinfo.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://neynar.com/schemas/TransactionSendTxInfo",
  "title": "TransactionSendTxInfo",
  "description": "Neynar Farcaster API schema for TransactionSendTxInfo",
  "properties": {
    "approval_hash": {
      "description": "Hash of the transaction that approved the transfer. This is only present if the fungible token is not native token of the network.",
      "type": "string"
    },
    "gas_used": {
      "description": "Gas used for the transaction.",
      "type": "string"
    },
    "network": {
      "enum": [
        "base",
        "optimism",
        "base-sepolia"
      ],
      "type": "string"
    },
    "transaction_hash": {
      "type": "string"
    }
  },
  "required": [
    "network",
    "transaction_hash",
    "gas_used",
    "approval_hash"
  ],
  "type": "object"
}