Type Alias ConnectorNodesInfo

Connector node metadata including URL, contract type, and datasource cache status.

type ConnectorNodesInfo = {
    cachedDataSources?: string[];
    contractType: number;
    dataSourcesUpdated: boolean;
    providerName: string;
    state: string;
    url: string;
}
Index
cachedDataSources?: string[]

List of datasource IDs currently cached from the connector provider.

contractType: number

Protocol contract type used to communicate with the connector node (between 0 and 3, inclusive).

dataSourcesUpdated: boolean

When true, the cached datasource list is up to date.

providerName: string

Display name of the connector provider.

state: string

Current operational state of the connector node.

url: string

Address of the connector node.