Blockchain Commons Components TypeScript Library - v1.0.0-alpha.13
    Preparing search index...

    Interface DigestProvider

    A type that can provide a single unique digest that characterizes its contents.

    Use Cases:

    • Data integrity verification
    • Unique identifier for an object based on its content
    • Content-addressable storage implementation
    • Comparing objects by their content rather than identity
    interface DigestProvider {
        digest(): Digest;
    }

    Implemented by

    Index

    Methods

    Methods