@aleph-sdk/monorepo
    Preparing search index...

    Type Alias MessageConfirmation

    Format of the result when a message has been confirmed on a blockchain The time and publisher field are introduced in recent versions of CCNs. They should remain optional until the corresponding CCN upload (0.4.0) is widely uploaded.

    type MessageConfirmation = {
        chain: string;
        hash: string | MessageConfirmationHash;
        height: number;
        publisher?: string;
        time?: number;
    }
    Index

    Properties

    chain: string
    height: number
    publisher?: string
    time?: number