Interface iIncrementedBalances<T>

interface iIncrementedBalances<T> {
    incrementBadgeIdsBy: T;
    incrementOwnershipTimesBy: T;
    startBalances: iBalance<T>[];
}

Type Parameters

Implemented by

Properties

incrementBadgeIdsBy: T

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

incrementOwnershipTimesBy: T

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

startBalances: iBalance<T>[]

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