@drift-labs/common
Version:
Common functions for Drift
41 lines (40 loc) • 824 B
TypeScript
export interface RpcEndpoint {
label: string;
value: string;
wsValue?: string;
allowAdditionalConnection: boolean;
}
export declare const EnvironmentConstants: {
rpcs: {
dev: RpcEndpoint[];
mainnet: RpcEndpoint[];
};
historyServerUrl: {
dev: string;
mainnet: string;
staging: string;
};
dataServerUrl: {
dev: string;
mainnet: string;
staging: string;
};
dlobServerHttpUrl: {
dev: string;
mainnet: string;
staging: string;
};
dlobServerWsUrl: {
dev: string;
mainnet: string;
staging: string;
};
eventsServerUrl: {
mainnet: string;
staging: string;
};
swiftServerUrl: {
mainnet: string;
staging: string;
};
};