Documentation
    Preparing search index...

    Interface RegisterBlobOptions

    interface RegisterBlobOptions {
        attributes?: Record<string, string | null>;
        blobId: string;
        deletable: boolean;
        epochs: number;
        rootHash: Uint8Array;
        size: number;
        walCoin?: TransactionObjectArgument;
    }

    Hierarchy (View Summary)

    Index

    Properties

    attributes?: Record<string, string | null>

    The attributes to write for the blob.

    blobId: string
    deletable: boolean
    epochs: number

    The number of epoch the storage will be reserved for.

    rootHash: Uint8Array
    size: number

    The encoded size of the blob.

    Optionally specify a WAL coin to pay from. The estimated cost plus the configured buffer is split from this coin, and any WAL that isn't consumed by the payment is merged back into it. By default WAL is consumed from the signer's balance instead.