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 actual on-chain cost is deducted directly from this coin. 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