golem-base-sdk
    Preparing search index...

    Type Alias GolemBaseExtend

    Specification for extending the BTL (Block-to-Live) of existing entities.

    BTL extension allows entity owners to prolong the lifetime of their entities without modifying the data or annotations. This is useful for maintaining important data that should not expire.

    const extendSpec: GolemBaseExtend = {
    entityKey: "0x1234567890abcdef12345678",
    numberOfBlocks: 500
    };
    type GolemBaseExtend = {
        entityKey: Hex;
        numberOfBlocks: number;
    }
    Index

    Properties

    entityKey: Hex

    The hexadecimal key of the entity to extend

    numberOfBlocks: number

    Number of additional blocks to add to the entity's current expiration