Aptos · Schema

AccountData

Account data A simplified version of the onchain Account resource

BlockchainWeb3MoveLayer 1CryptocurrencyNFTSmart ContractsDeFiTransactionsAccountsGraphQLgRPC

Properties

Name Type Description
sequence_number object
authentication_key object
View JSON Schema on GitHub

JSON Schema

AccountData.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api-evangelist.github.io/aptos/json-schema/AccountData.json",
  "title": "AccountData",
  "type": "object",
  "description": "Account data\n\nA simplified version of the onchain Account resource",
  "required": [
    "sequence_number",
    "authentication_key"
  ],
  "properties": {
    "sequence_number": {
      "$ref": "#/components/schemas/U64"
    },
    "authentication_key": {
      "$ref": "#/components/schemas/HexEncodedBytes"
    }
  }
}