interface BlockBFT {
    ancestor: string;
    delegate: {
        verificationKey: string;
    };
    era: "byron";
    height: number;
    id: string;
    issuer: {
        verificationKey: string;
    };
    operationalCertificates?: BootstrapOperationalCertificate[];
    protocol: {
        id: number;
        software: SoftwareVersion;
        update?: BootstrapProtocolUpdate;
        version: ProtocolVersion;
    };
    size: {
        bytes: number;
    };
    slot: number;
    transactions?: Schema.Transaction[];
    type: "bft";
}

Properties

ancestor: string
delegate: {
    verificationKey: string;
}
era: "byron"
height: number
id: string
issuer: {
    verificationKey: string;
}
operationalCertificates?: BootstrapOperationalCertificate[]
protocol: {
    id: number;
    software: SoftwareVersion;
    update?: BootstrapProtocolUpdate;
    version: ProtocolVersion;
}
size: {
    bytes: number;
}
slot: number
transactions?: Schema.Transaction[]
type: "bft"