{
  "title": "ReadOnlyFunctionArgs",
  "description": "Describes representation of a Type-0 Stacks 2.0 transaction. https://github.com/blockstack/stacks-blockchain/blob/master/sip/sip-005-blocks-and-transactions.md#type-0-transferring-an-asset",
  "type": "object",
  "additionalProperties": false,
  "required": ["sender", "arguments"],
  "properties": {
    "sender": {
      "type": "string",
      "description": "The simulated tx-sender"
    },
    "arguments": {
      "type": "array",
      "description": "An array of hex serialized Clarity values",
      "items": {
        "type": "string"
      }
    }
  }
}
