Aptos · Schema

ViewRequest

View request for the Move View Function API

BlockchainWeb3MoveLayer 1CryptocurrencyNFTSmart ContractsDeFiTransactionsAccountsGraphQLgRPC

Properties

Name Type Description
function object
type_arguments array Type arguments of the function
arguments array Arguments of the function
View JSON Schema on GitHub

JSON Schema

ViewRequest.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api-evangelist.github.io/aptos/json-schema/ViewRequest.json",
  "title": "ViewRequest",
  "type": "object",
  "description": "View request for the Move View Function API",
  "required": [
    "function",
    "type_arguments",
    "arguments"
  ],
  "properties": {
    "function": {
      "$ref": "#/components/schemas/EntryFunctionId"
    },
    "type_arguments": {
      "type": "array",
      "description": "Type arguments of the function",
      "items": {
        "$ref": "#/components/schemas/MoveType"
      }
    },
    "arguments": {
      "type": "array",
      "description": "Arguments of the function",
      "items": {}
    }
  }
}