@orderly.network/net 1.0.12 → 1.0.14
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/.turbo/turbo-build.log +4 -4
- package/CHANGELOG.md +12 -0
- package/package.json +2 -2
- package/src/ws/contants.ts +0 -13
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> @orderly.network/net@1.0.
|
|
2
|
+
> @orderly.network/net@1.0.13 build /Users/leo/orderly/orderly-web/packages/net
|
|
3
3
|
> tsup
|
|
4
4
|
|
|
5
5
|
CLI Building entry: src/index.ts
|
|
@@ -12,11 +12,11 @@ CJS Build start
|
|
|
12
12
|
ESM Build start
|
|
13
13
|
CJS dist/index.js 13.59 KB
|
|
14
14
|
CJS dist/index.js.map 21.52 KB
|
|
15
|
-
CJS ⚡️ Build success in
|
|
15
|
+
CJS ⚡️ Build success in 24ms
|
|
16
16
|
ESM dist/index.mjs 12.55 KB
|
|
17
17
|
ESM dist/index.mjs.map 21.28 KB
|
|
18
|
-
ESM ⚡️ Build success in
|
|
18
|
+
ESM ⚡️ Build success in 24ms
|
|
19
19
|
DTS Build start
|
|
20
|
-
DTS ⚡️ Build success in
|
|
20
|
+
DTS ⚡️ Build success in 1090ms
|
|
21
21
|
DTS dist/index.d.ts 2.19 KB
|
|
22
22
|
DTS dist/index.d.mts 2.19 KB
|
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@orderly.network/net",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.14",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"rxjs": "^7.8.1",
|
|
18
18
|
"tsup": "^7.1.0",
|
|
19
19
|
"typescript": "^5.1.6",
|
|
20
|
-
"tsconfig": "0.0.
|
|
20
|
+
"tsconfig": "0.0.14"
|
|
21
21
|
},
|
|
22
22
|
"peerDependencies": {
|
|
23
23
|
"rxjs": "^7.8.1"
|
package/src/ws/contants.ts
DELETED
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
export const WS_URL = {
|
|
2
|
-
testnet: {
|
|
3
|
-
// public: "wss://testnet-ws.orderly.org/ws/stream/",
|
|
4
|
-
public: "wss://dev-ws-v2.orderly.org/ws/stream/",
|
|
5
|
-
// private:
|
|
6
|
-
// "wss://dev-ws-private-v2.orderly.org/wsprivate/v2/ws/private/stream/",
|
|
7
|
-
private: "wss://dev-ws-private-v2.orderly.org/v2/ws/private/stream/",
|
|
8
|
-
},
|
|
9
|
-
mainnet: {
|
|
10
|
-
public: "wss://mainnet-ws.orderly.io",
|
|
11
|
-
private: "wss://mainnet-ws.orderly.io",
|
|
12
|
-
},
|
|
13
|
-
};
|