interface BlockPraos {
    ancestor: string;
    era:
        | "shelley"
        | "allegra"
        | "mary"
        | "alonzo"
        | "babbage";
    height: number;
    id: string;
    issuer: {
        leaderValue: CertifiedVrf;
        operationalCertificate: OperationalCertificate;
        verificationKey: string;
        vrfVerificationKey: string;
    };
    nonce?: CertifiedVrf;
    protocol: {
        version: ProtocolVersion;
    };
    size: {
        bytes: number;
    };
    slot: number;
    transactions?: Schema.Transaction[];
    type: "praos";
}

Properties

ancestor: string
era:
    | "shelley"
    | "allegra"
    | "mary"
    | "alonzo"
    | "babbage"
height: number
id: string
issuer: {
    leaderValue: CertifiedVrf;
    operationalCertificate: OperationalCertificate;
    verificationKey: string;
    vrfVerificationKey: string;
}
nonce?: CertifiedVrf
protocol: {
    version: ProtocolVersion;
}
size: {
    bytes: number;
}
slot: number
transactions?: Schema.Transaction[]
type: "praos"