Aptos · Schema

ClaimedEntryFunction

An encrypted payload's claim about the entry function. Specifies at least the module address, and optionally the specific entry funtion.

BlockchainWeb3MoveLayer 1CryptocurrencyNFTSmart ContractsDeFiTransactionsAccountsGraphQLgRPC

Properties

Name Type Description
module object
name object
View JSON Schema on GitHub

JSON Schema

ClaimedEntryFunction.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api-evangelist.github.io/aptos/json-schema/ClaimedEntryFunction.json",
  "title": "ClaimedEntryFunction",
  "type": "object",
  "description": "An encrypted payload's claim about the entry function. Specifies at least the module address,\nand optionally the specific entry funtion.",
  "required": [
    "module"
  ],
  "properties": {
    "module": {
      "$ref": "#/components/schemas/MoveModuleId"
    },
    "name": {
      "$ref": "#/components/schemas/IdentifierWrapper"
    }
  }
}