interface ProtocolConfig {
    attributes: {
        [key: string]: ProtocolConfigValue | null;
    };
    featureFlags: {
        [key: string]: boolean;
    };
    maxSupportedProtocolVersion: string;
    minSupportedProtocolVersion: string;
    protocolVersion: string;
}

Properties

attributes: {
    [key: string]: ProtocolConfigValue | null;
}
featureFlags: {
    [key: string]: boolean;
}
maxSupportedProtocolVersion: string
minSupportedProtocolVersion: string
protocolVersion: string