@kodiak-finance/orderly-core 2.8.23 → 2.8.24-beta.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +4 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
package/dist/index.d.mts
CHANGED
|
@@ -498,7 +498,7 @@ declare function generateDexRequestMessage(inputs: {
|
|
|
498
498
|
};
|
|
499
499
|
}];
|
|
500
500
|
|
|
501
|
-
type ConfigKey = "apiBaseUrl" | "klineDataUrl" | "privateWsUrl" | "publicWsUrl" | "operatorUrl" | "domain" | "brokerId" | "brokerName" | "networkId" | "env" | "chainNamespace" | "PROD_URL" | "orderly_markets" | "markets";
|
|
501
|
+
type ConfigKey = "apiBaseUrl" | "klineDataUrl" | "privateWsUrl" | "publicWsUrl" | "operatorUrl" | "domain" | "brokerId" | "brokerName" | "networkId" | "env" | "chainNamespace" | "PROD_URL" | "orderly_markets" | "markets" | "vipTierEndpoint" | "vipTierDocsUrl" | "vipTierStakeUrl";
|
|
502
502
|
interface ConfigStore {
|
|
503
503
|
get<T = string>(key: ConfigKey): T;
|
|
504
504
|
getOr<T = string>(key: ConfigKey, defaultValue: T): T;
|
package/dist/index.d.ts
CHANGED
|
@@ -498,7 +498,7 @@ declare function generateDexRequestMessage(inputs: {
|
|
|
498
498
|
};
|
|
499
499
|
}];
|
|
500
500
|
|
|
501
|
-
type ConfigKey = "apiBaseUrl" | "klineDataUrl" | "privateWsUrl" | "publicWsUrl" | "operatorUrl" | "domain" | "brokerId" | "brokerName" | "networkId" | "env" | "chainNamespace" | "PROD_URL" | "orderly_markets" | "markets";
|
|
501
|
+
type ConfigKey = "apiBaseUrl" | "klineDataUrl" | "privateWsUrl" | "publicWsUrl" | "operatorUrl" | "domain" | "brokerId" | "brokerName" | "networkId" | "env" | "chainNamespace" | "PROD_URL" | "orderly_markets" | "markets" | "vipTierEndpoint" | "vipTierDocsUrl" | "vipTierStakeUrl";
|
|
502
502
|
interface ConfigStore {
|
|
503
503
|
get<T = string>(key: ConfigKey): T;
|
|
504
504
|
getOr<T = string>(key: ConfigKey, defaultValue: T): T;
|
package/dist/index.js
CHANGED
|
@@ -7133,7 +7133,10 @@ var DefaultConfigStore = class {
|
|
|
7133
7133
|
["apiBaseUrl", urls["apiBaseUrl"]],
|
|
7134
7134
|
["publicWsUrl", urls["publicWsUrl"]],
|
|
7135
7135
|
["privateWsUrl", urls["privateWsUrl"]],
|
|
7136
|
-
["operatorUrl", urls["operatorUrl"]]
|
|
7136
|
+
["operatorUrl", urls["operatorUrl"]],
|
|
7137
|
+
["vipTierEndpoint", ""],
|
|
7138
|
+
["vipTierDocsUrl", ""],
|
|
7139
|
+
["vipTierStakeUrl", ""]
|
|
7137
7140
|
]);
|
|
7138
7141
|
}
|
|
7139
7142
|
get(key) {
|