Documentation
    Preparing search index...

    Interface WriteQuiltOptions

    interface WriteQuiltOptions {
        attributes?: Record<string, null | string>;
        blobs: {
            contents: Uint8Array;
            identifier: string;
            tags?: Record<string, string>;
        }[];
        deletable: boolean;
        epochs: number;
        owner?: string;
        signal?: null
        | AbortSignal;
        signer: Signer;
    }

    Hierarchy

    Index

    Properties

    attributes?: Record<string, null | string>

    The attributes to write for the blob.

    blobs: {
        contents: Uint8Array;
        identifier: string;
        tags?: Record<string, string>;
    }[]
    deletable: boolean
    epochs: number

    The number of epochs the blob should be stored for.

    owner?: string

    Where the blob should be transferred to after it is registered. Defaults to the signer address.

    signal?: null | AbortSignal

    An AbortSignal to set request's signal.

    signer: Signer