Interface StakePointer

Represents a stake pointer in the Cardano blockchain.

A stake pointer references a stake credential by its location in the blockchain using three components:

  • slot: The slot number where the stake credential is located
  • txIndex: The transaction index within the slot
  • certIndex: The certificate index within the transaction
interface StakePointer {
    certIndex: number;
    slot: bigint;
    txIndex: number;
}

Properties

certIndex: number

The certificate index within the transaction.

slot: bigint

The slot number where the stake credential is located.

txIndex: number

The transaction index within the slot.