@0xarchive/sdk 0.8.0 → 0.8.1
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/README.md +64 -3
- package/dist/index.d.mts +61 -2
- package/dist/index.d.ts +61 -2
- package/dist/index.js +37 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +37 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -32,9 +32,10 @@ console.log(`Hyperliquid BTC mid price: ${hlOrderbook.midPrice}`);
|
|
|
32
32
|
const lighterOrderbook = await client.lighter.orderbook.get('BTC');
|
|
33
33
|
console.log(`Lighter BTC mid price: ${lighterOrderbook.midPrice}`);
|
|
34
34
|
|
|
35
|
-
// HIP-3 builder perps (
|
|
36
|
-
const
|
|
37
|
-
const
|
|
35
|
+
// HIP-3 builder perps (February 2026+)
|
|
36
|
+
const hip3Instruments = await client.hyperliquid.hip3.instruments.list();
|
|
37
|
+
const hip3Orderbook = await client.hyperliquid.hip3.orderbook.get('km:US500');
|
|
38
|
+
const hip3Trades = await client.hyperliquid.hip3.trades.recent('km:US500');
|
|
38
39
|
const hip3Funding = await client.hyperliquid.hip3.funding.current('xyz:XYZ100');
|
|
39
40
|
const hip3Oi = await client.hyperliquid.hip3.openInterest.current('xyz:XYZ100');
|
|
40
41
|
|
|
@@ -269,6 +270,28 @@ console.log(`ETH min base amount: ${eth.minBaseAmount}`);
|
|
|
269
270
|
| Market ID | Not available | `marketId` |
|
|
270
271
|
| Min amounts | Not available | `minBaseAmount`, `minQuoteAmount` |
|
|
271
272
|
|
|
273
|
+
#### HIP-3 Instruments
|
|
274
|
+
|
|
275
|
+
HIP-3 instruments are derived from live market data and include mark price, open interest, and mid price:
|
|
276
|
+
|
|
277
|
+
```typescript
|
|
278
|
+
// List all HIP-3 instruments (no tier restriction)
|
|
279
|
+
const hip3Instruments = await client.hyperliquid.hip3.instruments.list();
|
|
280
|
+
for (const inst of hip3Instruments) {
|
|
281
|
+
console.log(`${inst.coin} (${inst.namespace}:${inst.ticker}): mark=${inst.markPrice}, OI=${inst.openInterest}`);
|
|
282
|
+
}
|
|
283
|
+
|
|
284
|
+
// Get specific HIP-3 instrument (case-sensitive)
|
|
285
|
+
const us500 = await client.hyperliquid.hip3.instruments.get('km:US500');
|
|
286
|
+
console.log(`Mark price: ${us500.markPrice}`);
|
|
287
|
+
```
|
|
288
|
+
|
|
289
|
+
**Available HIP-3 Coins:**
|
|
290
|
+
| Builder | Coins |
|
|
291
|
+
|---------|-------|
|
|
292
|
+
| xyz (Hyperliquid) | `xyz:XYZ100` |
|
|
293
|
+
| km (Kinetiq Markets) | `km:US500`, `km:SMALL2000`, `km:GOOGL`, `km:USBOND`, `km:GOLD`, `km:USTECH`, `km:NVDA`, `km:SILVER`, `km:BABA` |
|
|
294
|
+
|
|
272
295
|
### Funding Rates
|
|
273
296
|
|
|
274
297
|
```typescript
|
|
@@ -660,6 +683,8 @@ const ws = new OxArchiveWs({
|
|
|
660
683
|
|
|
661
684
|
### Available Channels
|
|
662
685
|
|
|
686
|
+
#### Hyperliquid Channels
|
|
687
|
+
|
|
663
688
|
| Channel | Description | Requires Coin | Historical Support |
|
|
664
689
|
|---------|-------------|---------------|-------------------|
|
|
665
690
|
| `orderbook` | L2 order book updates | Yes | Yes |
|
|
@@ -669,6 +694,23 @@ const ws = new OxArchiveWs({
|
|
|
669
694
|
| `ticker` | Price and 24h volume | Yes | Real-time only |
|
|
670
695
|
| `all_tickers` | All market tickers | No | Real-time only |
|
|
671
696
|
|
|
697
|
+
#### HIP-3 Builder Perps Channels
|
|
698
|
+
|
|
699
|
+
| Channel | Description | Requires Coin | Historical Support |
|
|
700
|
+
|---------|-------------|---------------|-------------------|
|
|
701
|
+
| `hip3_orderbook` | HIP-3 L2 order book snapshots | Yes | Yes |
|
|
702
|
+
| `hip3_trades` | HIP-3 trade/fill updates | Yes | Yes |
|
|
703
|
+
|
|
704
|
+
> **Note:** HIP-3 coins are case-sensitive (e.g., `km:US500`, `xyz:XYZ100`). Do not uppercase them.
|
|
705
|
+
|
|
706
|
+
#### Lighter.xyz Channels
|
|
707
|
+
|
|
708
|
+
| Channel | Description | Requires Coin | Historical Support |
|
|
709
|
+
|---------|-------------|---------------|-------------------|
|
|
710
|
+
| `lighter_orderbook` | Lighter L2 order book (reconstructed) | Yes | Yes |
|
|
711
|
+
| `lighter_trades` | Lighter trade/fill updates | Yes | Yes |
|
|
712
|
+
| `lighter_candles` | Lighter OHLCV candle data | Yes | Yes |
|
|
713
|
+
|
|
672
714
|
#### Candle Replay/Stream
|
|
673
715
|
|
|
674
716
|
```typescript
|
|
@@ -696,6 +738,24 @@ ws.replay('lighter_candles', 'BTC', {
|
|
|
696
738
|
});
|
|
697
739
|
```
|
|
698
740
|
|
|
741
|
+
#### HIP-3 Replay/Stream
|
|
742
|
+
|
|
743
|
+
```typescript
|
|
744
|
+
// Replay HIP-3 orderbook at 50x speed
|
|
745
|
+
ws.replay('hip3_orderbook', 'km:US500', {
|
|
746
|
+
start: Date.now() - 3600000,
|
|
747
|
+
end: Date.now(),
|
|
748
|
+
speed: 50,
|
|
749
|
+
});
|
|
750
|
+
|
|
751
|
+
// Bulk stream HIP-3 trades
|
|
752
|
+
ws.stream('hip3_trades', 'xyz:XYZ100', {
|
|
753
|
+
start: Date.now() - 86400000,
|
|
754
|
+
end: Date.now(),
|
|
755
|
+
batchSize: 1000,
|
|
756
|
+
});
|
|
757
|
+
```
|
|
758
|
+
|
|
699
759
|
### WebSocket Connection States
|
|
700
760
|
|
|
701
761
|
```typescript
|
|
@@ -756,6 +816,7 @@ import type {
|
|
|
756
816
|
Candle,
|
|
757
817
|
Instrument,
|
|
758
818
|
LighterInstrument,
|
|
819
|
+
Hip3Instrument,
|
|
759
820
|
LighterGranularity,
|
|
760
821
|
FundingRate,
|
|
761
822
|
OpenInterest,
|
package/dist/index.d.mts
CHANGED
|
@@ -216,6 +216,26 @@ interface LighterInstrument {
|
|
|
216
216
|
/** Whether the instrument is currently tradeable */
|
|
217
217
|
isActive: boolean;
|
|
218
218
|
}
|
|
219
|
+
/**
|
|
220
|
+
* HIP-3 Builder Perps instrument with latest market data.
|
|
221
|
+
* Derived from live open interest data.
|
|
222
|
+
*/
|
|
223
|
+
interface Hip3Instrument {
|
|
224
|
+
/** Full coin name (e.g., km:US500, xyz:XYZ100) */
|
|
225
|
+
coin: string;
|
|
226
|
+
/** Builder namespace (e.g., km, xyz) */
|
|
227
|
+
namespace: string;
|
|
228
|
+
/** Ticker within the namespace (e.g., US500, XYZ100) */
|
|
229
|
+
ticker: string;
|
|
230
|
+
/** Latest mark price */
|
|
231
|
+
markPrice?: number;
|
|
232
|
+
/** Latest open interest */
|
|
233
|
+
openInterest?: number;
|
|
234
|
+
/** Latest mid price */
|
|
235
|
+
midPrice?: number;
|
|
236
|
+
/** Timestamp of latest data point */
|
|
237
|
+
latestTimestamp?: string;
|
|
238
|
+
}
|
|
219
239
|
/**
|
|
220
240
|
* Funding rate record
|
|
221
241
|
*/
|
|
@@ -336,7 +356,7 @@ interface CandleHistoryParams extends CursorPaginationParams {
|
|
|
336
356
|
interval?: CandleInterval;
|
|
337
357
|
}
|
|
338
358
|
/** WebSocket channel types. Note: ticker/all_tickers are real-time only. Liquidations is historical only (May 2025+). */
|
|
339
|
-
type WsChannel = 'orderbook' | 'trades' | 'candles' | 'liquidations' | 'ticker' | 'all_tickers';
|
|
359
|
+
type WsChannel = 'orderbook' | 'trades' | 'candles' | 'liquidations' | 'ticker' | 'all_tickers' | 'lighter_orderbook' | 'lighter_trades' | 'lighter_candles' | 'hip3_orderbook' | 'hip3_trades';
|
|
340
360
|
/** Subscribe message from client */
|
|
341
361
|
interface WsSubscribe {
|
|
342
362
|
op: 'subscribe';
|
|
@@ -1400,6 +1420,41 @@ declare class LighterInstrumentsResource {
|
|
|
1400
1420
|
*/
|
|
1401
1421
|
get(coin: string): Promise<LighterInstrument>;
|
|
1402
1422
|
}
|
|
1423
|
+
/**
|
|
1424
|
+
* HIP-3 Builder Perps Instruments API resource
|
|
1425
|
+
*
|
|
1426
|
+
* HIP-3 instruments are derived from live market data and include
|
|
1427
|
+
* mark price, open interest, and mid price context.
|
|
1428
|
+
*
|
|
1429
|
+
* @example
|
|
1430
|
+
* ```typescript
|
|
1431
|
+
* // List all HIP-3 instruments
|
|
1432
|
+
* const instruments = await client.hyperliquid.hip3.instruments.list();
|
|
1433
|
+
*
|
|
1434
|
+
* // Get specific instrument
|
|
1435
|
+
* const us500 = await client.hyperliquid.hip3.instruments.get('km:US500');
|
|
1436
|
+
* console.log(`Mark price: ${us500.markPrice}`);
|
|
1437
|
+
* ```
|
|
1438
|
+
*/
|
|
1439
|
+
declare class Hip3InstrumentsResource {
|
|
1440
|
+
private http;
|
|
1441
|
+
private basePath;
|
|
1442
|
+
private coinTransform;
|
|
1443
|
+
constructor(http: HttpClient, basePath?: string, coinTransform?: (c: string) => string);
|
|
1444
|
+
/**
|
|
1445
|
+
* List all available HIP-3 instruments with latest market data
|
|
1446
|
+
*
|
|
1447
|
+
* @returns Array of HIP-3 instruments
|
|
1448
|
+
*/
|
|
1449
|
+
list(): Promise<Hip3Instrument[]>;
|
|
1450
|
+
/**
|
|
1451
|
+
* Get a specific HIP-3 instrument by coin name
|
|
1452
|
+
*
|
|
1453
|
+
* @param coin - The coin name (e.g., 'km:US500', 'xyz:XYZ100'). Case-sensitive.
|
|
1454
|
+
* @returns HIP-3 instrument details with latest market data
|
|
1455
|
+
*/
|
|
1456
|
+
get(coin: string): Promise<Hip3Instrument>;
|
|
1457
|
+
}
|
|
1403
1458
|
|
|
1404
1459
|
/**
|
|
1405
1460
|
* Funding rates API resource
|
|
@@ -1842,6 +1897,10 @@ declare class HyperliquidClient {
|
|
|
1842
1897
|
* ```
|
|
1843
1898
|
*/
|
|
1844
1899
|
declare class Hip3Client {
|
|
1900
|
+
/**
|
|
1901
|
+
* HIP-3 instruments with latest market data
|
|
1902
|
+
*/
|
|
1903
|
+
readonly instruments: Hip3InstrumentsResource;
|
|
1845
1904
|
/**
|
|
1846
1905
|
* Order book snapshots (February 2026+)
|
|
1847
1906
|
*/
|
|
@@ -4070,4 +4129,4 @@ type ValidatedCandle = z.infer<typeof CandleSchema>;
|
|
|
4070
4129
|
type ValidatedLiquidation = z.infer<typeof LiquidationSchema>;
|
|
4071
4130
|
type ValidatedWsServerMessage = z.infer<typeof WsServerMessageSchema>;
|
|
4072
4131
|
|
|
4073
|
-
export { type ApiError, type ApiMeta, ApiMetaSchema, type ApiResponse, ApiResponseSchema, type Candle, CandleArrayResponseSchema, type CandleHistoryParams, type CandleInterval, CandleIntervalSchema, CandleSchema, type ClientOptions, type CompletenessMetrics, type CoverageGap, type CoverageResponse, type CursorResponse, type DataCadence, type DataFreshness, type DataTypeCoverage, type DataTypeStatus, type ExchangeCoverage, type ExchangeLatency, type ExchangeStatus, type FundingRate, FundingRateArrayResponseSchema, FundingRateResponseSchema, FundingRateSchema, type GetOrderBookParams, type GetTradesCursorParams, Hip3Client, HyperliquidClient, type Incident, type IncidentSeverityValue, type IncidentStatusValue, type IncidentsResponse, type Instrument, InstrumentArrayResponseSchema, InstrumentResponseSchema, InstrumentSchema, type InstrumentType, InstrumentTypeSchema, type LatencyResponse, LighterClient, type LighterGranularity, type LighterInstrument, type Liquidation, LiquidationArrayResponseSchema, type LiquidationHistoryParams, LiquidationSchema, LiquidationSideSchema, type LiquidationsByUserParams, type ListIncidentsParams, type OpenInterest, OpenInterestArrayResponseSchema, OpenInterestResponseSchema, OpenInterestSchema, type OrderBook, OrderBookArrayResponseSchema, type OrderBookHistoryParams, OrderBookReconstructor, OrderBookResponseSchema, OrderBookSchema, type OrderbookDelta, OxArchive, OxArchiveError, OxArchiveWs, type Pagination, type PriceLevel, PriceLevelSchema, type ReconstructOptions, type ReconstructedOrderBook, type RestApiLatency, type SlaActual, type SlaParams, type SlaResponse, type SlaTargets, type StatusResponse, type SymbolCoverageOptions, type SymbolCoverageResponse, type SymbolDataTypeCoverage, type SystemStatusValue, type TickData, type TickHistoryParams, type Timestamp, type TimestampedRecord, TimestampedRecordSchema, type Trade, TradeArrayResponseSchema, type TradeDirection, TradeDirectionSchema, TradeSchema, type TradeSide, TradeSideSchema, type ValidatedApiMeta, type ValidatedCandle, type ValidatedFundingRate, type ValidatedInstrument, type ValidatedLiquidation, type ValidatedOpenInterest, type ValidatedOrderBook, type ValidatedPriceLevel, type ValidatedTrade, type ValidatedWsServerMessage, type WebSocketLatency, type WsChannel, WsChannelSchema, type WsClientMessage, type WsConnectionState, WsConnectionStateSchema, type WsData, WsDataSchema, type WsError, WsErrorSchema, type WsEventHandlers, type WsHistoricalBatch, WsHistoricalBatchSchema, type WsHistoricalData, WsHistoricalDataSchema, type WsHistoricalTickData, type WsOptions, type WsPing, type WsPong, WsPongSchema, type WsReplay, type WsReplayCompleted, WsReplayCompletedSchema, type WsReplayPause, type WsReplayPaused, WsReplayPausedSchema, type WsReplayResume, type WsReplayResumed, WsReplayResumedSchema, type WsReplaySeek, type WsReplayStarted, WsReplayStartedSchema, type WsReplayStop, type WsReplayStopped, WsReplayStoppedSchema, type WsServerMessage, WsServerMessageSchema, type WsStream, type WsStreamCompleted, WsStreamCompletedSchema, type WsStreamProgress, WsStreamProgressSchema, type WsStreamStarted, WsStreamStartedSchema, type WsStreamStop, type WsStreamStopped, WsStreamStoppedSchema, type WsSubscribe, type WsSubscribed, WsSubscribedSchema, type WsUnsubscribe, type WsUnsubscribed, WsUnsubscribedSchema, OxArchive as default, reconstructFinal, reconstructOrderBook };
|
|
4132
|
+
export { type ApiError, type ApiMeta, ApiMetaSchema, type ApiResponse, ApiResponseSchema, type Candle, CandleArrayResponseSchema, type CandleHistoryParams, type CandleInterval, CandleIntervalSchema, CandleSchema, type ClientOptions, type CompletenessMetrics, type CoverageGap, type CoverageResponse, type CursorResponse, type DataCadence, type DataFreshness, type DataTypeCoverage, type DataTypeStatus, type ExchangeCoverage, type ExchangeLatency, type ExchangeStatus, type FundingRate, FundingRateArrayResponseSchema, FundingRateResponseSchema, FundingRateSchema, type GetOrderBookParams, type GetTradesCursorParams, Hip3Client, type Hip3Instrument, HyperliquidClient, type Incident, type IncidentSeverityValue, type IncidentStatusValue, type IncidentsResponse, type Instrument, InstrumentArrayResponseSchema, InstrumentResponseSchema, InstrumentSchema, type InstrumentType, InstrumentTypeSchema, type LatencyResponse, LighterClient, type LighterGranularity, type LighterInstrument, type Liquidation, LiquidationArrayResponseSchema, type LiquidationHistoryParams, LiquidationSchema, LiquidationSideSchema, type LiquidationsByUserParams, type ListIncidentsParams, type OpenInterest, OpenInterestArrayResponseSchema, OpenInterestResponseSchema, OpenInterestSchema, type OrderBook, OrderBookArrayResponseSchema, type OrderBookHistoryParams, OrderBookReconstructor, OrderBookResponseSchema, OrderBookSchema, type OrderbookDelta, OxArchive, OxArchiveError, OxArchiveWs, type Pagination, type PriceLevel, PriceLevelSchema, type ReconstructOptions, type ReconstructedOrderBook, type RestApiLatency, type SlaActual, type SlaParams, type SlaResponse, type SlaTargets, type StatusResponse, type SymbolCoverageOptions, type SymbolCoverageResponse, type SymbolDataTypeCoverage, type SystemStatusValue, type TickData, type TickHistoryParams, type Timestamp, type TimestampedRecord, TimestampedRecordSchema, type Trade, TradeArrayResponseSchema, type TradeDirection, TradeDirectionSchema, TradeSchema, type TradeSide, TradeSideSchema, type ValidatedApiMeta, type ValidatedCandle, type ValidatedFundingRate, type ValidatedInstrument, type ValidatedLiquidation, type ValidatedOpenInterest, type ValidatedOrderBook, type ValidatedPriceLevel, type ValidatedTrade, type ValidatedWsServerMessage, type WebSocketLatency, type WsChannel, WsChannelSchema, type WsClientMessage, type WsConnectionState, WsConnectionStateSchema, type WsData, WsDataSchema, type WsError, WsErrorSchema, type WsEventHandlers, type WsHistoricalBatch, WsHistoricalBatchSchema, type WsHistoricalData, WsHistoricalDataSchema, type WsHistoricalTickData, type WsOptions, type WsPing, type WsPong, WsPongSchema, type WsReplay, type WsReplayCompleted, WsReplayCompletedSchema, type WsReplayPause, type WsReplayPaused, WsReplayPausedSchema, type WsReplayResume, type WsReplayResumed, WsReplayResumedSchema, type WsReplaySeek, type WsReplayStarted, WsReplayStartedSchema, type WsReplayStop, type WsReplayStopped, WsReplayStoppedSchema, type WsServerMessage, WsServerMessageSchema, type WsStream, type WsStreamCompleted, WsStreamCompletedSchema, type WsStreamProgress, WsStreamProgressSchema, type WsStreamStarted, WsStreamStartedSchema, type WsStreamStop, type WsStreamStopped, WsStreamStoppedSchema, type WsSubscribe, type WsSubscribed, WsSubscribedSchema, type WsUnsubscribe, type WsUnsubscribed, WsUnsubscribedSchema, OxArchive as default, reconstructFinal, reconstructOrderBook };
|
package/dist/index.d.ts
CHANGED
|
@@ -216,6 +216,26 @@ interface LighterInstrument {
|
|
|
216
216
|
/** Whether the instrument is currently tradeable */
|
|
217
217
|
isActive: boolean;
|
|
218
218
|
}
|
|
219
|
+
/**
|
|
220
|
+
* HIP-3 Builder Perps instrument with latest market data.
|
|
221
|
+
* Derived from live open interest data.
|
|
222
|
+
*/
|
|
223
|
+
interface Hip3Instrument {
|
|
224
|
+
/** Full coin name (e.g., km:US500, xyz:XYZ100) */
|
|
225
|
+
coin: string;
|
|
226
|
+
/** Builder namespace (e.g., km, xyz) */
|
|
227
|
+
namespace: string;
|
|
228
|
+
/** Ticker within the namespace (e.g., US500, XYZ100) */
|
|
229
|
+
ticker: string;
|
|
230
|
+
/** Latest mark price */
|
|
231
|
+
markPrice?: number;
|
|
232
|
+
/** Latest open interest */
|
|
233
|
+
openInterest?: number;
|
|
234
|
+
/** Latest mid price */
|
|
235
|
+
midPrice?: number;
|
|
236
|
+
/** Timestamp of latest data point */
|
|
237
|
+
latestTimestamp?: string;
|
|
238
|
+
}
|
|
219
239
|
/**
|
|
220
240
|
* Funding rate record
|
|
221
241
|
*/
|
|
@@ -336,7 +356,7 @@ interface CandleHistoryParams extends CursorPaginationParams {
|
|
|
336
356
|
interval?: CandleInterval;
|
|
337
357
|
}
|
|
338
358
|
/** WebSocket channel types. Note: ticker/all_tickers are real-time only. Liquidations is historical only (May 2025+). */
|
|
339
|
-
type WsChannel = 'orderbook' | 'trades' | 'candles' | 'liquidations' | 'ticker' | 'all_tickers';
|
|
359
|
+
type WsChannel = 'orderbook' | 'trades' | 'candles' | 'liquidations' | 'ticker' | 'all_tickers' | 'lighter_orderbook' | 'lighter_trades' | 'lighter_candles' | 'hip3_orderbook' | 'hip3_trades';
|
|
340
360
|
/** Subscribe message from client */
|
|
341
361
|
interface WsSubscribe {
|
|
342
362
|
op: 'subscribe';
|
|
@@ -1400,6 +1420,41 @@ declare class LighterInstrumentsResource {
|
|
|
1400
1420
|
*/
|
|
1401
1421
|
get(coin: string): Promise<LighterInstrument>;
|
|
1402
1422
|
}
|
|
1423
|
+
/**
|
|
1424
|
+
* HIP-3 Builder Perps Instruments API resource
|
|
1425
|
+
*
|
|
1426
|
+
* HIP-3 instruments are derived from live market data and include
|
|
1427
|
+
* mark price, open interest, and mid price context.
|
|
1428
|
+
*
|
|
1429
|
+
* @example
|
|
1430
|
+
* ```typescript
|
|
1431
|
+
* // List all HIP-3 instruments
|
|
1432
|
+
* const instruments = await client.hyperliquid.hip3.instruments.list();
|
|
1433
|
+
*
|
|
1434
|
+
* // Get specific instrument
|
|
1435
|
+
* const us500 = await client.hyperliquid.hip3.instruments.get('km:US500');
|
|
1436
|
+
* console.log(`Mark price: ${us500.markPrice}`);
|
|
1437
|
+
* ```
|
|
1438
|
+
*/
|
|
1439
|
+
declare class Hip3InstrumentsResource {
|
|
1440
|
+
private http;
|
|
1441
|
+
private basePath;
|
|
1442
|
+
private coinTransform;
|
|
1443
|
+
constructor(http: HttpClient, basePath?: string, coinTransform?: (c: string) => string);
|
|
1444
|
+
/**
|
|
1445
|
+
* List all available HIP-3 instruments with latest market data
|
|
1446
|
+
*
|
|
1447
|
+
* @returns Array of HIP-3 instruments
|
|
1448
|
+
*/
|
|
1449
|
+
list(): Promise<Hip3Instrument[]>;
|
|
1450
|
+
/**
|
|
1451
|
+
* Get a specific HIP-3 instrument by coin name
|
|
1452
|
+
*
|
|
1453
|
+
* @param coin - The coin name (e.g., 'km:US500', 'xyz:XYZ100'). Case-sensitive.
|
|
1454
|
+
* @returns HIP-3 instrument details with latest market data
|
|
1455
|
+
*/
|
|
1456
|
+
get(coin: string): Promise<Hip3Instrument>;
|
|
1457
|
+
}
|
|
1403
1458
|
|
|
1404
1459
|
/**
|
|
1405
1460
|
* Funding rates API resource
|
|
@@ -1842,6 +1897,10 @@ declare class HyperliquidClient {
|
|
|
1842
1897
|
* ```
|
|
1843
1898
|
*/
|
|
1844
1899
|
declare class Hip3Client {
|
|
1900
|
+
/**
|
|
1901
|
+
* HIP-3 instruments with latest market data
|
|
1902
|
+
*/
|
|
1903
|
+
readonly instruments: Hip3InstrumentsResource;
|
|
1845
1904
|
/**
|
|
1846
1905
|
* Order book snapshots (February 2026+)
|
|
1847
1906
|
*/
|
|
@@ -4070,4 +4129,4 @@ type ValidatedCandle = z.infer<typeof CandleSchema>;
|
|
|
4070
4129
|
type ValidatedLiquidation = z.infer<typeof LiquidationSchema>;
|
|
4071
4130
|
type ValidatedWsServerMessage = z.infer<typeof WsServerMessageSchema>;
|
|
4072
4131
|
|
|
4073
|
-
export { type ApiError, type ApiMeta, ApiMetaSchema, type ApiResponse, ApiResponseSchema, type Candle, CandleArrayResponseSchema, type CandleHistoryParams, type CandleInterval, CandleIntervalSchema, CandleSchema, type ClientOptions, type CompletenessMetrics, type CoverageGap, type CoverageResponse, type CursorResponse, type DataCadence, type DataFreshness, type DataTypeCoverage, type DataTypeStatus, type ExchangeCoverage, type ExchangeLatency, type ExchangeStatus, type FundingRate, FundingRateArrayResponseSchema, FundingRateResponseSchema, FundingRateSchema, type GetOrderBookParams, type GetTradesCursorParams, Hip3Client, HyperliquidClient, type Incident, type IncidentSeverityValue, type IncidentStatusValue, type IncidentsResponse, type Instrument, InstrumentArrayResponseSchema, InstrumentResponseSchema, InstrumentSchema, type InstrumentType, InstrumentTypeSchema, type LatencyResponse, LighterClient, type LighterGranularity, type LighterInstrument, type Liquidation, LiquidationArrayResponseSchema, type LiquidationHistoryParams, LiquidationSchema, LiquidationSideSchema, type LiquidationsByUserParams, type ListIncidentsParams, type OpenInterest, OpenInterestArrayResponseSchema, OpenInterestResponseSchema, OpenInterestSchema, type OrderBook, OrderBookArrayResponseSchema, type OrderBookHistoryParams, OrderBookReconstructor, OrderBookResponseSchema, OrderBookSchema, type OrderbookDelta, OxArchive, OxArchiveError, OxArchiveWs, type Pagination, type PriceLevel, PriceLevelSchema, type ReconstructOptions, type ReconstructedOrderBook, type RestApiLatency, type SlaActual, type SlaParams, type SlaResponse, type SlaTargets, type StatusResponse, type SymbolCoverageOptions, type SymbolCoverageResponse, type SymbolDataTypeCoverage, type SystemStatusValue, type TickData, type TickHistoryParams, type Timestamp, type TimestampedRecord, TimestampedRecordSchema, type Trade, TradeArrayResponseSchema, type TradeDirection, TradeDirectionSchema, TradeSchema, type TradeSide, TradeSideSchema, type ValidatedApiMeta, type ValidatedCandle, type ValidatedFundingRate, type ValidatedInstrument, type ValidatedLiquidation, type ValidatedOpenInterest, type ValidatedOrderBook, type ValidatedPriceLevel, type ValidatedTrade, type ValidatedWsServerMessage, type WebSocketLatency, type WsChannel, WsChannelSchema, type WsClientMessage, type WsConnectionState, WsConnectionStateSchema, type WsData, WsDataSchema, type WsError, WsErrorSchema, type WsEventHandlers, type WsHistoricalBatch, WsHistoricalBatchSchema, type WsHistoricalData, WsHistoricalDataSchema, type WsHistoricalTickData, type WsOptions, type WsPing, type WsPong, WsPongSchema, type WsReplay, type WsReplayCompleted, WsReplayCompletedSchema, type WsReplayPause, type WsReplayPaused, WsReplayPausedSchema, type WsReplayResume, type WsReplayResumed, WsReplayResumedSchema, type WsReplaySeek, type WsReplayStarted, WsReplayStartedSchema, type WsReplayStop, type WsReplayStopped, WsReplayStoppedSchema, type WsServerMessage, WsServerMessageSchema, type WsStream, type WsStreamCompleted, WsStreamCompletedSchema, type WsStreamProgress, WsStreamProgressSchema, type WsStreamStarted, WsStreamStartedSchema, type WsStreamStop, type WsStreamStopped, WsStreamStoppedSchema, type WsSubscribe, type WsSubscribed, WsSubscribedSchema, type WsUnsubscribe, type WsUnsubscribed, WsUnsubscribedSchema, OxArchive as default, reconstructFinal, reconstructOrderBook };
|
|
4132
|
+
export { type ApiError, type ApiMeta, ApiMetaSchema, type ApiResponse, ApiResponseSchema, type Candle, CandleArrayResponseSchema, type CandleHistoryParams, type CandleInterval, CandleIntervalSchema, CandleSchema, type ClientOptions, type CompletenessMetrics, type CoverageGap, type CoverageResponse, type CursorResponse, type DataCadence, type DataFreshness, type DataTypeCoverage, type DataTypeStatus, type ExchangeCoverage, type ExchangeLatency, type ExchangeStatus, type FundingRate, FundingRateArrayResponseSchema, FundingRateResponseSchema, FundingRateSchema, type GetOrderBookParams, type GetTradesCursorParams, Hip3Client, type Hip3Instrument, HyperliquidClient, type Incident, type IncidentSeverityValue, type IncidentStatusValue, type IncidentsResponse, type Instrument, InstrumentArrayResponseSchema, InstrumentResponseSchema, InstrumentSchema, type InstrumentType, InstrumentTypeSchema, type LatencyResponse, LighterClient, type LighterGranularity, type LighterInstrument, type Liquidation, LiquidationArrayResponseSchema, type LiquidationHistoryParams, LiquidationSchema, LiquidationSideSchema, type LiquidationsByUserParams, type ListIncidentsParams, type OpenInterest, OpenInterestArrayResponseSchema, OpenInterestResponseSchema, OpenInterestSchema, type OrderBook, OrderBookArrayResponseSchema, type OrderBookHistoryParams, OrderBookReconstructor, OrderBookResponseSchema, OrderBookSchema, type OrderbookDelta, OxArchive, OxArchiveError, OxArchiveWs, type Pagination, type PriceLevel, PriceLevelSchema, type ReconstructOptions, type ReconstructedOrderBook, type RestApiLatency, type SlaActual, type SlaParams, type SlaResponse, type SlaTargets, type StatusResponse, type SymbolCoverageOptions, type SymbolCoverageResponse, type SymbolDataTypeCoverage, type SystemStatusValue, type TickData, type TickHistoryParams, type Timestamp, type TimestampedRecord, TimestampedRecordSchema, type Trade, TradeArrayResponseSchema, type TradeDirection, TradeDirectionSchema, TradeSchema, type TradeSide, TradeSideSchema, type ValidatedApiMeta, type ValidatedCandle, type ValidatedFundingRate, type ValidatedInstrument, type ValidatedLiquidation, type ValidatedOpenInterest, type ValidatedOrderBook, type ValidatedPriceLevel, type ValidatedTrade, type ValidatedWsServerMessage, type WebSocketLatency, type WsChannel, WsChannelSchema, type WsClientMessage, type WsConnectionState, WsConnectionStateSchema, type WsData, WsDataSchema, type WsError, WsErrorSchema, type WsEventHandlers, type WsHistoricalBatch, WsHistoricalBatchSchema, type WsHistoricalData, WsHistoricalDataSchema, type WsHistoricalTickData, type WsOptions, type WsPing, type WsPong, WsPongSchema, type WsReplay, type WsReplayCompleted, WsReplayCompletedSchema, type WsReplayPause, type WsReplayPaused, WsReplayPausedSchema, type WsReplayResume, type WsReplayResumed, WsReplayResumedSchema, type WsReplaySeek, type WsReplayStarted, WsReplayStartedSchema, type WsReplayStop, type WsReplayStopped, WsReplayStoppedSchema, type WsServerMessage, WsServerMessageSchema, type WsStream, type WsStreamCompleted, WsStreamCompletedSchema, type WsStreamProgress, WsStreamProgressSchema, type WsStreamStarted, WsStreamStartedSchema, type WsStreamStop, type WsStreamStopped, WsStreamStoppedSchema, type WsSubscribe, type WsSubscribed, WsSubscribedSchema, type WsUnsubscribe, type WsUnsubscribed, WsUnsubscribedSchema, OxArchive as default, reconstructFinal, reconstructOrderBook };
|
package/dist/index.js
CHANGED
|
@@ -970,6 +970,38 @@ var LighterInstrumentsResource = class {
|
|
|
970
970
|
return response.data;
|
|
971
971
|
}
|
|
972
972
|
};
|
|
973
|
+
var Hip3InstrumentsResource = class {
|
|
974
|
+
constructor(http, basePath = "/v1/hyperliquid/hip3", coinTransform) {
|
|
975
|
+
this.http = http;
|
|
976
|
+
this.basePath = basePath;
|
|
977
|
+
this.coinTransform = coinTransform || ((c) => c);
|
|
978
|
+
}
|
|
979
|
+
coinTransform;
|
|
980
|
+
/**
|
|
981
|
+
* List all available HIP-3 instruments with latest market data
|
|
982
|
+
*
|
|
983
|
+
* @returns Array of HIP-3 instruments
|
|
984
|
+
*/
|
|
985
|
+
async list() {
|
|
986
|
+
const response = await this.http.get(
|
|
987
|
+
`${this.basePath}/instruments`
|
|
988
|
+
);
|
|
989
|
+
return response.data;
|
|
990
|
+
}
|
|
991
|
+
/**
|
|
992
|
+
* Get a specific HIP-3 instrument by coin name
|
|
993
|
+
*
|
|
994
|
+
* @param coin - The coin name (e.g., 'km:US500', 'xyz:XYZ100'). Case-sensitive.
|
|
995
|
+
* @returns HIP-3 instrument details with latest market data
|
|
996
|
+
*/
|
|
997
|
+
async get(coin) {
|
|
998
|
+
coin = this.coinTransform(coin);
|
|
999
|
+
const response = await this.http.get(
|
|
1000
|
+
`${this.basePath}/instruments/${coin}`
|
|
1001
|
+
);
|
|
1002
|
+
return response.data;
|
|
1003
|
+
}
|
|
1004
|
+
};
|
|
973
1005
|
|
|
974
1006
|
// src/resources/funding.ts
|
|
975
1007
|
var FundingResource = class {
|
|
@@ -1369,6 +1401,10 @@ var HyperliquidClient = class {
|
|
|
1369
1401
|
}
|
|
1370
1402
|
};
|
|
1371
1403
|
var Hip3Client = class {
|
|
1404
|
+
/**
|
|
1405
|
+
* HIP-3 instruments with latest market data
|
|
1406
|
+
*/
|
|
1407
|
+
instruments;
|
|
1372
1408
|
/**
|
|
1373
1409
|
* Order book snapshots (February 2026+)
|
|
1374
1410
|
*/
|
|
@@ -1388,6 +1424,7 @@ var Hip3Client = class {
|
|
|
1388
1424
|
constructor(http) {
|
|
1389
1425
|
const basePath = "/v1/hyperliquid/hip3";
|
|
1390
1426
|
const coinTransform = (c) => c;
|
|
1427
|
+
this.instruments = new Hip3InstrumentsResource(http, basePath, coinTransform);
|
|
1391
1428
|
this.orderbook = new OrderBookResource(http, basePath, coinTransform);
|
|
1392
1429
|
this.trades = new TradesResource(http, basePath, coinTransform);
|
|
1393
1430
|
this.funding = new FundingResource(http, basePath, coinTransform);
|