{ "$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" }