Aptos · Schema

EntryFunctionPayload

Payload which runs a single entry function

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

EntryFunctionPayload.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api-evangelist.github.io/aptos/json-schema/EntryFunctionPayload.json",
  "title": "EntryFunctionPayload",
  "type": "object",
  "description": "Payload which runs a single entry function",
  "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": {}
    }
  }
}