Documentation
    Preparing search index...
    interface PayloadBase {
        aud?: DID;
        cmd: string;
        exp: null | number;
        iss: DIDURL;
        meta?: Record<string, unknown>;
        nbf?: number;
        nonce: Uint8Array<ArrayBuffer>;
        sub?: null | DID;
    }

    Hierarchy (View Summary)

    Index

    Properties

    aud?: DID

    Audience DID (receiver)

    cmd: string

    The Command to eventually invoke

    exp: null | number

    Expiration UTC Unix Timestamp in seconds (valid until)

    iss: DIDURL

    Issuer DID (sender)

    meta?: Record<string, unknown>

    Meta (asserted, signed data) — is not delegated authority

    nbf?: number

    "Not before" UTC Unix Timestamp in seconds (valid from)

    nonce: Uint8Array<ArrayBuffer>

    The nonce of the UCAN

    sub?: null | DID

    Principal that the chain is about (the [Subject])