Aptos · Schema

EncryptedPayload

Payload is still encrypted and cannot be read.

BlockchainWeb3MoveLayer 1CryptocurrencyNFTSmart ContractsDeFiTransactionsAccountsGraphQLgRPC

Properties

Name Type Description
payload_hash object
ciphertext object
encryption_epoch object
claimed_entry_fun object
View JSON Schema on GitHub

JSON Schema

EncryptedPayload.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api-evangelist.github.io/aptos/json-schema/EncryptedPayload.json",
  "title": "EncryptedPayload",
  "type": "object",
  "description": "Payload is still encrypted and cannot be read.",
  "required": [
    "payload_hash",
    "ciphertext",
    "encryption_epoch"
  ],
  "properties": {
    "payload_hash": {
      "$ref": "#/components/schemas/HashValue"
    },
    "ciphertext": {
      "allOf": [
        {
          "$ref": "#/components/schemas/HexEncodedBytes"
        },
        {
          "description": "BCS-serialized ciphertext bytes, hex-encoded."
        }
      ]
    },
    "encryption_epoch": {
      "$ref": "#/components/schemas/U64"
    },
    "claimed_entry_fun": {
      "$ref": "#/components/schemas/ClaimedEntryFunction"
    }
  }
}