Interface iBalance<T>

interface iBalance<T> {
    amount: T;
    badgeIds: iUintRange<T>[];
    ownershipTimes: iUintRange<T>[];
}

Type Parameters

Implemented by

Properties

amount: T

The amount or balance of the owned badge.

badgeIds: iUintRange<T>[]

The badge IDs corresponding to the balance.

ownershipTimes: iUintRange<T>[]

The times that the badge is owned from.