@kodiak-finance/orderly-core 2.8.24-beta.2 → 2.8.24-beta.3
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.js +6 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +6 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -7124,6 +7124,9 @@ var DefaultConfigStore = class {
|
|
|
7124
7124
|
const brokerId = init?.brokerId || "orderly";
|
|
7125
7125
|
const brokerName = init?.brokerName || "Orderly";
|
|
7126
7126
|
const chainNamespace = init?.chainNamespace || import_orderly_types5.ChainNamespace.evm;
|
|
7127
|
+
const vipTierEndpoint = init?.vipTierEndpoint || "";
|
|
7128
|
+
const vipTierDocsUrl = init?.vipTierDocsUrl || "";
|
|
7129
|
+
const vipTierStakeUrl = init?.vipTierStakeUrl || "";
|
|
7127
7130
|
this.map = /* @__PURE__ */ new Map([
|
|
7128
7131
|
["env", env],
|
|
7129
7132
|
["brokerId", brokerId],
|
|
@@ -7134,9 +7137,9 @@ var DefaultConfigStore = class {
|
|
|
7134
7137
|
["publicWsUrl", urls["publicWsUrl"]],
|
|
7135
7138
|
["privateWsUrl", urls["privateWsUrl"]],
|
|
7136
7139
|
["operatorUrl", urls["operatorUrl"]],
|
|
7137
|
-
["vipTierEndpoint",
|
|
7138
|
-
["vipTierDocsUrl",
|
|
7139
|
-
["vipTierStakeUrl",
|
|
7140
|
+
["vipTierEndpoint", vipTierEndpoint],
|
|
7141
|
+
["vipTierDocsUrl", vipTierDocsUrl],
|
|
7142
|
+
["vipTierStakeUrl", vipTierStakeUrl]
|
|
7140
7143
|
]);
|
|
7141
7144
|
}
|
|
7142
7145
|
get(key) {
|