{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://neynar.com/schemas/TransactionFrameDestination", "title": "TransactionFrameDestination", "description": "Neynar Farcaster API schema for TransactionFrameDestination", "properties": { "address": { "$ref": "#/components/schemas/EthAddress" }, "amount": { "description": "Amount to send (must be greater than 0)", "example": 0.01, "minimum": 1e-08, "type": "number" }, "network": { "$ref": "#/components/schemas/Network" }, "token_contract_address": { "description": "Token contract address for the payment (e.g. 0x833589fcd6edb6e08f4c7c32d4f71b54bda02913 is USDC on Base)", "example": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913", "pattern": "^0x[a-fA-F0-9]{40}$", "type": "string" } }, "required": [ "address", "network", "token_contract_address", "amount" ], "type": "object" }