bitbadgesjs-sdk - v0.22.7
    Preparing search index...

    Interface iIncrementedBalances<T>

    interface iIncrementedBalances<T extends NumberType> {
        allowOverrideTimestamp: boolean;
        allowOverrideWithAnyValidToken: boolean;
        durationFromTimestamp: T;
        incrementOwnershipTimesBy: T;
        incrementTokenIdsBy: T;
        recurringOwnershipTimes: iRecurringOwnershipTimes<T>;
        startBalances: iBalance<T>[];
    }

    Type Parameters

    Implemented by

    Index

    Properties

    allowOverrideTimestamp: boolean

    Whether to allow the override timestamp to be used.

    allowOverrideWithAnyValidToken: boolean

    Whether to allow the override with any valid ID.

    durationFromTimestamp: T

    The number of unix milliseconds to approve starting from now. Incompatible with incrementOwnershipTimesBy.

    incrementOwnershipTimesBy: T

    The amount to increment the owned times by after each transfer. Incompatible with durationFromTimestamp.

    incrementTokenIdsBy: T

    The amount to increment the token IDs by after each transfer.

    recurringOwnershipTimes: iRecurringOwnershipTimes<T>

    The recurring ownership times for the approval.

    startBalances: iBalance<T>[]

    The starting balances for each transfer. Order number corresponds to the number of times we increment.