Skip to main content

ByronAddress

export interface ByronAddress {
  bytes: number[]
  checksum: bigint
  era: "Byron"
  isEqual(other: Address): boolean
  kind: "Address"
  toBase58(): string
  toCbor(): number[]
  toString(): string
  toUplcData(): UplcData
}
Byron-era address

Properties

bytes

bytes: number[]

checksum

checksum: bigint

era

era: "Byron"

isEqual

isEqual(other: Address): boolean

kind

kind: "Address"

toBase58

toBase58(): string

toCbor

toCbor(): number[]

toString

toString(): string
Alias for toBase58()

toUplcData

toUplcData(): UplcData
Throws an error. Simplifies type-compatibility with ShelleyAddress, so you can simply call Address.toUplcData()