Skip to content

ExtendEntityParameters

ExtendEntityParameters = object

Defined in: src/actions/wallet/extendEntity.ts:17

Parameters for the extendEntity function.

  • entityKey: The key of the entity to extend.
  • expiresIn: How long to extend the entity by, in seconds. Because Arkiv measures expiration in blocks (1 block = 2 seconds), this must be a positive integer and a multiple of the block time (2 seconds). Invalid values throw an InvalidExpirationError.

entityKey: Hex

Defined in: src/actions/wallet/extendEntity.ts:18


expiresIn: number

Defined in: src/actions/wallet/extendEntity.ts:21

Seconds to extend by. Must be a positive integer and a multiple of the 2s block time. Throws InvalidExpirationError otherwise.