AccountResponse - OpenDive/AptosKit GitHub Wiki
AccountResponse
Response to the Get Account REST endpoint
public struct AccountResponse: Codable
Inheritance
Codable
Properties
sequenceNumber
A string containing a 64-bit unsigned integer. We represent u64 values as a string to ensure compatibility with languages such as JavaScript that do not parse u64s in JSON natively.
public var sequenceNumber: String
authenticationKey
All bytes (Vec) data is represented as hex-encoded string prefixed with 0x and fulfilled with two hex digits per byte. Unlike the Address type, HexEncodedBytes will not trim any zeros.
public var authenticationKey: String