Skip to main content

PubKey

export interface PubKey {
  bytes: number[]
  dump(): string
  hash(): PubKeyHash
  isDummy(): boolean
  kind: "PubKey"
  toCbor(): number[]
  toHex(): string
  toString(): string
  toUplcData(): ByteArrayData
}

Properties

bytes

bytes: number[]

dump

dump(): string

hash

hash(): PubKeyHash

isDummy

isDummy(): boolean

kind

kind: "PubKey"

toCbor

toCbor(): number[]

toHex

toHex(): string

toString

toString(): string
Alias for toHex()

toUplcData

toUplcData(): ByteArrayData