AccountData

@Serializable
data class AccountData(val sequenceNumber: String, val authenticationKey: String)

Represents core account metadata on the Aptos blockchain.

This data structure corresponds to account information returned by the Aptos Fullnode API. It provides essential details used for tracking account state and verifying ownership.

Constructors

Link copied to clipboard
constructor(sequenceNumber: String, authenticationKey: String)

Properties

Link copied to clipboard
@SerialName(value = "authentication_key")
val authenticationKey: String

Authentication key for the account, represented as a hex-encoded string.

Link copied to clipboard
@SerialName(value = "sequence_number")
val sequenceNumber: String

Sequence number for the account, represented as a string-encoded 64-bit unsigned integer (u64).