Are you an LLM? Read llms.txt for a summary of the docs, or llms-full.txt for the full context.
Skip to content

PublicKey

A public key as returned by the indexer — includes metadata like creation time and key type.

Definition

type PublicKey = {
  keyHash: KeyHash
  publicKey: Hex
  keyType: "SECP256R1" | "SECP256K1" | "ETHEREUM"
  createdBlockHeight: number
  createdAt: DateTime
}

Fields

keyHashKeyHash. The hash of the public key.

publicKeyHex. The public key bytes, hex-encoded.

keyType — uppercase of one of KeyTag's keys.

createdBlockHeightnumber. Height at which the key was added.

createdAtDateTime. ISO 8601 timestamp.

See also