Documentation
    Preparing search index...

    Interface WriteFilesOptions

    interface WriteFilesOptions {
        attributes?: Record<string, null | string>;
        deletable: boolean;
        epochs: number;
        files: WalrusFile[];
        owner?: string;
        signal?: null | AbortSignal;
        signer: Signer;
    }

    Hierarchy

    Index

    Properties

    attributes?: Record<string, null | string>

    The attributes to write for the blob.

    deletable: boolean
    epochs: number

    The number of epochs the blob should be stored for.

    files: WalrusFile[]
    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