ic-reactor
    Preparing search index...

    Interface AgentState

    Represents the state of an agent.

    interface AgentState {
        initialized: boolean;
        isInitialized: boolean;
        initializing: boolean;
        isInitializing: boolean;
        error: undefined | utils.agent.AgentError;
        network: undefined | string;
    }
    Index

    Properties

    initialized: boolean

    Use isInitialized instead. Indicates whether the agent has been initialized.

    isInitialized: boolean

    Indicates whether the agent has been initialized.

    initializing: boolean

    Use isInitializing instead. Indicates whether the agent is in the process of initializing.

    isInitializing: boolean

    Indicates whether the agent is in the process of initializing.

    error: undefined | utils.agent.AgentError

    Represents an error associated with the agent, if any.

    network: undefined | string

    Represents the network associated with the agent, if any.