Skip to main content

TxOutputId

export interface TxOutputId {
  index: number
  isEqual(other: TxOutputId): boolean
  kind: "TxOutputId"
  toCbor(): number[]
  toString(): string
  toUplcData(): ConstrData
  toURLString(): string
  txId: TxId
}

Properties

index

index: number

isEqual

isEqual(other: TxOutputId): boolean

kind

kind: "TxOutputId"

toCbor

toCbor(): number[]

toString

toString(): string
Encoded as <txId>#<index>

toUplcData

toUplcData(): ConstrData

toURLString

toURLString(): string
Encoded as <txId><index> (without the # symbol)

txId

txId: TxId