Aptos · Schema

FailedDecryptionPayload

Decryption was attempted but failed.

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

FailedDecryptionPayload.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api-evangelist.github.io/aptos/json-schema/FailedDecryptionPayload.json",
  "title": "FailedDecryptionPayload",
  "type": "object",
  "description": "Decryption was attempted but failed.",
  "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"
    }
  }
}