Documentation
    Preparing search index...

    Type Alias ExtendBlobOptions

    ExtendBlobOptions: { blobObjectId: string; walCoin?: TransactionObjectArgument } & (
        | { endEpoch?: never; epochs: number }
        | { endEpoch: number; epochs?: never }
    )

    Type Declaration

    • blobObjectId: string
    • OptionalwalCoin?: TransactionObjectArgument

      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.

    • { endEpoch?: never; epochs: number }
      • OptionalendEpoch?: never
      • epochs: number

        The number of epochs the blob should be stored for.

    • { endEpoch: number; epochs?: never }
      • endEpoch: number

        The new end epoch for the storage period of the blob.

      • Optionalepochs?: never