Documentation
    Preparing search index...

    Type Alias CertifyBlobOptions

    CertifyBlobOptions: { blobId: string; blobObjectId: string; deletable: boolean } & (
        | { certificate?: never; confirmations: (StorageConfirmation | null)[] }
        | { certificate: ProtocolMessageCertificate; confirmations?: never }
    )

    Type declaration

    • blobId: string
    • blobObjectId: string
    • deletable: boolean
    • { certificate?: never; confirmations: (StorageConfirmation | null)[] }
      • Optionalcertificate?: never
      • confirmations: (StorageConfirmation | null)[]

        An array of confirmations. These confirmations must be provided in the same order as the nodes in the committee. For nodes that have not provided a confirmation you can pass null

    • { certificate: ProtocolMessageCertificate; confirmations?: never }