Coda by Ian Macalinao
    Preparing search index...

    Consumable-use configuration for an asset (e.g. tickets or redeemable passes), tracking how it may be used and how many uses remain.

    type Uses = {
        remaining: bigint;
        total: bigint;
        useMethod: UseMethod;
    }
    Index

    Properties

    remaining: bigint

    Number of uses left.

    total: bigint

    Total number of uses the asset was minted with.

    useMethod: UseMethod

    How the remaining uses are consumed.