Interface EpochInfo

Information about the current epoch in Solana.

2.0.0

interface EpochInfo {
    absoluteSlot: number;
    blockHeight: number;
    epoch: number;
    slotIndex: number;
    slotsInEpoch: number;
    transactionCount?: number;
}

Properties

absoluteSlot: number
blockHeight: number
epoch: number
slotIndex: number
slotsInEpoch: number
transactionCount?: number