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

    Interface iDynamicStoreValue<T>

    DynamicStoreValue stores a boolean value for a specific address in a dynamic store. This allows the creator to set true/false values per address that can be checked during approval.

    interface iDynamicStoreValue<T extends NumberType> {
        address: string;
        storeId: T;
        value: boolean;
    }

    Type Parameters

    Implemented by

    Index

    Properties

    Properties

    address: string

    The address for which this value is stored.

    storeId: T

    The unique identifier for this dynamic store.

    value: boolean

    The boolean value (true/false).