@xapy/orderbook 0.1.3 → 0.1.5
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/exchanges/binance/index.cjs +605 -0
- package/dist/exchanges/binance/index.cjs.map +1 -0
- package/dist/exchanges/binance/index.d.cts +60 -0
- package/dist/exchanges/binance/index.d.ts +60 -0
- package/dist/exchanges/binance/index.js +601 -0
- package/dist/exchanges/binance/index.js.map +1 -0
- package/dist/exchanges/bingx/index.cjs +104 -24
- package/dist/exchanges/bingx/index.cjs.map +1 -1
- package/dist/exchanges/bingx/index.d.cts +10 -3
- package/dist/exchanges/bingx/index.d.ts +10 -3
- package/dist/exchanges/bingx/index.js +104 -24
- package/dist/exchanges/bingx/index.js.map +1 -1
- package/dist/exchanges/bitget/index.cjs +2 -1
- package/dist/exchanges/bitget/index.cjs.map +1 -1
- package/dist/exchanges/bitget/index.d.cts +1 -1
- package/dist/exchanges/bitget/index.d.ts +1 -1
- package/dist/exchanges/bitget/index.js +2 -1
- package/dist/exchanges/bitget/index.js.map +1 -1
- package/dist/exchanges/bybit/index.cjs +2 -1
- package/dist/exchanges/bybit/index.cjs.map +1 -1
- package/dist/exchanges/bybit/index.d.cts +1 -1
- package/dist/exchanges/bybit/index.d.ts +1 -1
- package/dist/exchanges/bybit/index.js +2 -1
- package/dist/exchanges/bybit/index.js.map +1 -1
- package/dist/exchanges/coinex/index.cjs +2 -1
- package/dist/exchanges/coinex/index.cjs.map +1 -1
- package/dist/exchanges/coinex/index.d.cts +1 -1
- package/dist/exchanges/coinex/index.d.ts +1 -1
- package/dist/exchanges/coinex/index.js +2 -1
- package/dist/exchanges/coinex/index.js.map +1 -1
- package/dist/exchanges/gate/index.cjs +2 -1
- package/dist/exchanges/gate/index.cjs.map +1 -1
- package/dist/exchanges/gate/index.d.cts +1 -1
- package/dist/exchanges/gate/index.d.ts +1 -1
- package/dist/exchanges/gate/index.js +2 -1
- package/dist/exchanges/gate/index.js.map +1 -1
- package/dist/exchanges/huobi/index.cjs +2 -1
- package/dist/exchanges/huobi/index.cjs.map +1 -1
- package/dist/exchanges/huobi/index.d.cts +1 -1
- package/dist/exchanges/huobi/index.d.ts +1 -1
- package/dist/exchanges/huobi/index.js +2 -1
- package/dist/exchanges/huobi/index.js.map +1 -1
- package/dist/exchanges/hyperliquid/index.cjs +536 -0
- package/dist/exchanges/hyperliquid/index.cjs.map +1 -0
- package/dist/exchanges/hyperliquid/index.d.cts +45 -0
- package/dist/exchanges/hyperliquid/index.d.ts +45 -0
- package/dist/exchanges/hyperliquid/index.js +532 -0
- package/dist/exchanges/hyperliquid/index.js.map +1 -0
- package/dist/exchanges/kucoin/index.cjs +614 -0
- package/dist/exchanges/kucoin/index.cjs.map +1 -0
- package/dist/exchanges/kucoin/index.d.cts +60 -0
- package/dist/exchanges/kucoin/index.d.ts +60 -0
- package/dist/exchanges/kucoin/index.js +609 -0
- package/dist/exchanges/kucoin/index.js.map +1 -0
- package/dist/exchanges/okx/index.cjs +2 -1
- package/dist/exchanges/okx/index.cjs.map +1 -1
- package/dist/exchanges/okx/index.d.cts +1 -1
- package/dist/exchanges/okx/index.d.ts +1 -1
- package/dist/exchanges/okx/index.js +2 -1
- package/dist/exchanges/okx/index.js.map +1 -1
- package/dist/index.cjs +729 -24
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +5 -2
- package/dist/index.d.ts +5 -2
- package/dist/index.js +727 -25
- package/dist/index.js.map +1 -1
- package/dist/{stream-BKpWmRYN.d.cts → stream-C73HPYqT.d.cts} +1 -1
- package/dist/{stream-BKpWmRYN.d.ts → stream-C73HPYqT.d.ts} +1 -1
- package/package.json +34 -1
package/dist/index.d.cts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { B as BookEvent, O as OrderbookLevel, M as Market } from './stream-
|
|
2
|
-
export { C as ClientOptions, E as ExchangeName, a as Orderbook, b as OrderbookOptions, c as OrderbookStream, S as Side, d as StreamEvents } from './stream-
|
|
1
|
+
import { B as BookEvent, O as OrderbookLevel, M as Market } from './stream-C73HPYqT.cjs';
|
|
2
|
+
export { C as ClientOptions, E as ExchangeName, a as Orderbook, b as OrderbookOptions, c as OrderbookStream, S as Side, d as StreamEvents } from './stream-C73HPYqT.cjs';
|
|
3
3
|
export { BybitClient } from './exchanges/bybit/index.cjs';
|
|
4
4
|
export { BitgetClient } from './exchanges/bitget/index.cjs';
|
|
5
5
|
export { GateClient } from './exchanges/gate/index.cjs';
|
|
@@ -7,6 +7,9 @@ export { BingxClient } from './exchanges/bingx/index.cjs';
|
|
|
7
7
|
export { HuobiClient } from './exchanges/huobi/index.cjs';
|
|
8
8
|
export { CoinexClient } from './exchanges/coinex/index.cjs';
|
|
9
9
|
export { OkxClient } from './exchanges/okx/index.cjs';
|
|
10
|
+
export { BinanceClient } from './exchanges/binance/index.cjs';
|
|
11
|
+
export { HyperliquidClient } from './exchanges/hyperliquid/index.cjs';
|
|
12
|
+
export { KucoinClient } from './exchanges/kucoin/index.cjs';
|
|
10
13
|
|
|
11
14
|
declare class ExchangeError extends Error {
|
|
12
15
|
readonly exchange: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { B as BookEvent, O as OrderbookLevel, M as Market } from './stream-
|
|
2
|
-
export { C as ClientOptions, E as ExchangeName, a as Orderbook, b as OrderbookOptions, c as OrderbookStream, S as Side, d as StreamEvents } from './stream-
|
|
1
|
+
import { B as BookEvent, O as OrderbookLevel, M as Market } from './stream-C73HPYqT.js';
|
|
2
|
+
export { C as ClientOptions, E as ExchangeName, a as Orderbook, b as OrderbookOptions, c as OrderbookStream, S as Side, d as StreamEvents } from './stream-C73HPYqT.js';
|
|
3
3
|
export { BybitClient } from './exchanges/bybit/index.js';
|
|
4
4
|
export { BitgetClient } from './exchanges/bitget/index.js';
|
|
5
5
|
export { GateClient } from './exchanges/gate/index.js';
|
|
@@ -7,6 +7,9 @@ export { BingxClient } from './exchanges/bingx/index.js';
|
|
|
7
7
|
export { HuobiClient } from './exchanges/huobi/index.js';
|
|
8
8
|
export { CoinexClient } from './exchanges/coinex/index.js';
|
|
9
9
|
export { OkxClient } from './exchanges/okx/index.js';
|
|
10
|
+
export { BinanceClient } from './exchanges/binance/index.js';
|
|
11
|
+
export { HyperliquidClient } from './exchanges/hyperliquid/index.js';
|
|
12
|
+
export { KucoinClient } from './exchanges/kucoin/index.js';
|
|
10
13
|
|
|
11
14
|
declare class ExchangeError extends Error {
|
|
12
15
|
readonly exchange: string;
|