Algorand TypeScript
    Preparing search index...

    Type Alias LocalStateForAccount<ValueType>

    A proxy for manipulating a local state field for a single account

    type LocalStateForAccount<ValueType> = {
        hasValue: boolean;
        value: ValueType;
        delete(): void;
    }

    Type Parameters

    • ValueType
    Index

    Properties

    Methods

    Properties

    hasValue: boolean

    Gets a boolean value indicating if local state field for a single account currently has a value

    value: ValueType

    Get or set the value of this local state field for a single account

    Methods