@nadohq/indexer-client 0.24.0 → 0.25.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/{IndexerBaseClient-DGQgRmZN.cjs → IndexerBaseClient-D_xMNjhf.cjs} +32 -1
- package/dist/IndexerBaseClient-D_xMNjhf.cjs.map +1 -0
- package/dist/IndexerBaseClient.cjs +1 -1
- package/dist/IndexerBaseClient.d.cts +8 -2
- package/dist/IndexerBaseClient.d.cts.map +1 -1
- package/dist/IndexerBaseClient.d.ts +8 -2
- package/dist/IndexerBaseClient.d.ts.map +1 -1
- package/dist/IndexerBaseClient.js +31 -0
- package/dist/IndexerBaseClient.js.map +1 -1
- package/dist/IndexerClient.cjs +1 -1
- package/dist/IndexerClient.d.cts +1 -1
- package/dist/IndexerClient.d.ts +1 -1
- package/dist/{clientTypes-l0R_wiVM.d.ts → clientTypes-BzpYIUbg.d.ts} +41 -3
- package/dist/{clientTypes-l0R_wiVM.d.ts.map → clientTypes-BzpYIUbg.d.ts.map} +1 -1
- package/dist/{clientTypes-C0SIczmn.d.cts → clientTypes-CgQ-pdym.d.cts} +41 -3
- package/dist/{clientTypes-C0SIczmn.d.cts.map → clientTypes-CgQ-pdym.d.cts.map} +1 -1
- package/dist/dataMappers.cjs +1 -1
- package/dist/dataMappers.d.cts +2 -2
- package/dist/dataMappers.d.ts +2 -2
- package/dist/index.cjs +1 -1
- package/dist/index.d.cts +5 -5
- package/dist/index.d.ts +5 -5
- package/dist/{indexerBalanceValue-D2KvyrdG.d.cts → indexerBalanceValue-BMncrrka.d.cts} +2 -2
- package/dist/{indexerBalanceValue-D2KvyrdG.d.cts.map → indexerBalanceValue-BMncrrka.d.cts.map} +1 -1
- package/dist/{indexerBalanceValue-CucKRR_z.d.ts → indexerBalanceValue-BeyJ655G.d.ts} +2 -2
- package/dist/{indexerBalanceValue-CucKRR_z.d.ts.map → indexerBalanceValue-BeyJ655G.d.ts.map} +1 -1
- package/dist/{paginatedEventsTypes-CDMc_pGM.d.ts → paginatedEventsTypes-B8d8yiii.d.ts} +2 -2
- package/dist/{paginatedEventsTypes-CDMc_pGM.d.ts.map → paginatedEventsTypes-B8d8yiii.d.ts.map} +1 -1
- package/dist/{paginatedEventsTypes-TCtY9-ic.d.cts → paginatedEventsTypes-rj9qNxIF.d.cts} +2 -2
- package/dist/{paginatedEventsTypes-TCtY9-ic.d.cts.map → paginatedEventsTypes-rj9qNxIF.d.cts.map} +1 -1
- package/dist/{serverTypes-D1k2yh1r.d.ts → serverTypes-Co5rgD5o.d.ts} +37 -2
- package/dist/serverTypes-Co5rgD5o.d.ts.map +1 -0
- package/dist/{serverTypes-RtS26eXS.d.cts → serverTypes-Dl79x4IJ.d.cts} +37 -2
- package/dist/serverTypes-Dl79x4IJ.d.cts.map +1 -0
- package/dist/types/clientTypes.d.cts +2 -2
- package/dist/types/clientTypes.d.ts +2 -2
- package/dist/types/index.d.cts +4 -4
- package/dist/types/index.d.ts +4 -4
- package/dist/types/paginatedEventsTypes.d.cts +1 -1
- package/dist/types/paginatedEventsTypes.d.ts +1 -1
- package/dist/types/serverTypes.d.cts +2 -2
- package/dist/types/serverTypes.d.ts +2 -2
- package/dist/utils/index.d.cts +1 -1
- package/dist/utils/index.d.ts +1 -1
- package/dist/utils/indexerBalanceValue.d.cts +1 -1
- package/dist/utils/indexerBalanceValue.d.ts +1 -1
- package/package.json +4 -4
- package/src/IndexerBaseClient.ts +43 -0
- package/src/types/clientTypes.ts +46 -0
- package/src/types/serverTypes.ts +53 -0
- package/dist/IndexerBaseClient-DGQgRmZN.cjs.map +0 -1
- package/dist/serverTypes-D1k2yh1r.d.ts.map +0 -1
- package/dist/serverTypes-RtS26eXS.d.cts.map +0 -1
|
@@ -2,7 +2,7 @@ import { t as CandlestickPeriod } from "./CandlestickPeriod-1DtcEiOb.js";
|
|
|
2
2
|
import { t as IndexerEventType } from "./IndexerEventType-Brm9aX8w.js";
|
|
3
3
|
import { t as IndexerLeaderboardRankType } from "./IndexerLeaderboardType-DAKw2tfI.js";
|
|
4
4
|
import { c as NadoWithdrawCollateralV2Tx, o as NadoTx, s as NadoWithdrawCollateralTx } from "./NadoTx-Bd4U-zDu.js";
|
|
5
|
-
import {
|
|
5
|
+
import { G as IndexerServerListSubaccountsParams, b as IndexerServerFastWithdrawalSignatureParams, jt as IndexerServerTriggerTypeFilter } from "./serverTypes-Co5rgD5o.js";
|
|
6
6
|
import { EIP712OrderValues, Market, OrderAppendix, PerpBalance, PerpMarket, ProductEngineType, SpotBalance, SpotMarket, Subaccount } from "@nadohq/shared";
|
|
7
7
|
import BigNumber from "bignumber.js";
|
|
8
8
|
import { Address, Hex } from "viem";
|
|
@@ -637,6 +637,44 @@ interface GetIndexerXPointsResponse {
|
|
|
637
637
|
pointsPerEpoch: IndexerXPointsEpoch[];
|
|
638
638
|
allTimePoints: IndexerXPointsAllTime;
|
|
639
639
|
}
|
|
640
|
+
/**
|
|
641
|
+
* Cash Incentives (platform volume and unlocked rewards)
|
|
642
|
+
*/
|
|
643
|
+
interface GetIndexerCashIncentivesParams {
|
|
644
|
+
address: Address;
|
|
645
|
+
}
|
|
646
|
+
interface IndexerCashIncentivesEventMetadata {
|
|
647
|
+
eventId: number;
|
|
648
|
+
description: string;
|
|
649
|
+
/** Unix timestamp in seconds */
|
|
650
|
+
epochStart: BigNumber;
|
|
651
|
+
/** Unix timestamp in seconds */
|
|
652
|
+
epochEnd: BigNumber;
|
|
653
|
+
maxVolume: BigNumber;
|
|
654
|
+
maxReward: BigNumber;
|
|
655
|
+
minVolume: BigNumber;
|
|
656
|
+
minReward: BigNumber;
|
|
657
|
+
}
|
|
658
|
+
interface IndexerCashIncentivesEventPlatform {
|
|
659
|
+
platformVolume: BigNumber;
|
|
660
|
+
unlockedReward: BigNumber;
|
|
661
|
+
}
|
|
662
|
+
interface IndexerCashIncentivesEventWallet {
|
|
663
|
+
reward: BigNumber;
|
|
664
|
+
}
|
|
665
|
+
interface IndexerCashIncentivesEvent {
|
|
666
|
+
metadata: IndexerCashIncentivesEventMetadata;
|
|
667
|
+
platform: IndexerCashIncentivesEventPlatform;
|
|
668
|
+
wallet: IndexerCashIncentivesEventWallet;
|
|
669
|
+
}
|
|
670
|
+
interface IndexerCashIncentivesWalletSummary {
|
|
671
|
+
totalReward: BigNumber;
|
|
672
|
+
claimableReward: BigNumber;
|
|
673
|
+
}
|
|
674
|
+
interface GetIndexerCashIncentivesResponse {
|
|
675
|
+
events: IndexerCashIncentivesEvent[];
|
|
676
|
+
walletSummary: IndexerCashIncentivesWalletSummary;
|
|
677
|
+
}
|
|
640
678
|
/**
|
|
641
679
|
* V2 Tickers
|
|
642
680
|
*/
|
|
@@ -768,5 +806,5 @@ interface IndexerV2Symbol {
|
|
|
768
806
|
*/
|
|
769
807
|
type GetIndexerV2SymbolsResponse = Record<string, IndexerV2Symbol>;
|
|
770
808
|
//#endregion
|
|
771
|
-
export {
|
|
772
|
-
//# sourceMappingURL=clientTypes-
|
|
809
|
+
export { GetIndexerOrdersResponse as $, IndexerSocialAccountInfo as $t, GetIndexerLeaderboardRegistrationsResponse as A, IndexerEventWithTx as At, GetIndexerMultiProductFundingRatesParams as B, IndexerMarketSnapshot as Bt, GetIndexerInterestFundingPaymentsResponse as C, IndexerCashIncentivesEventPlatform as Ct, GetIndexerLeaderboardParticipantParams as D, IndexerEventBalanceStateSnapshot as Dt, GetIndexerLeaderboardParams as E, IndexerEvent as Et, GetIndexerMakerStatisticsResponse as F, IndexerLeaderboardParticipant as Ft, GetIndexerMultiProductSnapshotsResponse as G, IndexerOrder as Gt, GetIndexerMultiProductPerpPricesParams as H, IndexerMatchEventBalances as Ht, GetIndexerMarketSnapshotsParams as I, IndexerLeaderboardRegistration as It, GetIndexerNlpSnapshotsParams as J, IndexerPointsEpoch as Jt, GetIndexerMultiSubaccountSnapshotsParams as K, IndexerPerpBalance as Kt, GetIndexerMarketSnapshotsResponse as L, IndexerLeaderboardTrackPosition as Lt, GetIndexerLinkedSignerParams as M, IndexerFundingRateHistoryEntry as Mt, GetIndexerLinkedSignerResponse as N, IndexerLeaderboardContest as Nt, GetIndexerLeaderboardParticipantResponse as O, IndexerEventPerpStateSnapshot as Ot, GetIndexerMakerStatisticsParams as P, IndexerLeaderboardContestTrack as Pt, GetIndexerOrdersParams as Q, IndexerSnapshotsIntervalParams as Qt, GetIndexerMatchEventsParams as R, IndexerMaker as Rt, GetIndexerInterestFundingPaymentsParams as S, IndexerCashIncentivesEventMetadata as St, GetIndexerLeaderboardContestsResponse as T, IndexerCashIncentivesWalletSummary as Tt, GetIndexerMultiProductPerpPricesResponse as U, IndexerNlpSnapshot as Ut, GetIndexerMultiProductFundingRatesResponse as V, IndexerMatchEvent as Vt, GetIndexerMultiProductSnapshotsParams as W, IndexerOraclePrice as Wt, GetIndexerOraclePricesParams as X, IndexerProductSnapshot as Xt, GetIndexerNlpSnapshotsResponse as Y, IndexerProductPayment as Yt, GetIndexerOraclePricesResponse as Z, IndexerSnapshotBalance as Zt, GetIndexerFastWithdrawalSignatureResponse as _, TickerMarketType as _n, GetIndexerXPointsParams as _t, GetIndexerCandlesticksParams as a, IndexerV2TradingStatus as an, GetIndexerPrivateAlphaChoiceResponse as at, GetIndexerFundingRateParams as b, IndexerBalanceTrackedVars as bt, GetIndexerCashIncentivesResponse as c, IndexerXPointsQuest as cn, GetIndexerQuotePriceResponse as ct, GetIndexerEdgeMarketSnapshotResponse as d, ListIndexerSubaccountsParams as dn, GetIndexerSubaccountDDAParams as dt, IndexerSpotBalance as en, GetIndexerPerpPricesParams as et, GetIndexerEdgeMarketSnapshotsParams as f, ListIndexerSubaccountsResponse as fn, GetIndexerSubaccountDDAResponse as ft, GetIndexerFastWithdrawalSignatureParams as g, RevokeSocialAccountResponse as gn, GetIndexerV2TickersResponse as gt, GetIndexerEventsResponse as h, RevokeSocialAccountParams as hn, GetIndexerV2TickersParams as ht, GetIndexerBacklogResponse as i, IndexerV2TickerResponse as in, GetIndexerPrivateAlphaChoiceParams as it, GetIndexerLeaderboardResponse as j, IndexerFundingRate as jt, GetIndexerLeaderboardRegistrationsParams as k, IndexerEventSpotStateSnapshot as kt, GetIndexerEdgeCandlesticksParams as l, ListIndexerSocialAccountsParams as ln, GetIndexerReferralCodeParams as lt, GetIndexerEventsParams as m, RegisterLeaderboardResponse as mn, GetIndexerV2SymbolsResponse as mt, ConnectSocialAccountParams as n, IndexerV2MarketHours as nn, GetIndexerPointsParams as nt, GetIndexerCandlesticksResponse as o, IndexerXPointsAllTime as on, GetIndexerProductSnapshotsParams as ot, GetIndexerEventsLimitType as p, RegisterLeaderboardParams as pn, GetIndexerV2SymbolsParams as pt, GetIndexerMultiSubaccountSnapshotsResponse as q, IndexerPerpPrices as qt, ConnectSocialAccountResponse as r, IndexerV2Symbol as rn, GetIndexerPointsResponse as rt, GetIndexerCashIncentivesParams as s, IndexerXPointsEpoch as sn, GetIndexerProductSnapshotsResponse as st, Candlestick as t, IndexerSubaccountSnapshot as tn, GetIndexerPerpPricesResponse as tt, GetIndexerEdgeCandlesticksResponse as u, ListIndexerSocialAccountsResponse as un, GetIndexerReferralCodeResponse as ut, GetIndexerFundingRateHistoryParams as v, GetIndexerXPointsResponse as vt, GetIndexerLeaderboardContestsParams as w, IndexerCashIncentivesEventWallet as wt, GetIndexerFundingRateResponse as x, IndexerCashIncentivesEvent as xt, GetIndexerFundingRateHistoryResponse as y, IndexerAllTimePoints as yt, GetIndexerMatchEventsResponse as z, IndexerMakerSnapshot as zt };
|
|
810
|
+
//# sourceMappingURL=clientTypes-BzpYIUbg.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"clientTypes-l0R_wiVM.d.ts","names":[],"sources":["../src/types/src/types/clientTypes.ts"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"clientTypes-BzpYIUbg.d.ts","names":[],"sources":["../src/types/src/types/clientTypes.ts"],"mappings":"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"}
|
|
@@ -2,7 +2,7 @@ import { t as CandlestickPeriod } from "./CandlestickPeriod-D3_IoSev.cjs";
|
|
|
2
2
|
import { t as IndexerEventType } from "./IndexerEventType-9GB2zRoN.cjs";
|
|
3
3
|
import { t as IndexerLeaderboardRankType } from "./IndexerLeaderboardType-Ck12QVWR.cjs";
|
|
4
4
|
import { c as NadoWithdrawCollateralV2Tx, o as NadoTx, s as NadoWithdrawCollateralTx } from "./NadoTx-C3_f0YvI.cjs";
|
|
5
|
-
import {
|
|
5
|
+
import { G as IndexerServerListSubaccountsParams, b as IndexerServerFastWithdrawalSignatureParams, jt as IndexerServerTriggerTypeFilter } from "./serverTypes-Dl79x4IJ.cjs";
|
|
6
6
|
import { EIP712OrderValues, Market, OrderAppendix, PerpBalance, PerpMarket, ProductEngineType, SpotBalance, SpotMarket, Subaccount } from "@nadohq/shared";
|
|
7
7
|
import BigNumber from "bignumber.js";
|
|
8
8
|
import { Address, Hex } from "viem";
|
|
@@ -637,6 +637,44 @@ interface GetIndexerXPointsResponse {
|
|
|
637
637
|
pointsPerEpoch: IndexerXPointsEpoch[];
|
|
638
638
|
allTimePoints: IndexerXPointsAllTime;
|
|
639
639
|
}
|
|
640
|
+
/**
|
|
641
|
+
* Cash Incentives (platform volume and unlocked rewards)
|
|
642
|
+
*/
|
|
643
|
+
interface GetIndexerCashIncentivesParams {
|
|
644
|
+
address: Address;
|
|
645
|
+
}
|
|
646
|
+
interface IndexerCashIncentivesEventMetadata {
|
|
647
|
+
eventId: number;
|
|
648
|
+
description: string;
|
|
649
|
+
/** Unix timestamp in seconds */
|
|
650
|
+
epochStart: BigNumber;
|
|
651
|
+
/** Unix timestamp in seconds */
|
|
652
|
+
epochEnd: BigNumber;
|
|
653
|
+
maxVolume: BigNumber;
|
|
654
|
+
maxReward: BigNumber;
|
|
655
|
+
minVolume: BigNumber;
|
|
656
|
+
minReward: BigNumber;
|
|
657
|
+
}
|
|
658
|
+
interface IndexerCashIncentivesEventPlatform {
|
|
659
|
+
platformVolume: BigNumber;
|
|
660
|
+
unlockedReward: BigNumber;
|
|
661
|
+
}
|
|
662
|
+
interface IndexerCashIncentivesEventWallet {
|
|
663
|
+
reward: BigNumber;
|
|
664
|
+
}
|
|
665
|
+
interface IndexerCashIncentivesEvent {
|
|
666
|
+
metadata: IndexerCashIncentivesEventMetadata;
|
|
667
|
+
platform: IndexerCashIncentivesEventPlatform;
|
|
668
|
+
wallet: IndexerCashIncentivesEventWallet;
|
|
669
|
+
}
|
|
670
|
+
interface IndexerCashIncentivesWalletSummary {
|
|
671
|
+
totalReward: BigNumber;
|
|
672
|
+
claimableReward: BigNumber;
|
|
673
|
+
}
|
|
674
|
+
interface GetIndexerCashIncentivesResponse {
|
|
675
|
+
events: IndexerCashIncentivesEvent[];
|
|
676
|
+
walletSummary: IndexerCashIncentivesWalletSummary;
|
|
677
|
+
}
|
|
640
678
|
/**
|
|
641
679
|
* V2 Tickers
|
|
642
680
|
*/
|
|
@@ -768,5 +806,5 @@ interface IndexerV2Symbol {
|
|
|
768
806
|
*/
|
|
769
807
|
type GetIndexerV2SymbolsResponse = Record<string, IndexerV2Symbol>;
|
|
770
808
|
//#endregion
|
|
771
|
-
export {
|
|
772
|
-
//# sourceMappingURL=clientTypes-
|
|
809
|
+
export { GetIndexerOrdersResponse as $, IndexerSocialAccountInfo as $t, GetIndexerLeaderboardRegistrationsResponse as A, IndexerEventWithTx as At, GetIndexerMultiProductFundingRatesParams as B, IndexerMarketSnapshot as Bt, GetIndexerInterestFundingPaymentsResponse as C, IndexerCashIncentivesEventPlatform as Ct, GetIndexerLeaderboardParticipantParams as D, IndexerEventBalanceStateSnapshot as Dt, GetIndexerLeaderboardParams as E, IndexerEvent as Et, GetIndexerMakerStatisticsResponse as F, IndexerLeaderboardParticipant as Ft, GetIndexerMultiProductSnapshotsResponse as G, IndexerOrder as Gt, GetIndexerMultiProductPerpPricesParams as H, IndexerMatchEventBalances as Ht, GetIndexerMarketSnapshotsParams as I, IndexerLeaderboardRegistration as It, GetIndexerNlpSnapshotsParams as J, IndexerPointsEpoch as Jt, GetIndexerMultiSubaccountSnapshotsParams as K, IndexerPerpBalance as Kt, GetIndexerMarketSnapshotsResponse as L, IndexerLeaderboardTrackPosition as Lt, GetIndexerLinkedSignerParams as M, IndexerFundingRateHistoryEntry as Mt, GetIndexerLinkedSignerResponse as N, IndexerLeaderboardContest as Nt, GetIndexerLeaderboardParticipantResponse as O, IndexerEventPerpStateSnapshot as Ot, GetIndexerMakerStatisticsParams as P, IndexerLeaderboardContestTrack as Pt, GetIndexerOrdersParams as Q, IndexerSnapshotsIntervalParams as Qt, GetIndexerMatchEventsParams as R, IndexerMaker as Rt, GetIndexerInterestFundingPaymentsParams as S, IndexerCashIncentivesEventMetadata as St, GetIndexerLeaderboardContestsResponse as T, IndexerCashIncentivesWalletSummary as Tt, GetIndexerMultiProductPerpPricesResponse as U, IndexerNlpSnapshot as Ut, GetIndexerMultiProductFundingRatesResponse as V, IndexerMatchEvent as Vt, GetIndexerMultiProductSnapshotsParams as W, IndexerOraclePrice as Wt, GetIndexerOraclePricesParams as X, IndexerProductSnapshot as Xt, GetIndexerNlpSnapshotsResponse as Y, IndexerProductPayment as Yt, GetIndexerOraclePricesResponse as Z, IndexerSnapshotBalance as Zt, GetIndexerFastWithdrawalSignatureResponse as _, TickerMarketType as _n, GetIndexerXPointsParams as _t, GetIndexerCandlesticksParams as a, IndexerV2TradingStatus as an, GetIndexerPrivateAlphaChoiceResponse as at, GetIndexerFundingRateParams as b, IndexerBalanceTrackedVars as bt, GetIndexerCashIncentivesResponse as c, IndexerXPointsQuest as cn, GetIndexerQuotePriceResponse as ct, GetIndexerEdgeMarketSnapshotResponse as d, ListIndexerSubaccountsParams as dn, GetIndexerSubaccountDDAParams as dt, IndexerSpotBalance as en, GetIndexerPerpPricesParams as et, GetIndexerEdgeMarketSnapshotsParams as f, ListIndexerSubaccountsResponse as fn, GetIndexerSubaccountDDAResponse as ft, GetIndexerFastWithdrawalSignatureParams as g, RevokeSocialAccountResponse as gn, GetIndexerV2TickersResponse as gt, GetIndexerEventsResponse as h, RevokeSocialAccountParams as hn, GetIndexerV2TickersParams as ht, GetIndexerBacklogResponse as i, IndexerV2TickerResponse as in, GetIndexerPrivateAlphaChoiceParams as it, GetIndexerLeaderboardResponse as j, IndexerFundingRate as jt, GetIndexerLeaderboardRegistrationsParams as k, IndexerEventSpotStateSnapshot as kt, GetIndexerEdgeCandlesticksParams as l, ListIndexerSocialAccountsParams as ln, GetIndexerReferralCodeParams as lt, GetIndexerEventsParams as m, RegisterLeaderboardResponse as mn, GetIndexerV2SymbolsResponse as mt, ConnectSocialAccountParams as n, IndexerV2MarketHours as nn, GetIndexerPointsParams as nt, GetIndexerCandlesticksResponse as o, IndexerXPointsAllTime as on, GetIndexerProductSnapshotsParams as ot, GetIndexerEventsLimitType as p, RegisterLeaderboardParams as pn, GetIndexerV2SymbolsParams as pt, GetIndexerMultiSubaccountSnapshotsResponse as q, IndexerPerpPrices as qt, ConnectSocialAccountResponse as r, IndexerV2Symbol as rn, GetIndexerPointsResponse as rt, GetIndexerCashIncentivesParams as s, IndexerXPointsEpoch as sn, GetIndexerProductSnapshotsResponse as st, Candlestick as t, IndexerSubaccountSnapshot as tn, GetIndexerPerpPricesResponse as tt, GetIndexerEdgeCandlesticksResponse as u, ListIndexerSocialAccountsResponse as un, GetIndexerReferralCodeResponse as ut, GetIndexerFundingRateHistoryParams as v, GetIndexerXPointsResponse as vt, GetIndexerLeaderboardContestsParams as w, IndexerCashIncentivesEventWallet as wt, GetIndexerFundingRateResponse as x, IndexerCashIncentivesEvent as xt, GetIndexerFundingRateHistoryResponse as y, IndexerAllTimePoints as yt, GetIndexerMatchEventsResponse as z, IndexerMakerSnapshot as zt };
|
|
810
|
+
//# sourceMappingURL=clientTypes-CgQ-pdym.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"clientTypes-C0SIczmn.d.cts","names":[],"sources":["../src/types/src/types/clientTypes.ts"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"clientTypes-CgQ-pdym.d.cts","names":[],"sources":["../src/types/src/types/clientTypes.ts"],"mappings":"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"}
|
package/dist/dataMappers.cjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
2
|
-
require("./IndexerBaseClient-
|
|
2
|
+
require("./IndexerBaseClient-D_xMNjhf.cjs");
|
|
3
3
|
let _nadohq_shared = require("@nadohq/shared");
|
|
4
4
|
let _nadohq_engine_client = require("@nadohq/engine-client");
|
|
5
5
|
//#region src/dataMappers.ts
|
package/dist/dataMappers.d.cts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { C as IndexerServerTx, _ as IndexerServerOrder, d as IndexerServerMarketSnapshot, h as IndexerServerNlpSnapshot, i as IndexerServerLeaderboardContest, l as IndexerServerMaker, m as IndexerServerMatchEventBalances, n as IndexerServerCandlestick, o as IndexerServerLeaderboardPosition, r as IndexerServerEvent, s as IndexerServerLeaderboardRegistration, t as IndexerServerBalance, v as IndexerServerProduct, x as IndexerServerSnapshotsInterval, y as IndexerServerProductPayment } from "./serverModelTypes-sQOL10Bi.cjs";
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
2
|
+
import { C as IndexerServerFundingRateHistoryEntry, Ft as IndexerServerV2TickerResponse, Mt as IndexerServerV2MarketHours, Nt as IndexerServerV2Symbol, S as IndexerServerFundingRate, lt as IndexerServerPerpPrices } from "./serverTypes-Dl79x4IJ.cjs";
|
|
3
|
+
import { At as IndexerEventWithTx, Bt as IndexerMarketSnapshot, Et as IndexerEvent, Ft as IndexerLeaderboardParticipant, Gt as IndexerOrder, Ht as IndexerMatchEventBalances, It as IndexerLeaderboardRegistration, Kt as IndexerPerpBalance, Mt as IndexerFundingRateHistoryEntry, Nt as IndexerLeaderboardContest, Qt as IndexerSnapshotsIntervalParams, Rt as IndexerMaker, Ut as IndexerNlpSnapshot, Yt as IndexerProductPayment, en as IndexerSpotBalance, in as IndexerV2TickerResponse, jt as IndexerFundingRate, nn as IndexerV2MarketHours, qt as IndexerPerpPrices, rn as IndexerV2Symbol, t as Candlestick } from "./clientTypes-CgQ-pdym.cjs";
|
|
4
4
|
import { Market } from "@nadohq/shared";
|
|
5
5
|
|
|
6
6
|
//#region src/dataMappers.d.ts
|
package/dist/dataMappers.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { C as IndexerServerTx, _ as IndexerServerOrder, d as IndexerServerMarketSnapshot, h as IndexerServerNlpSnapshot, i as IndexerServerLeaderboardContest, l as IndexerServerMaker, m as IndexerServerMatchEventBalances, n as IndexerServerCandlestick, o as IndexerServerLeaderboardPosition, r as IndexerServerEvent, s as IndexerServerLeaderboardRegistration, t as IndexerServerBalance, v as IndexerServerProduct, x as IndexerServerSnapshotsInterval, y as IndexerServerProductPayment } from "./serverModelTypes-BwLIAkc1.js";
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
2
|
+
import { C as IndexerServerFundingRateHistoryEntry, Ft as IndexerServerV2TickerResponse, Mt as IndexerServerV2MarketHours, Nt as IndexerServerV2Symbol, S as IndexerServerFundingRate, lt as IndexerServerPerpPrices } from "./serverTypes-Co5rgD5o.js";
|
|
3
|
+
import { At as IndexerEventWithTx, Bt as IndexerMarketSnapshot, Et as IndexerEvent, Ft as IndexerLeaderboardParticipant, Gt as IndexerOrder, Ht as IndexerMatchEventBalances, It as IndexerLeaderboardRegistration, Kt as IndexerPerpBalance, Mt as IndexerFundingRateHistoryEntry, Nt as IndexerLeaderboardContest, Qt as IndexerSnapshotsIntervalParams, Rt as IndexerMaker, Ut as IndexerNlpSnapshot, Yt as IndexerProductPayment, en as IndexerSpotBalance, in as IndexerV2TickerResponse, jt as IndexerFundingRate, nn as IndexerV2MarketHours, qt as IndexerPerpPrices, rn as IndexerV2Symbol, t as Candlestick } from "./clientTypes-BzpYIUbg.js";
|
|
4
4
|
import { Market } from "@nadohq/shared";
|
|
5
5
|
|
|
6
6
|
//#region src/dataMappers.d.ts
|
package/dist/index.cjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
2
|
-
const require_IndexerBaseClient = require("./IndexerBaseClient-
|
|
2
|
+
const require_IndexerBaseClient = require("./IndexerBaseClient-D_xMNjhf.cjs");
|
|
3
3
|
const require_IndexerClient = require("./IndexerClient.cjs");
|
|
4
4
|
const require_endpoints = require("./endpoints.cjs");
|
|
5
5
|
const require_types_CandlestickPeriod = require("./types/CandlestickPeriod.cjs");
|
package/dist/index.d.cts
CHANGED
|
@@ -3,12 +3,12 @@ import { t as IndexerEventType } from "./IndexerEventType-9GB2zRoN.cjs";
|
|
|
3
3
|
import { t as IndexerLeaderboardRankType } from "./IndexerLeaderboardType-Ck12QVWR.cjs";
|
|
4
4
|
import { a as NadoTransferQuoteTx, c as NadoWithdrawCollateralV2Tx, i as NadoMatchOrdersTx, n as NadoLiquidateSubaccountTx, o as NadoTx, r as NadoMatchOrdersRfqTx, s as NadoWithdrawCollateralTx, t as NadoDepositCollateralTx } from "./NadoTx-C3_f0YvI.cjs";
|
|
5
5
|
import { C as IndexerServerTx, S as IndexerServerSocialAccount, _ as IndexerServerOrder, a as IndexerServerLeaderboardContestTrack, b as IndexerServerProductSnapshot, c as IndexerServerLeaderboardTrackPosition, d as IndexerServerMarketSnapshot, f as IndexerServerMarketSnapshotInterval, g as IndexerServerOraclePrice, h as IndexerServerNlpSnapshot, i as IndexerServerLeaderboardContest, l as IndexerServerMaker, m as IndexerServerMatchEventBalances, n as IndexerServerCandlestick, o as IndexerServerLeaderboardPosition, p as IndexerServerMatchEvent, r as IndexerServerEvent, s as IndexerServerLeaderboardRegistration, t as IndexerServerBalance, u as IndexerServerMakerData, v as IndexerServerProduct, x as IndexerServerSnapshotsInterval, y as IndexerServerProductPayment } from "./serverModelTypes-sQOL10Bi.cjs";
|
|
6
|
-
import { $ as
|
|
7
|
-
import { $ as
|
|
6
|
+
import { $ as IndexerServerMultiProductsParams, A as IndexerServerInterestFundingParams, At as IndexerServerSocialConnectResponse, B as IndexerServerLeaderboardRegistrationsResponse, Bt as IndexerServerXPointsQuest, C as IndexerServerFundingRateHistoryEntry, Ct as IndexerServerQueryResponseByType, D as IndexerServerFundingRateResponse, Dt as IndexerServerRevokeSocialAccountParams, E as IndexerServerFundingRateParams, Et as IndexerServerReferralCodeResponse, F as IndexerServerLeaderboardRankParams, Ft as IndexerServerV2TickerResponse, G as IndexerServerListSubaccountsParams, H as IndexerServerLinkedSignerParams, I as IndexerServerLeaderboardRankResponse, It as IndexerServerV2TickersResponse, J as IndexerServerMakerStatisticsResponse, K as IndexerServerListSubaccountsResponse, L as IndexerServerLeaderboardRegisterParams, Lt as IndexerServerXPointsAllTime, M as IndexerServerLeaderboardContestsParams, Mt as IndexerServerV2MarketHours, N as IndexerServerLeaderboardContestsResponse, Nt as IndexerServerV2Symbol, O as IndexerServerFundingRatesParams, Ot as IndexerServerSocialAccountsResponse, P as IndexerServerLeaderboardParams, Pt as IndexerServerV2SymbolsResponse, Q as IndexerServerMatchEventsResponse, R as IndexerServerLeaderboardRegisterResponse, Rt as IndexerServerXPointsEpoch, S as IndexerServerFundingRate, St as IndexerServerQueryRequestType, T as IndexerServerFundingRateHistoryResponse, Tt as IndexerServerReferralCodeParams, U as IndexerServerLinkedSignerResponse, V as IndexerServerLeaderboardResponse, Vt as IndexerServerXPointsResponse, W as IndexerServerListSocialAccountsParams, X as IndexerServerMarketSnapshotsResponse, Y as IndexerServerMarketSnapshotsParams, Z as IndexerServerMatchEventsParams, _ as IndexerServerDDAResponse, _t as IndexerServerPrivateAlphaChoiceParams, a as IndexerServerAllTimePoints, at as IndexerServerOraclePricesParams, b as IndexerServerFastWithdrawalSignatureParams, bt as IndexerServerProductsResponse, c as IndexerServerCandlesticksResponse, ct as IndexerServerOrdersResponse, d as IndexerServerCashIncentivesEventPlatform, dt as IndexerServerPerpPricesResponse, et as IndexerServerMultiProductsResponse, f as IndexerServerCashIncentivesEventWallet, ft as IndexerServerPointsEpoch, g as IndexerServerDDAQueryParams, gt as IndexerServerPriceResponse, h as IndexerServerCashIncentivesWalletSummary, ht as IndexerServerPriceParams, i as IndexerEdgeServerMarketSnapshotsResponse, it as IndexerServerNlpSnapshotsResponse, j as IndexerServerInterestFundingResponse, jt as IndexerServerTriggerTypeFilter, k as IndexerServerFundingRatesResponse, kt as IndexerServerSocialConnectParams, l as IndexerServerCashIncentivesEvent, lt as IndexerServerPerpPrices, m as IndexerServerCashIncentivesResponse, mt as IndexerServerPointsResponse, n as IndexerEdgeServerCandlesticksResponse, nt as IndexerServerMultiSubaccountSnapshotsResponse, o as IndexerServerBacklogResponse, ot as IndexerServerOraclePricesResponse, p as IndexerServerCashIncentivesParams, pt as IndexerServerPointsParams, q as IndexerServerMakerStatisticsParams, r as IndexerEdgeServerMarketSnapshotsParams, rt as IndexerServerNlpSnapshotsParams, s as IndexerServerCandlesticksParams, st as IndexerServerOrdersParams, t as IndexerEdgeServerCandlesticksParams, tt as IndexerServerMultiSubaccountSnapshotsParams, u as IndexerServerCashIncentivesEventMetadata, ut as IndexerServerPerpPricesParams, v as IndexerServerEventsParams, vt as IndexerServerPrivateAlphaChoiceResponse, w as IndexerServerFundingRateHistoryParams, wt as IndexerServerQuotePriceResponse, x as IndexerServerFastWithdrawalSignatureResponse, xt as IndexerServerQueryRequestByType, y as IndexerServerEventsResponse, yt as IndexerServerProductsParams, z as IndexerServerLeaderboardRegistrationsParams, zt as IndexerServerXPointsParams } from "./serverTypes-Dl79x4IJ.cjs";
|
|
7
|
+
import { $ as GetIndexerOrdersResponse, $t as IndexerSocialAccountInfo, A as GetIndexerLeaderboardRegistrationsResponse, At as IndexerEventWithTx, B as GetIndexerMultiProductFundingRatesParams, Bt as IndexerMarketSnapshot, C as GetIndexerInterestFundingPaymentsResponse, Ct as IndexerCashIncentivesEventPlatform, D as GetIndexerLeaderboardParticipantParams, Dt as IndexerEventBalanceStateSnapshot, E as GetIndexerLeaderboardParams, Et as IndexerEvent, F as GetIndexerMakerStatisticsResponse, Ft as IndexerLeaderboardParticipant, G as GetIndexerMultiProductSnapshotsResponse, Gt as IndexerOrder, H as GetIndexerMultiProductPerpPricesParams, Ht as IndexerMatchEventBalances, I as GetIndexerMarketSnapshotsParams, It as IndexerLeaderboardRegistration, J as GetIndexerNlpSnapshotsParams, Jt as IndexerPointsEpoch, K as GetIndexerMultiSubaccountSnapshotsParams, Kt as IndexerPerpBalance, L as GetIndexerMarketSnapshotsResponse, Lt as IndexerLeaderboardTrackPosition, M as GetIndexerLinkedSignerParams, Mt as IndexerFundingRateHistoryEntry, N as GetIndexerLinkedSignerResponse, Nt as IndexerLeaderboardContest, O as GetIndexerLeaderboardParticipantResponse, Ot as IndexerEventPerpStateSnapshot, P as GetIndexerMakerStatisticsParams, Pt as IndexerLeaderboardContestTrack, Q as GetIndexerOrdersParams, Qt as IndexerSnapshotsIntervalParams, R as GetIndexerMatchEventsParams, Rt as IndexerMaker, S as GetIndexerInterestFundingPaymentsParams, St as IndexerCashIncentivesEventMetadata, T as GetIndexerLeaderboardContestsResponse, Tt as IndexerCashIncentivesWalletSummary, U as GetIndexerMultiProductPerpPricesResponse, Ut as IndexerNlpSnapshot, V as GetIndexerMultiProductFundingRatesResponse, Vt as IndexerMatchEvent, W as GetIndexerMultiProductSnapshotsParams, Wt as IndexerOraclePrice, X as GetIndexerOraclePricesParams, Xt as IndexerProductSnapshot, Y as GetIndexerNlpSnapshotsResponse, Yt as IndexerProductPayment, Z as GetIndexerOraclePricesResponse, Zt as IndexerSnapshotBalance, _ as GetIndexerFastWithdrawalSignatureResponse, _n as TickerMarketType, _t as GetIndexerXPointsParams, a as GetIndexerCandlesticksParams, an as IndexerV2TradingStatus, at as GetIndexerPrivateAlphaChoiceResponse, b as GetIndexerFundingRateParams, bt as IndexerBalanceTrackedVars, c as GetIndexerCashIncentivesResponse, cn as IndexerXPointsQuest, ct as GetIndexerQuotePriceResponse, d as GetIndexerEdgeMarketSnapshotResponse, dn as ListIndexerSubaccountsParams, dt as GetIndexerSubaccountDDAParams, en as IndexerSpotBalance, et as GetIndexerPerpPricesParams, f as GetIndexerEdgeMarketSnapshotsParams, fn as ListIndexerSubaccountsResponse, ft as GetIndexerSubaccountDDAResponse, g as GetIndexerFastWithdrawalSignatureParams, gn as RevokeSocialAccountResponse, gt as GetIndexerV2TickersResponse, h as GetIndexerEventsResponse, hn as RevokeSocialAccountParams, ht as GetIndexerV2TickersParams, i as GetIndexerBacklogResponse, in as IndexerV2TickerResponse, it as GetIndexerPrivateAlphaChoiceParams, j as GetIndexerLeaderboardResponse, jt as IndexerFundingRate, k as GetIndexerLeaderboardRegistrationsParams, kt as IndexerEventSpotStateSnapshot, l as GetIndexerEdgeCandlesticksParams, ln as ListIndexerSocialAccountsParams, lt as GetIndexerReferralCodeParams, m as GetIndexerEventsParams, mn as RegisterLeaderboardResponse, mt as GetIndexerV2SymbolsResponse, n as ConnectSocialAccountParams, nn as IndexerV2MarketHours, nt as GetIndexerPointsParams, o as GetIndexerCandlesticksResponse, on as IndexerXPointsAllTime, ot as GetIndexerProductSnapshotsParams, p as GetIndexerEventsLimitType, pn as RegisterLeaderboardParams, pt as GetIndexerV2SymbolsParams, q as GetIndexerMultiSubaccountSnapshotsResponse, qt as IndexerPerpPrices, r as ConnectSocialAccountResponse, rn as IndexerV2Symbol, rt as GetIndexerPointsResponse, s as GetIndexerCashIncentivesParams, sn as IndexerXPointsEpoch, st as GetIndexerProductSnapshotsResponse, t as Candlestick, tn as IndexerSubaccountSnapshot, tt as GetIndexerPerpPricesResponse, u as GetIndexerEdgeCandlesticksResponse, un as ListIndexerSocialAccountsResponse, ut as GetIndexerReferralCodeResponse, v as GetIndexerFundingRateHistoryParams, vt as GetIndexerXPointsResponse, w as GetIndexerLeaderboardContestsParams, wt as IndexerCashIncentivesEventWallet, x as GetIndexerFundingRateResponse, xt as IndexerCashIncentivesEvent, y as GetIndexerFundingRateHistoryResponse, yt as IndexerAllTimePoints, z as GetIndexerMatchEventsResponse, zt as IndexerMakerSnapshot } from "./clientTypes-CgQ-pdym.cjs";
|
|
8
8
|
import { t as CollateralEventType } from "./collateralEventType-CNrryEno.cjs";
|
|
9
|
-
import { C as IndexerSettlementEvent, S as IndexerPaginationParams, T as WithPaginationMeta, _ as GetIndexerSubaccountSettlementEventsResponse, a as GetIndexerPaginatedOrdersParams, b as IndexerNlpEvent, c as GetIndexerSubaccountCollateralEventsResponse, d as GetIndexerSubaccountLiquidationEventsResponse, f as GetIndexerSubaccountMatchEventParams, g as GetIndexerSubaccountSettlementEventsParams, h as GetIndexerSubaccountNlpEventsResponse, i as GetIndexerPaginatedLeaderboardResponse, l as GetIndexerSubaccountInterestFundingPaymentsParams, m as GetIndexerSubaccountNlpEventsParams, n as GetIndexerPaginatedInterestFundingPaymentsResponse, o as GetIndexerPaginatedOrdersResponse, p as GetIndexerSubaccountMatchEventsResponse, r as GetIndexerPaginatedLeaderboardParams, s as GetIndexerSubaccountCollateralEventsParams, t as BaseIndexerPaginatedEvent, u as GetIndexerSubaccountLiquidationEventsParams, v as IndexerCollateralEvent, w as PaginatedIndexerEventsResponse, x as IndexerPaginationMeta, y as IndexerLiquidationEvent } from "./paginatedEventsTypes-
|
|
9
|
+
import { C as IndexerSettlementEvent, S as IndexerPaginationParams, T as WithPaginationMeta, _ as GetIndexerSubaccountSettlementEventsResponse, a as GetIndexerPaginatedOrdersParams, b as IndexerNlpEvent, c as GetIndexerSubaccountCollateralEventsResponse, d as GetIndexerSubaccountLiquidationEventsResponse, f as GetIndexerSubaccountMatchEventParams, g as GetIndexerSubaccountSettlementEventsParams, h as GetIndexerSubaccountNlpEventsResponse, i as GetIndexerPaginatedLeaderboardResponse, l as GetIndexerSubaccountInterestFundingPaymentsParams, m as GetIndexerSubaccountNlpEventsParams, n as GetIndexerPaginatedInterestFundingPaymentsResponse, o as GetIndexerPaginatedOrdersResponse, p as GetIndexerSubaccountMatchEventsResponse, r as GetIndexerPaginatedLeaderboardParams, s as GetIndexerSubaccountCollateralEventsParams, t as BaseIndexerPaginatedEvent, u as GetIndexerSubaccountLiquidationEventsParams, v as IndexerCollateralEvent, w as PaginatedIndexerEventsResponse, x as IndexerPaginationMeta, y as IndexerLiquidationEvent } from "./paginatedEventsTypes-rj9qNxIF.cjs";
|
|
10
10
|
import { IndexerBaseClient, IndexerClientOpts } from "./IndexerBaseClient.cjs";
|
|
11
11
|
import { IndexerClient } from "./IndexerClient.cjs";
|
|
12
12
|
import { INDEXER_CLIENT_ENDPOINTS } from "./endpoints.cjs";
|
|
13
|
-
import { n as calcIndexerPerpBalanceValue, r as calcIndexerSpotBalanceValue, t as calcIndexerPerpBalanceNotionalValue } from "./indexerBalanceValue-
|
|
14
|
-
export { BaseIndexerPaginatedEvent, Candlestick, CandlestickPeriod, CollateralEventType, ConnectSocialAccountParams, ConnectSocialAccountResponse, GetIndexerBacklogResponse, GetIndexerCandlesticksParams, GetIndexerCandlesticksResponse, GetIndexerEdgeCandlesticksParams, GetIndexerEdgeCandlesticksResponse, GetIndexerEdgeMarketSnapshotResponse, GetIndexerEdgeMarketSnapshotsParams, GetIndexerEventsLimitType, GetIndexerEventsParams, GetIndexerEventsResponse, GetIndexerFastWithdrawalSignatureParams, GetIndexerFastWithdrawalSignatureResponse, GetIndexerFundingRateHistoryParams, GetIndexerFundingRateHistoryResponse, GetIndexerFundingRateParams, GetIndexerFundingRateResponse, GetIndexerInterestFundingPaymentsParams, GetIndexerInterestFundingPaymentsResponse, GetIndexerLeaderboardContestsParams, GetIndexerLeaderboardContestsResponse, GetIndexerLeaderboardParams, GetIndexerLeaderboardParticipantParams, GetIndexerLeaderboardParticipantResponse, GetIndexerLeaderboardRegistrationsParams, GetIndexerLeaderboardRegistrationsResponse, GetIndexerLeaderboardResponse, GetIndexerLinkedSignerParams, GetIndexerLinkedSignerResponse, GetIndexerMakerStatisticsParams, GetIndexerMakerStatisticsResponse, GetIndexerMarketSnapshotsParams, GetIndexerMarketSnapshotsResponse, GetIndexerMatchEventsParams, GetIndexerMatchEventsResponse, GetIndexerMultiProductFundingRatesParams, GetIndexerMultiProductFundingRatesResponse, GetIndexerMultiProductPerpPricesParams, GetIndexerMultiProductPerpPricesResponse, GetIndexerMultiProductSnapshotsParams, GetIndexerMultiProductSnapshotsResponse, GetIndexerMultiSubaccountSnapshotsParams, GetIndexerMultiSubaccountSnapshotsResponse, GetIndexerNlpSnapshotsParams, GetIndexerNlpSnapshotsResponse, GetIndexerOraclePricesParams, GetIndexerOraclePricesResponse, GetIndexerOrdersParams, GetIndexerOrdersResponse, GetIndexerPaginatedInterestFundingPaymentsResponse, GetIndexerPaginatedLeaderboardParams, GetIndexerPaginatedLeaderboardResponse, GetIndexerPaginatedOrdersParams, GetIndexerPaginatedOrdersResponse, GetIndexerPerpPricesParams, GetIndexerPerpPricesResponse, GetIndexerPointsParams, GetIndexerPointsResponse, GetIndexerPrivateAlphaChoiceParams, GetIndexerPrivateAlphaChoiceResponse, GetIndexerProductSnapshotsParams, GetIndexerProductSnapshotsResponse, GetIndexerQuotePriceResponse, GetIndexerReferralCodeParams, GetIndexerReferralCodeResponse, GetIndexerSubaccountCollateralEventsParams, GetIndexerSubaccountCollateralEventsResponse, GetIndexerSubaccountDDAParams, GetIndexerSubaccountDDAResponse, GetIndexerSubaccountInterestFundingPaymentsParams, GetIndexerSubaccountLiquidationEventsParams, GetIndexerSubaccountLiquidationEventsResponse, GetIndexerSubaccountMatchEventParams, GetIndexerSubaccountMatchEventsResponse, GetIndexerSubaccountNlpEventsParams, GetIndexerSubaccountNlpEventsResponse, GetIndexerSubaccountSettlementEventsParams, GetIndexerSubaccountSettlementEventsResponse, GetIndexerV2SymbolsParams, GetIndexerV2SymbolsResponse, GetIndexerV2TickersParams, GetIndexerV2TickersResponse, GetIndexerXPointsParams, GetIndexerXPointsResponse, INDEXER_CLIENT_ENDPOINTS, IndexerAllTimePoints, IndexerBalanceTrackedVars, IndexerBaseClient, IndexerClient, IndexerClientOpts, IndexerCollateralEvent, IndexerEdgeServerCandlesticksParams, IndexerEdgeServerCandlesticksResponse, IndexerEdgeServerMarketSnapshotsParams, IndexerEdgeServerMarketSnapshotsResponse, IndexerEvent, IndexerEventBalanceStateSnapshot, IndexerEventPerpStateSnapshot, IndexerEventSpotStateSnapshot, IndexerEventType, IndexerEventWithTx, IndexerFundingRate, IndexerFundingRateHistoryEntry, IndexerLeaderboardContest, IndexerLeaderboardContestTrack, IndexerLeaderboardParticipant, IndexerLeaderboardRankType, IndexerLeaderboardRegistration, IndexerLeaderboardTrackPosition, IndexerLiquidationEvent, IndexerMaker, IndexerMakerSnapshot, IndexerMarketSnapshot, IndexerMatchEvent, IndexerMatchEventBalances, IndexerNlpEvent, IndexerNlpSnapshot, IndexerOraclePrice, IndexerOrder, IndexerPaginationMeta, IndexerPaginationParams, IndexerPerpBalance, IndexerPerpPrices, IndexerPointsEpoch, IndexerProductPayment, IndexerProductSnapshot, IndexerServerAllTimePoints, IndexerServerBacklogResponse, IndexerServerBalance, IndexerServerCandlestick, IndexerServerCandlesticksParams, IndexerServerCandlesticksResponse, IndexerServerDDAQueryParams, IndexerServerDDAResponse, IndexerServerEvent, IndexerServerEventsParams, IndexerServerEventsResponse, IndexerServerFastWithdrawalSignatureParams, IndexerServerFastWithdrawalSignatureResponse, IndexerServerFundingRate, IndexerServerFundingRateHistoryEntry, IndexerServerFundingRateHistoryParams, IndexerServerFundingRateHistoryResponse, IndexerServerFundingRateParams, IndexerServerFundingRateResponse, IndexerServerFundingRatesParams, IndexerServerFundingRatesResponse, IndexerServerInterestFundingParams, IndexerServerInterestFundingResponse, IndexerServerLeaderboardContest, IndexerServerLeaderboardContestTrack, IndexerServerLeaderboardContestsParams, IndexerServerLeaderboardContestsResponse, IndexerServerLeaderboardParams, IndexerServerLeaderboardPosition, IndexerServerLeaderboardRankParams, IndexerServerLeaderboardRankResponse, IndexerServerLeaderboardRegisterParams, IndexerServerLeaderboardRegisterResponse, IndexerServerLeaderboardRegistration, IndexerServerLeaderboardRegistrationsParams, IndexerServerLeaderboardRegistrationsResponse, IndexerServerLeaderboardResponse, IndexerServerLeaderboardTrackPosition, IndexerServerLinkedSignerParams, IndexerServerLinkedSignerResponse, IndexerServerListSocialAccountsParams, IndexerServerListSubaccountsParams, IndexerServerListSubaccountsResponse, IndexerServerMaker, IndexerServerMakerData, IndexerServerMakerStatisticsParams, IndexerServerMakerStatisticsResponse, IndexerServerMarketSnapshot, IndexerServerMarketSnapshotInterval, IndexerServerMarketSnapshotsParams, IndexerServerMarketSnapshotsResponse, IndexerServerMatchEvent, IndexerServerMatchEventBalances, IndexerServerMatchEventsParams, IndexerServerMatchEventsResponse, IndexerServerMultiProductsParams, IndexerServerMultiProductsResponse, IndexerServerMultiSubaccountSnapshotsParams, IndexerServerMultiSubaccountSnapshotsResponse, IndexerServerNlpSnapshot, IndexerServerNlpSnapshotsParams, IndexerServerNlpSnapshotsResponse, IndexerServerOraclePrice, IndexerServerOraclePricesParams, IndexerServerOraclePricesResponse, IndexerServerOrder, IndexerServerOrdersParams, IndexerServerOrdersResponse, IndexerServerPerpPrices, IndexerServerPerpPricesParams, IndexerServerPerpPricesResponse, IndexerServerPointsEpoch, IndexerServerPointsParams, IndexerServerPointsResponse, IndexerServerPriceParams, IndexerServerPriceResponse, IndexerServerPrivateAlphaChoiceParams, IndexerServerPrivateAlphaChoiceResponse, IndexerServerProduct, IndexerServerProductPayment, IndexerServerProductSnapshot, IndexerServerProductsParams, IndexerServerProductsResponse, IndexerServerQueryRequestByType, IndexerServerQueryRequestType, IndexerServerQueryResponseByType, IndexerServerQuotePriceResponse, IndexerServerReferralCodeParams, IndexerServerReferralCodeResponse, IndexerServerRevokeSocialAccountParams, IndexerServerSnapshotsInterval, IndexerServerSocialAccount, IndexerServerSocialAccountsResponse, IndexerServerSocialConnectParams, IndexerServerSocialConnectResponse, IndexerServerTriggerTypeFilter, IndexerServerTx, IndexerServerV2MarketHours, IndexerServerV2Symbol, IndexerServerV2SymbolsResponse, IndexerServerV2TickerResponse, IndexerServerV2TickersResponse, IndexerServerXPointsAllTime, IndexerServerXPointsEpoch, IndexerServerXPointsParams, IndexerServerXPointsQuest, IndexerServerXPointsResponse, IndexerSettlementEvent, IndexerSnapshotBalance, IndexerSnapshotsIntervalParams, IndexerSocialAccountInfo, IndexerSpotBalance, IndexerSubaccountSnapshot, IndexerV2MarketHours, IndexerV2Symbol, IndexerV2TickerResponse, IndexerV2TradingStatus, IndexerXPointsAllTime, IndexerXPointsEpoch, IndexerXPointsQuest, ListIndexerSocialAccountsParams, ListIndexerSocialAccountsResponse, ListIndexerSubaccountsParams, ListIndexerSubaccountsResponse, NadoDepositCollateralTx, NadoLiquidateSubaccountTx, NadoMatchOrdersRfqTx, NadoMatchOrdersTx, NadoTransferQuoteTx, NadoTx, NadoWithdrawCollateralTx, NadoWithdrawCollateralV2Tx, PaginatedIndexerEventsResponse, RegisterLeaderboardParams, RegisterLeaderboardResponse, RevokeSocialAccountParams, RevokeSocialAccountResponse, TickerMarketType, WithPaginationMeta, calcIndexerPerpBalanceNotionalValue, calcIndexerPerpBalanceValue, calcIndexerSpotBalanceValue };
|
|
13
|
+
import { n as calcIndexerPerpBalanceValue, r as calcIndexerSpotBalanceValue, t as calcIndexerPerpBalanceNotionalValue } from "./indexerBalanceValue-BMncrrka.cjs";
|
|
14
|
+
export { BaseIndexerPaginatedEvent, Candlestick, CandlestickPeriod, CollateralEventType, ConnectSocialAccountParams, ConnectSocialAccountResponse, GetIndexerBacklogResponse, GetIndexerCandlesticksParams, GetIndexerCandlesticksResponse, GetIndexerCashIncentivesParams, GetIndexerCashIncentivesResponse, GetIndexerEdgeCandlesticksParams, GetIndexerEdgeCandlesticksResponse, GetIndexerEdgeMarketSnapshotResponse, GetIndexerEdgeMarketSnapshotsParams, GetIndexerEventsLimitType, GetIndexerEventsParams, GetIndexerEventsResponse, GetIndexerFastWithdrawalSignatureParams, GetIndexerFastWithdrawalSignatureResponse, GetIndexerFundingRateHistoryParams, GetIndexerFundingRateHistoryResponse, GetIndexerFundingRateParams, GetIndexerFundingRateResponse, GetIndexerInterestFundingPaymentsParams, GetIndexerInterestFundingPaymentsResponse, GetIndexerLeaderboardContestsParams, GetIndexerLeaderboardContestsResponse, GetIndexerLeaderboardParams, GetIndexerLeaderboardParticipantParams, GetIndexerLeaderboardParticipantResponse, GetIndexerLeaderboardRegistrationsParams, GetIndexerLeaderboardRegistrationsResponse, GetIndexerLeaderboardResponse, GetIndexerLinkedSignerParams, GetIndexerLinkedSignerResponse, GetIndexerMakerStatisticsParams, GetIndexerMakerStatisticsResponse, GetIndexerMarketSnapshotsParams, GetIndexerMarketSnapshotsResponse, GetIndexerMatchEventsParams, GetIndexerMatchEventsResponse, GetIndexerMultiProductFundingRatesParams, GetIndexerMultiProductFundingRatesResponse, GetIndexerMultiProductPerpPricesParams, GetIndexerMultiProductPerpPricesResponse, GetIndexerMultiProductSnapshotsParams, GetIndexerMultiProductSnapshotsResponse, GetIndexerMultiSubaccountSnapshotsParams, GetIndexerMultiSubaccountSnapshotsResponse, GetIndexerNlpSnapshotsParams, GetIndexerNlpSnapshotsResponse, GetIndexerOraclePricesParams, GetIndexerOraclePricesResponse, GetIndexerOrdersParams, GetIndexerOrdersResponse, GetIndexerPaginatedInterestFundingPaymentsResponse, GetIndexerPaginatedLeaderboardParams, GetIndexerPaginatedLeaderboardResponse, GetIndexerPaginatedOrdersParams, GetIndexerPaginatedOrdersResponse, GetIndexerPerpPricesParams, GetIndexerPerpPricesResponse, GetIndexerPointsParams, GetIndexerPointsResponse, GetIndexerPrivateAlphaChoiceParams, GetIndexerPrivateAlphaChoiceResponse, GetIndexerProductSnapshotsParams, GetIndexerProductSnapshotsResponse, GetIndexerQuotePriceResponse, GetIndexerReferralCodeParams, GetIndexerReferralCodeResponse, GetIndexerSubaccountCollateralEventsParams, GetIndexerSubaccountCollateralEventsResponse, GetIndexerSubaccountDDAParams, GetIndexerSubaccountDDAResponse, GetIndexerSubaccountInterestFundingPaymentsParams, GetIndexerSubaccountLiquidationEventsParams, GetIndexerSubaccountLiquidationEventsResponse, GetIndexerSubaccountMatchEventParams, GetIndexerSubaccountMatchEventsResponse, GetIndexerSubaccountNlpEventsParams, GetIndexerSubaccountNlpEventsResponse, GetIndexerSubaccountSettlementEventsParams, GetIndexerSubaccountSettlementEventsResponse, GetIndexerV2SymbolsParams, GetIndexerV2SymbolsResponse, GetIndexerV2TickersParams, GetIndexerV2TickersResponse, GetIndexerXPointsParams, GetIndexerXPointsResponse, INDEXER_CLIENT_ENDPOINTS, IndexerAllTimePoints, IndexerBalanceTrackedVars, IndexerBaseClient, IndexerCashIncentivesEvent, IndexerCashIncentivesEventMetadata, IndexerCashIncentivesEventPlatform, IndexerCashIncentivesEventWallet, IndexerCashIncentivesWalletSummary, IndexerClient, IndexerClientOpts, IndexerCollateralEvent, IndexerEdgeServerCandlesticksParams, IndexerEdgeServerCandlesticksResponse, IndexerEdgeServerMarketSnapshotsParams, IndexerEdgeServerMarketSnapshotsResponse, IndexerEvent, IndexerEventBalanceStateSnapshot, IndexerEventPerpStateSnapshot, IndexerEventSpotStateSnapshot, IndexerEventType, IndexerEventWithTx, IndexerFundingRate, IndexerFundingRateHistoryEntry, IndexerLeaderboardContest, IndexerLeaderboardContestTrack, IndexerLeaderboardParticipant, IndexerLeaderboardRankType, IndexerLeaderboardRegistration, IndexerLeaderboardTrackPosition, IndexerLiquidationEvent, IndexerMaker, IndexerMakerSnapshot, IndexerMarketSnapshot, IndexerMatchEvent, IndexerMatchEventBalances, IndexerNlpEvent, IndexerNlpSnapshot, IndexerOraclePrice, IndexerOrder, IndexerPaginationMeta, IndexerPaginationParams, IndexerPerpBalance, IndexerPerpPrices, IndexerPointsEpoch, IndexerProductPayment, IndexerProductSnapshot, IndexerServerAllTimePoints, IndexerServerBacklogResponse, IndexerServerBalance, IndexerServerCandlestick, IndexerServerCandlesticksParams, IndexerServerCandlesticksResponse, IndexerServerCashIncentivesEvent, IndexerServerCashIncentivesEventMetadata, IndexerServerCashIncentivesEventPlatform, IndexerServerCashIncentivesEventWallet, IndexerServerCashIncentivesParams, IndexerServerCashIncentivesResponse, IndexerServerCashIncentivesWalletSummary, IndexerServerDDAQueryParams, IndexerServerDDAResponse, IndexerServerEvent, IndexerServerEventsParams, IndexerServerEventsResponse, IndexerServerFastWithdrawalSignatureParams, IndexerServerFastWithdrawalSignatureResponse, IndexerServerFundingRate, IndexerServerFundingRateHistoryEntry, IndexerServerFundingRateHistoryParams, IndexerServerFundingRateHistoryResponse, IndexerServerFundingRateParams, IndexerServerFundingRateResponse, IndexerServerFundingRatesParams, IndexerServerFundingRatesResponse, IndexerServerInterestFundingParams, IndexerServerInterestFundingResponse, IndexerServerLeaderboardContest, IndexerServerLeaderboardContestTrack, IndexerServerLeaderboardContestsParams, IndexerServerLeaderboardContestsResponse, IndexerServerLeaderboardParams, IndexerServerLeaderboardPosition, IndexerServerLeaderboardRankParams, IndexerServerLeaderboardRankResponse, IndexerServerLeaderboardRegisterParams, IndexerServerLeaderboardRegisterResponse, IndexerServerLeaderboardRegistration, IndexerServerLeaderboardRegistrationsParams, IndexerServerLeaderboardRegistrationsResponse, IndexerServerLeaderboardResponse, IndexerServerLeaderboardTrackPosition, IndexerServerLinkedSignerParams, IndexerServerLinkedSignerResponse, IndexerServerListSocialAccountsParams, IndexerServerListSubaccountsParams, IndexerServerListSubaccountsResponse, IndexerServerMaker, IndexerServerMakerData, IndexerServerMakerStatisticsParams, IndexerServerMakerStatisticsResponse, IndexerServerMarketSnapshot, IndexerServerMarketSnapshotInterval, IndexerServerMarketSnapshotsParams, IndexerServerMarketSnapshotsResponse, IndexerServerMatchEvent, IndexerServerMatchEventBalances, IndexerServerMatchEventsParams, IndexerServerMatchEventsResponse, IndexerServerMultiProductsParams, IndexerServerMultiProductsResponse, IndexerServerMultiSubaccountSnapshotsParams, IndexerServerMultiSubaccountSnapshotsResponse, IndexerServerNlpSnapshot, IndexerServerNlpSnapshotsParams, IndexerServerNlpSnapshotsResponse, IndexerServerOraclePrice, IndexerServerOraclePricesParams, IndexerServerOraclePricesResponse, IndexerServerOrder, IndexerServerOrdersParams, IndexerServerOrdersResponse, IndexerServerPerpPrices, IndexerServerPerpPricesParams, IndexerServerPerpPricesResponse, IndexerServerPointsEpoch, IndexerServerPointsParams, IndexerServerPointsResponse, IndexerServerPriceParams, IndexerServerPriceResponse, IndexerServerPrivateAlphaChoiceParams, IndexerServerPrivateAlphaChoiceResponse, IndexerServerProduct, IndexerServerProductPayment, IndexerServerProductSnapshot, IndexerServerProductsParams, IndexerServerProductsResponse, IndexerServerQueryRequestByType, IndexerServerQueryRequestType, IndexerServerQueryResponseByType, IndexerServerQuotePriceResponse, IndexerServerReferralCodeParams, IndexerServerReferralCodeResponse, IndexerServerRevokeSocialAccountParams, IndexerServerSnapshotsInterval, IndexerServerSocialAccount, IndexerServerSocialAccountsResponse, IndexerServerSocialConnectParams, IndexerServerSocialConnectResponse, IndexerServerTriggerTypeFilter, IndexerServerTx, IndexerServerV2MarketHours, IndexerServerV2Symbol, IndexerServerV2SymbolsResponse, IndexerServerV2TickerResponse, IndexerServerV2TickersResponse, IndexerServerXPointsAllTime, IndexerServerXPointsEpoch, IndexerServerXPointsParams, IndexerServerXPointsQuest, IndexerServerXPointsResponse, IndexerSettlementEvent, IndexerSnapshotBalance, IndexerSnapshotsIntervalParams, IndexerSocialAccountInfo, IndexerSpotBalance, IndexerSubaccountSnapshot, IndexerV2MarketHours, IndexerV2Symbol, IndexerV2TickerResponse, IndexerV2TradingStatus, IndexerXPointsAllTime, IndexerXPointsEpoch, IndexerXPointsQuest, ListIndexerSocialAccountsParams, ListIndexerSocialAccountsResponse, ListIndexerSubaccountsParams, ListIndexerSubaccountsResponse, NadoDepositCollateralTx, NadoLiquidateSubaccountTx, NadoMatchOrdersRfqTx, NadoMatchOrdersTx, NadoTransferQuoteTx, NadoTx, NadoWithdrawCollateralTx, NadoWithdrawCollateralV2Tx, PaginatedIndexerEventsResponse, RegisterLeaderboardParams, RegisterLeaderboardResponse, RevokeSocialAccountParams, RevokeSocialAccountResponse, TickerMarketType, WithPaginationMeta, calcIndexerPerpBalanceNotionalValue, calcIndexerPerpBalanceValue, calcIndexerSpotBalanceValue };
|
package/dist/index.d.ts
CHANGED
|
@@ -3,12 +3,12 @@ import { t as IndexerEventType } from "./IndexerEventType-Brm9aX8w.js";
|
|
|
3
3
|
import { t as IndexerLeaderboardRankType } from "./IndexerLeaderboardType-DAKw2tfI.js";
|
|
4
4
|
import { a as NadoTransferQuoteTx, c as NadoWithdrawCollateralV2Tx, i as NadoMatchOrdersTx, n as NadoLiquidateSubaccountTx, o as NadoTx, r as NadoMatchOrdersRfqTx, s as NadoWithdrawCollateralTx, t as NadoDepositCollateralTx } from "./NadoTx-Bd4U-zDu.js";
|
|
5
5
|
import { C as IndexerServerTx, S as IndexerServerSocialAccount, _ as IndexerServerOrder, a as IndexerServerLeaderboardContestTrack, b as IndexerServerProductSnapshot, c as IndexerServerLeaderboardTrackPosition, d as IndexerServerMarketSnapshot, f as IndexerServerMarketSnapshotInterval, g as IndexerServerOraclePrice, h as IndexerServerNlpSnapshot, i as IndexerServerLeaderboardContest, l as IndexerServerMaker, m as IndexerServerMatchEventBalances, n as IndexerServerCandlestick, o as IndexerServerLeaderboardPosition, p as IndexerServerMatchEvent, r as IndexerServerEvent, s as IndexerServerLeaderboardRegistration, t as IndexerServerBalance, u as IndexerServerMakerData, v as IndexerServerProduct, x as IndexerServerSnapshotsInterval, y as IndexerServerProductPayment } from "./serverModelTypes-BwLIAkc1.js";
|
|
6
|
-
import { $ as
|
|
7
|
-
import { $ as
|
|
6
|
+
import { $ as IndexerServerMultiProductsParams, A as IndexerServerInterestFundingParams, At as IndexerServerSocialConnectResponse, B as IndexerServerLeaderboardRegistrationsResponse, Bt as IndexerServerXPointsQuest, C as IndexerServerFundingRateHistoryEntry, Ct as IndexerServerQueryResponseByType, D as IndexerServerFundingRateResponse, Dt as IndexerServerRevokeSocialAccountParams, E as IndexerServerFundingRateParams, Et as IndexerServerReferralCodeResponse, F as IndexerServerLeaderboardRankParams, Ft as IndexerServerV2TickerResponse, G as IndexerServerListSubaccountsParams, H as IndexerServerLinkedSignerParams, I as IndexerServerLeaderboardRankResponse, It as IndexerServerV2TickersResponse, J as IndexerServerMakerStatisticsResponse, K as IndexerServerListSubaccountsResponse, L as IndexerServerLeaderboardRegisterParams, Lt as IndexerServerXPointsAllTime, M as IndexerServerLeaderboardContestsParams, Mt as IndexerServerV2MarketHours, N as IndexerServerLeaderboardContestsResponse, Nt as IndexerServerV2Symbol, O as IndexerServerFundingRatesParams, Ot as IndexerServerSocialAccountsResponse, P as IndexerServerLeaderboardParams, Pt as IndexerServerV2SymbolsResponse, Q as IndexerServerMatchEventsResponse, R as IndexerServerLeaderboardRegisterResponse, Rt as IndexerServerXPointsEpoch, S as IndexerServerFundingRate, St as IndexerServerQueryRequestType, T as IndexerServerFundingRateHistoryResponse, Tt as IndexerServerReferralCodeParams, U as IndexerServerLinkedSignerResponse, V as IndexerServerLeaderboardResponse, Vt as IndexerServerXPointsResponse, W as IndexerServerListSocialAccountsParams, X as IndexerServerMarketSnapshotsResponse, Y as IndexerServerMarketSnapshotsParams, Z as IndexerServerMatchEventsParams, _ as IndexerServerDDAResponse, _t as IndexerServerPrivateAlphaChoiceParams, a as IndexerServerAllTimePoints, at as IndexerServerOraclePricesParams, b as IndexerServerFastWithdrawalSignatureParams, bt as IndexerServerProductsResponse, c as IndexerServerCandlesticksResponse, ct as IndexerServerOrdersResponse, d as IndexerServerCashIncentivesEventPlatform, dt as IndexerServerPerpPricesResponse, et as IndexerServerMultiProductsResponse, f as IndexerServerCashIncentivesEventWallet, ft as IndexerServerPointsEpoch, g as IndexerServerDDAQueryParams, gt as IndexerServerPriceResponse, h as IndexerServerCashIncentivesWalletSummary, ht as IndexerServerPriceParams, i as IndexerEdgeServerMarketSnapshotsResponse, it as IndexerServerNlpSnapshotsResponse, j as IndexerServerInterestFundingResponse, jt as IndexerServerTriggerTypeFilter, k as IndexerServerFundingRatesResponse, kt as IndexerServerSocialConnectParams, l as IndexerServerCashIncentivesEvent, lt as IndexerServerPerpPrices, m as IndexerServerCashIncentivesResponse, mt as IndexerServerPointsResponse, n as IndexerEdgeServerCandlesticksResponse, nt as IndexerServerMultiSubaccountSnapshotsResponse, o as IndexerServerBacklogResponse, ot as IndexerServerOraclePricesResponse, p as IndexerServerCashIncentivesParams, pt as IndexerServerPointsParams, q as IndexerServerMakerStatisticsParams, r as IndexerEdgeServerMarketSnapshotsParams, rt as IndexerServerNlpSnapshotsParams, s as IndexerServerCandlesticksParams, st as IndexerServerOrdersParams, t as IndexerEdgeServerCandlesticksParams, tt as IndexerServerMultiSubaccountSnapshotsParams, u as IndexerServerCashIncentivesEventMetadata, ut as IndexerServerPerpPricesParams, v as IndexerServerEventsParams, vt as IndexerServerPrivateAlphaChoiceResponse, w as IndexerServerFundingRateHistoryParams, wt as IndexerServerQuotePriceResponse, x as IndexerServerFastWithdrawalSignatureResponse, xt as IndexerServerQueryRequestByType, y as IndexerServerEventsResponse, yt as IndexerServerProductsParams, z as IndexerServerLeaderboardRegistrationsParams, zt as IndexerServerXPointsParams } from "./serverTypes-Co5rgD5o.js";
|
|
7
|
+
import { $ as GetIndexerOrdersResponse, $t as IndexerSocialAccountInfo, A as GetIndexerLeaderboardRegistrationsResponse, At as IndexerEventWithTx, B as GetIndexerMultiProductFundingRatesParams, Bt as IndexerMarketSnapshot, C as GetIndexerInterestFundingPaymentsResponse, Ct as IndexerCashIncentivesEventPlatform, D as GetIndexerLeaderboardParticipantParams, Dt as IndexerEventBalanceStateSnapshot, E as GetIndexerLeaderboardParams, Et as IndexerEvent, F as GetIndexerMakerStatisticsResponse, Ft as IndexerLeaderboardParticipant, G as GetIndexerMultiProductSnapshotsResponse, Gt as IndexerOrder, H as GetIndexerMultiProductPerpPricesParams, Ht as IndexerMatchEventBalances, I as GetIndexerMarketSnapshotsParams, It as IndexerLeaderboardRegistration, J as GetIndexerNlpSnapshotsParams, Jt as IndexerPointsEpoch, K as GetIndexerMultiSubaccountSnapshotsParams, Kt as IndexerPerpBalance, L as GetIndexerMarketSnapshotsResponse, Lt as IndexerLeaderboardTrackPosition, M as GetIndexerLinkedSignerParams, Mt as IndexerFundingRateHistoryEntry, N as GetIndexerLinkedSignerResponse, Nt as IndexerLeaderboardContest, O as GetIndexerLeaderboardParticipantResponse, Ot as IndexerEventPerpStateSnapshot, P as GetIndexerMakerStatisticsParams, Pt as IndexerLeaderboardContestTrack, Q as GetIndexerOrdersParams, Qt as IndexerSnapshotsIntervalParams, R as GetIndexerMatchEventsParams, Rt as IndexerMaker, S as GetIndexerInterestFundingPaymentsParams, St as IndexerCashIncentivesEventMetadata, T as GetIndexerLeaderboardContestsResponse, Tt as IndexerCashIncentivesWalletSummary, U as GetIndexerMultiProductPerpPricesResponse, Ut as IndexerNlpSnapshot, V as GetIndexerMultiProductFundingRatesResponse, Vt as IndexerMatchEvent, W as GetIndexerMultiProductSnapshotsParams, Wt as IndexerOraclePrice, X as GetIndexerOraclePricesParams, Xt as IndexerProductSnapshot, Y as GetIndexerNlpSnapshotsResponse, Yt as IndexerProductPayment, Z as GetIndexerOraclePricesResponse, Zt as IndexerSnapshotBalance, _ as GetIndexerFastWithdrawalSignatureResponse, _n as TickerMarketType, _t as GetIndexerXPointsParams, a as GetIndexerCandlesticksParams, an as IndexerV2TradingStatus, at as GetIndexerPrivateAlphaChoiceResponse, b as GetIndexerFundingRateParams, bt as IndexerBalanceTrackedVars, c as GetIndexerCashIncentivesResponse, cn as IndexerXPointsQuest, ct as GetIndexerQuotePriceResponse, d as GetIndexerEdgeMarketSnapshotResponse, dn as ListIndexerSubaccountsParams, dt as GetIndexerSubaccountDDAParams, en as IndexerSpotBalance, et as GetIndexerPerpPricesParams, f as GetIndexerEdgeMarketSnapshotsParams, fn as ListIndexerSubaccountsResponse, ft as GetIndexerSubaccountDDAResponse, g as GetIndexerFastWithdrawalSignatureParams, gn as RevokeSocialAccountResponse, gt as GetIndexerV2TickersResponse, h as GetIndexerEventsResponse, hn as RevokeSocialAccountParams, ht as GetIndexerV2TickersParams, i as GetIndexerBacklogResponse, in as IndexerV2TickerResponse, it as GetIndexerPrivateAlphaChoiceParams, j as GetIndexerLeaderboardResponse, jt as IndexerFundingRate, k as GetIndexerLeaderboardRegistrationsParams, kt as IndexerEventSpotStateSnapshot, l as GetIndexerEdgeCandlesticksParams, ln as ListIndexerSocialAccountsParams, lt as GetIndexerReferralCodeParams, m as GetIndexerEventsParams, mn as RegisterLeaderboardResponse, mt as GetIndexerV2SymbolsResponse, n as ConnectSocialAccountParams, nn as IndexerV2MarketHours, nt as GetIndexerPointsParams, o as GetIndexerCandlesticksResponse, on as IndexerXPointsAllTime, ot as GetIndexerProductSnapshotsParams, p as GetIndexerEventsLimitType, pn as RegisterLeaderboardParams, pt as GetIndexerV2SymbolsParams, q as GetIndexerMultiSubaccountSnapshotsResponse, qt as IndexerPerpPrices, r as ConnectSocialAccountResponse, rn as IndexerV2Symbol, rt as GetIndexerPointsResponse, s as GetIndexerCashIncentivesParams, sn as IndexerXPointsEpoch, st as GetIndexerProductSnapshotsResponse, t as Candlestick, tn as IndexerSubaccountSnapshot, tt as GetIndexerPerpPricesResponse, u as GetIndexerEdgeCandlesticksResponse, un as ListIndexerSocialAccountsResponse, ut as GetIndexerReferralCodeResponse, v as GetIndexerFundingRateHistoryParams, vt as GetIndexerXPointsResponse, w as GetIndexerLeaderboardContestsParams, wt as IndexerCashIncentivesEventWallet, x as GetIndexerFundingRateResponse, xt as IndexerCashIncentivesEvent, y as GetIndexerFundingRateHistoryResponse, yt as IndexerAllTimePoints, z as GetIndexerMatchEventsResponse, zt as IndexerMakerSnapshot } from "./clientTypes-BzpYIUbg.js";
|
|
8
8
|
import { t as CollateralEventType } from "./collateralEventType-s-WbBniE.js";
|
|
9
|
-
import { C as IndexerSettlementEvent, S as IndexerPaginationParams, T as WithPaginationMeta, _ as GetIndexerSubaccountSettlementEventsResponse, a as GetIndexerPaginatedOrdersParams, b as IndexerNlpEvent, c as GetIndexerSubaccountCollateralEventsResponse, d as GetIndexerSubaccountLiquidationEventsResponse, f as GetIndexerSubaccountMatchEventParams, g as GetIndexerSubaccountSettlementEventsParams, h as GetIndexerSubaccountNlpEventsResponse, i as GetIndexerPaginatedLeaderboardResponse, l as GetIndexerSubaccountInterestFundingPaymentsParams, m as GetIndexerSubaccountNlpEventsParams, n as GetIndexerPaginatedInterestFundingPaymentsResponse, o as GetIndexerPaginatedOrdersResponse, p as GetIndexerSubaccountMatchEventsResponse, r as GetIndexerPaginatedLeaderboardParams, s as GetIndexerSubaccountCollateralEventsParams, t as BaseIndexerPaginatedEvent, u as GetIndexerSubaccountLiquidationEventsParams, v as IndexerCollateralEvent, w as PaginatedIndexerEventsResponse, x as IndexerPaginationMeta, y as IndexerLiquidationEvent } from "./paginatedEventsTypes-
|
|
9
|
+
import { C as IndexerSettlementEvent, S as IndexerPaginationParams, T as WithPaginationMeta, _ as GetIndexerSubaccountSettlementEventsResponse, a as GetIndexerPaginatedOrdersParams, b as IndexerNlpEvent, c as GetIndexerSubaccountCollateralEventsResponse, d as GetIndexerSubaccountLiquidationEventsResponse, f as GetIndexerSubaccountMatchEventParams, g as GetIndexerSubaccountSettlementEventsParams, h as GetIndexerSubaccountNlpEventsResponse, i as GetIndexerPaginatedLeaderboardResponse, l as GetIndexerSubaccountInterestFundingPaymentsParams, m as GetIndexerSubaccountNlpEventsParams, n as GetIndexerPaginatedInterestFundingPaymentsResponse, o as GetIndexerPaginatedOrdersResponse, p as GetIndexerSubaccountMatchEventsResponse, r as GetIndexerPaginatedLeaderboardParams, s as GetIndexerSubaccountCollateralEventsParams, t as BaseIndexerPaginatedEvent, u as GetIndexerSubaccountLiquidationEventsParams, v as IndexerCollateralEvent, w as PaginatedIndexerEventsResponse, x as IndexerPaginationMeta, y as IndexerLiquidationEvent } from "./paginatedEventsTypes-B8d8yiii.js";
|
|
10
10
|
import { IndexerBaseClient, IndexerClientOpts } from "./IndexerBaseClient.js";
|
|
11
11
|
import { IndexerClient } from "./IndexerClient.js";
|
|
12
12
|
import { INDEXER_CLIENT_ENDPOINTS } from "./endpoints.js";
|
|
13
|
-
import { n as calcIndexerPerpBalanceValue, r as calcIndexerSpotBalanceValue, t as calcIndexerPerpBalanceNotionalValue } from "./indexerBalanceValue-
|
|
14
|
-
export { BaseIndexerPaginatedEvent, Candlestick, CandlestickPeriod, CollateralEventType, ConnectSocialAccountParams, ConnectSocialAccountResponse, GetIndexerBacklogResponse, GetIndexerCandlesticksParams, GetIndexerCandlesticksResponse, GetIndexerEdgeCandlesticksParams, GetIndexerEdgeCandlesticksResponse, GetIndexerEdgeMarketSnapshotResponse, GetIndexerEdgeMarketSnapshotsParams, GetIndexerEventsLimitType, GetIndexerEventsParams, GetIndexerEventsResponse, GetIndexerFastWithdrawalSignatureParams, GetIndexerFastWithdrawalSignatureResponse, GetIndexerFundingRateHistoryParams, GetIndexerFundingRateHistoryResponse, GetIndexerFundingRateParams, GetIndexerFundingRateResponse, GetIndexerInterestFundingPaymentsParams, GetIndexerInterestFundingPaymentsResponse, GetIndexerLeaderboardContestsParams, GetIndexerLeaderboardContestsResponse, GetIndexerLeaderboardParams, GetIndexerLeaderboardParticipantParams, GetIndexerLeaderboardParticipantResponse, GetIndexerLeaderboardRegistrationsParams, GetIndexerLeaderboardRegistrationsResponse, GetIndexerLeaderboardResponse, GetIndexerLinkedSignerParams, GetIndexerLinkedSignerResponse, GetIndexerMakerStatisticsParams, GetIndexerMakerStatisticsResponse, GetIndexerMarketSnapshotsParams, GetIndexerMarketSnapshotsResponse, GetIndexerMatchEventsParams, GetIndexerMatchEventsResponse, GetIndexerMultiProductFundingRatesParams, GetIndexerMultiProductFundingRatesResponse, GetIndexerMultiProductPerpPricesParams, GetIndexerMultiProductPerpPricesResponse, GetIndexerMultiProductSnapshotsParams, GetIndexerMultiProductSnapshotsResponse, GetIndexerMultiSubaccountSnapshotsParams, GetIndexerMultiSubaccountSnapshotsResponse, GetIndexerNlpSnapshotsParams, GetIndexerNlpSnapshotsResponse, GetIndexerOraclePricesParams, GetIndexerOraclePricesResponse, GetIndexerOrdersParams, GetIndexerOrdersResponse, GetIndexerPaginatedInterestFundingPaymentsResponse, GetIndexerPaginatedLeaderboardParams, GetIndexerPaginatedLeaderboardResponse, GetIndexerPaginatedOrdersParams, GetIndexerPaginatedOrdersResponse, GetIndexerPerpPricesParams, GetIndexerPerpPricesResponse, GetIndexerPointsParams, GetIndexerPointsResponse, GetIndexerPrivateAlphaChoiceParams, GetIndexerPrivateAlphaChoiceResponse, GetIndexerProductSnapshotsParams, GetIndexerProductSnapshotsResponse, GetIndexerQuotePriceResponse, GetIndexerReferralCodeParams, GetIndexerReferralCodeResponse, GetIndexerSubaccountCollateralEventsParams, GetIndexerSubaccountCollateralEventsResponse, GetIndexerSubaccountDDAParams, GetIndexerSubaccountDDAResponse, GetIndexerSubaccountInterestFundingPaymentsParams, GetIndexerSubaccountLiquidationEventsParams, GetIndexerSubaccountLiquidationEventsResponse, GetIndexerSubaccountMatchEventParams, GetIndexerSubaccountMatchEventsResponse, GetIndexerSubaccountNlpEventsParams, GetIndexerSubaccountNlpEventsResponse, GetIndexerSubaccountSettlementEventsParams, GetIndexerSubaccountSettlementEventsResponse, GetIndexerV2SymbolsParams, GetIndexerV2SymbolsResponse, GetIndexerV2TickersParams, GetIndexerV2TickersResponse, GetIndexerXPointsParams, GetIndexerXPointsResponse, INDEXER_CLIENT_ENDPOINTS, IndexerAllTimePoints, IndexerBalanceTrackedVars, IndexerBaseClient, IndexerClient, IndexerClientOpts, IndexerCollateralEvent, IndexerEdgeServerCandlesticksParams, IndexerEdgeServerCandlesticksResponse, IndexerEdgeServerMarketSnapshotsParams, IndexerEdgeServerMarketSnapshotsResponse, IndexerEvent, IndexerEventBalanceStateSnapshot, IndexerEventPerpStateSnapshot, IndexerEventSpotStateSnapshot, IndexerEventType, IndexerEventWithTx, IndexerFundingRate, IndexerFundingRateHistoryEntry, IndexerLeaderboardContest, IndexerLeaderboardContestTrack, IndexerLeaderboardParticipant, IndexerLeaderboardRankType, IndexerLeaderboardRegistration, IndexerLeaderboardTrackPosition, IndexerLiquidationEvent, IndexerMaker, IndexerMakerSnapshot, IndexerMarketSnapshot, IndexerMatchEvent, IndexerMatchEventBalances, IndexerNlpEvent, IndexerNlpSnapshot, IndexerOraclePrice, IndexerOrder, IndexerPaginationMeta, IndexerPaginationParams, IndexerPerpBalance, IndexerPerpPrices, IndexerPointsEpoch, IndexerProductPayment, IndexerProductSnapshot, IndexerServerAllTimePoints, IndexerServerBacklogResponse, IndexerServerBalance, IndexerServerCandlestick, IndexerServerCandlesticksParams, IndexerServerCandlesticksResponse, IndexerServerDDAQueryParams, IndexerServerDDAResponse, IndexerServerEvent, IndexerServerEventsParams, IndexerServerEventsResponse, IndexerServerFastWithdrawalSignatureParams, IndexerServerFastWithdrawalSignatureResponse, IndexerServerFundingRate, IndexerServerFundingRateHistoryEntry, IndexerServerFundingRateHistoryParams, IndexerServerFundingRateHistoryResponse, IndexerServerFundingRateParams, IndexerServerFundingRateResponse, IndexerServerFundingRatesParams, IndexerServerFundingRatesResponse, IndexerServerInterestFundingParams, IndexerServerInterestFundingResponse, IndexerServerLeaderboardContest, IndexerServerLeaderboardContestTrack, IndexerServerLeaderboardContestsParams, IndexerServerLeaderboardContestsResponse, IndexerServerLeaderboardParams, IndexerServerLeaderboardPosition, IndexerServerLeaderboardRankParams, IndexerServerLeaderboardRankResponse, IndexerServerLeaderboardRegisterParams, IndexerServerLeaderboardRegisterResponse, IndexerServerLeaderboardRegistration, IndexerServerLeaderboardRegistrationsParams, IndexerServerLeaderboardRegistrationsResponse, IndexerServerLeaderboardResponse, IndexerServerLeaderboardTrackPosition, IndexerServerLinkedSignerParams, IndexerServerLinkedSignerResponse, IndexerServerListSocialAccountsParams, IndexerServerListSubaccountsParams, IndexerServerListSubaccountsResponse, IndexerServerMaker, IndexerServerMakerData, IndexerServerMakerStatisticsParams, IndexerServerMakerStatisticsResponse, IndexerServerMarketSnapshot, IndexerServerMarketSnapshotInterval, IndexerServerMarketSnapshotsParams, IndexerServerMarketSnapshotsResponse, IndexerServerMatchEvent, IndexerServerMatchEventBalances, IndexerServerMatchEventsParams, IndexerServerMatchEventsResponse, IndexerServerMultiProductsParams, IndexerServerMultiProductsResponse, IndexerServerMultiSubaccountSnapshotsParams, IndexerServerMultiSubaccountSnapshotsResponse, IndexerServerNlpSnapshot, IndexerServerNlpSnapshotsParams, IndexerServerNlpSnapshotsResponse, IndexerServerOraclePrice, IndexerServerOraclePricesParams, IndexerServerOraclePricesResponse, IndexerServerOrder, IndexerServerOrdersParams, IndexerServerOrdersResponse, IndexerServerPerpPrices, IndexerServerPerpPricesParams, IndexerServerPerpPricesResponse, IndexerServerPointsEpoch, IndexerServerPointsParams, IndexerServerPointsResponse, IndexerServerPriceParams, IndexerServerPriceResponse, IndexerServerPrivateAlphaChoiceParams, IndexerServerPrivateAlphaChoiceResponse, IndexerServerProduct, IndexerServerProductPayment, IndexerServerProductSnapshot, IndexerServerProductsParams, IndexerServerProductsResponse, IndexerServerQueryRequestByType, IndexerServerQueryRequestType, IndexerServerQueryResponseByType, IndexerServerQuotePriceResponse, IndexerServerReferralCodeParams, IndexerServerReferralCodeResponse, IndexerServerRevokeSocialAccountParams, IndexerServerSnapshotsInterval, IndexerServerSocialAccount, IndexerServerSocialAccountsResponse, IndexerServerSocialConnectParams, IndexerServerSocialConnectResponse, IndexerServerTriggerTypeFilter, IndexerServerTx, IndexerServerV2MarketHours, IndexerServerV2Symbol, IndexerServerV2SymbolsResponse, IndexerServerV2TickerResponse, IndexerServerV2TickersResponse, IndexerServerXPointsAllTime, IndexerServerXPointsEpoch, IndexerServerXPointsParams, IndexerServerXPointsQuest, IndexerServerXPointsResponse, IndexerSettlementEvent, IndexerSnapshotBalance, IndexerSnapshotsIntervalParams, IndexerSocialAccountInfo, IndexerSpotBalance, IndexerSubaccountSnapshot, IndexerV2MarketHours, IndexerV2Symbol, IndexerV2TickerResponse, IndexerV2TradingStatus, IndexerXPointsAllTime, IndexerXPointsEpoch, IndexerXPointsQuest, ListIndexerSocialAccountsParams, ListIndexerSocialAccountsResponse, ListIndexerSubaccountsParams, ListIndexerSubaccountsResponse, NadoDepositCollateralTx, NadoLiquidateSubaccountTx, NadoMatchOrdersRfqTx, NadoMatchOrdersTx, NadoTransferQuoteTx, NadoTx, NadoWithdrawCollateralTx, NadoWithdrawCollateralV2Tx, PaginatedIndexerEventsResponse, RegisterLeaderboardParams, RegisterLeaderboardResponse, RevokeSocialAccountParams, RevokeSocialAccountResponse, TickerMarketType, WithPaginationMeta, calcIndexerPerpBalanceNotionalValue, calcIndexerPerpBalanceValue, calcIndexerSpotBalanceValue };
|
|
13
|
+
import { n as calcIndexerPerpBalanceValue, r as calcIndexerSpotBalanceValue, t as calcIndexerPerpBalanceNotionalValue } from "./indexerBalanceValue-BeyJ655G.js";
|
|
14
|
+
export { BaseIndexerPaginatedEvent, Candlestick, CandlestickPeriod, CollateralEventType, ConnectSocialAccountParams, ConnectSocialAccountResponse, GetIndexerBacklogResponse, GetIndexerCandlesticksParams, GetIndexerCandlesticksResponse, GetIndexerCashIncentivesParams, GetIndexerCashIncentivesResponse, GetIndexerEdgeCandlesticksParams, GetIndexerEdgeCandlesticksResponse, GetIndexerEdgeMarketSnapshotResponse, GetIndexerEdgeMarketSnapshotsParams, GetIndexerEventsLimitType, GetIndexerEventsParams, GetIndexerEventsResponse, GetIndexerFastWithdrawalSignatureParams, GetIndexerFastWithdrawalSignatureResponse, GetIndexerFundingRateHistoryParams, GetIndexerFundingRateHistoryResponse, GetIndexerFundingRateParams, GetIndexerFundingRateResponse, GetIndexerInterestFundingPaymentsParams, GetIndexerInterestFundingPaymentsResponse, GetIndexerLeaderboardContestsParams, GetIndexerLeaderboardContestsResponse, GetIndexerLeaderboardParams, GetIndexerLeaderboardParticipantParams, GetIndexerLeaderboardParticipantResponse, GetIndexerLeaderboardRegistrationsParams, GetIndexerLeaderboardRegistrationsResponse, GetIndexerLeaderboardResponse, GetIndexerLinkedSignerParams, GetIndexerLinkedSignerResponse, GetIndexerMakerStatisticsParams, GetIndexerMakerStatisticsResponse, GetIndexerMarketSnapshotsParams, GetIndexerMarketSnapshotsResponse, GetIndexerMatchEventsParams, GetIndexerMatchEventsResponse, GetIndexerMultiProductFundingRatesParams, GetIndexerMultiProductFundingRatesResponse, GetIndexerMultiProductPerpPricesParams, GetIndexerMultiProductPerpPricesResponse, GetIndexerMultiProductSnapshotsParams, GetIndexerMultiProductSnapshotsResponse, GetIndexerMultiSubaccountSnapshotsParams, GetIndexerMultiSubaccountSnapshotsResponse, GetIndexerNlpSnapshotsParams, GetIndexerNlpSnapshotsResponse, GetIndexerOraclePricesParams, GetIndexerOraclePricesResponse, GetIndexerOrdersParams, GetIndexerOrdersResponse, GetIndexerPaginatedInterestFundingPaymentsResponse, GetIndexerPaginatedLeaderboardParams, GetIndexerPaginatedLeaderboardResponse, GetIndexerPaginatedOrdersParams, GetIndexerPaginatedOrdersResponse, GetIndexerPerpPricesParams, GetIndexerPerpPricesResponse, GetIndexerPointsParams, GetIndexerPointsResponse, GetIndexerPrivateAlphaChoiceParams, GetIndexerPrivateAlphaChoiceResponse, GetIndexerProductSnapshotsParams, GetIndexerProductSnapshotsResponse, GetIndexerQuotePriceResponse, GetIndexerReferralCodeParams, GetIndexerReferralCodeResponse, GetIndexerSubaccountCollateralEventsParams, GetIndexerSubaccountCollateralEventsResponse, GetIndexerSubaccountDDAParams, GetIndexerSubaccountDDAResponse, GetIndexerSubaccountInterestFundingPaymentsParams, GetIndexerSubaccountLiquidationEventsParams, GetIndexerSubaccountLiquidationEventsResponse, GetIndexerSubaccountMatchEventParams, GetIndexerSubaccountMatchEventsResponse, GetIndexerSubaccountNlpEventsParams, GetIndexerSubaccountNlpEventsResponse, GetIndexerSubaccountSettlementEventsParams, GetIndexerSubaccountSettlementEventsResponse, GetIndexerV2SymbolsParams, GetIndexerV2SymbolsResponse, GetIndexerV2TickersParams, GetIndexerV2TickersResponse, GetIndexerXPointsParams, GetIndexerXPointsResponse, INDEXER_CLIENT_ENDPOINTS, IndexerAllTimePoints, IndexerBalanceTrackedVars, IndexerBaseClient, IndexerCashIncentivesEvent, IndexerCashIncentivesEventMetadata, IndexerCashIncentivesEventPlatform, IndexerCashIncentivesEventWallet, IndexerCashIncentivesWalletSummary, IndexerClient, IndexerClientOpts, IndexerCollateralEvent, IndexerEdgeServerCandlesticksParams, IndexerEdgeServerCandlesticksResponse, IndexerEdgeServerMarketSnapshotsParams, IndexerEdgeServerMarketSnapshotsResponse, IndexerEvent, IndexerEventBalanceStateSnapshot, IndexerEventPerpStateSnapshot, IndexerEventSpotStateSnapshot, IndexerEventType, IndexerEventWithTx, IndexerFundingRate, IndexerFundingRateHistoryEntry, IndexerLeaderboardContest, IndexerLeaderboardContestTrack, IndexerLeaderboardParticipant, IndexerLeaderboardRankType, IndexerLeaderboardRegistration, IndexerLeaderboardTrackPosition, IndexerLiquidationEvent, IndexerMaker, IndexerMakerSnapshot, IndexerMarketSnapshot, IndexerMatchEvent, IndexerMatchEventBalances, IndexerNlpEvent, IndexerNlpSnapshot, IndexerOraclePrice, IndexerOrder, IndexerPaginationMeta, IndexerPaginationParams, IndexerPerpBalance, IndexerPerpPrices, IndexerPointsEpoch, IndexerProductPayment, IndexerProductSnapshot, IndexerServerAllTimePoints, IndexerServerBacklogResponse, IndexerServerBalance, IndexerServerCandlestick, IndexerServerCandlesticksParams, IndexerServerCandlesticksResponse, IndexerServerCashIncentivesEvent, IndexerServerCashIncentivesEventMetadata, IndexerServerCashIncentivesEventPlatform, IndexerServerCashIncentivesEventWallet, IndexerServerCashIncentivesParams, IndexerServerCashIncentivesResponse, IndexerServerCashIncentivesWalletSummary, IndexerServerDDAQueryParams, IndexerServerDDAResponse, IndexerServerEvent, IndexerServerEventsParams, IndexerServerEventsResponse, IndexerServerFastWithdrawalSignatureParams, IndexerServerFastWithdrawalSignatureResponse, IndexerServerFundingRate, IndexerServerFundingRateHistoryEntry, IndexerServerFundingRateHistoryParams, IndexerServerFundingRateHistoryResponse, IndexerServerFundingRateParams, IndexerServerFundingRateResponse, IndexerServerFundingRatesParams, IndexerServerFundingRatesResponse, IndexerServerInterestFundingParams, IndexerServerInterestFundingResponse, IndexerServerLeaderboardContest, IndexerServerLeaderboardContestTrack, IndexerServerLeaderboardContestsParams, IndexerServerLeaderboardContestsResponse, IndexerServerLeaderboardParams, IndexerServerLeaderboardPosition, IndexerServerLeaderboardRankParams, IndexerServerLeaderboardRankResponse, IndexerServerLeaderboardRegisterParams, IndexerServerLeaderboardRegisterResponse, IndexerServerLeaderboardRegistration, IndexerServerLeaderboardRegistrationsParams, IndexerServerLeaderboardRegistrationsResponse, IndexerServerLeaderboardResponse, IndexerServerLeaderboardTrackPosition, IndexerServerLinkedSignerParams, IndexerServerLinkedSignerResponse, IndexerServerListSocialAccountsParams, IndexerServerListSubaccountsParams, IndexerServerListSubaccountsResponse, IndexerServerMaker, IndexerServerMakerData, IndexerServerMakerStatisticsParams, IndexerServerMakerStatisticsResponse, IndexerServerMarketSnapshot, IndexerServerMarketSnapshotInterval, IndexerServerMarketSnapshotsParams, IndexerServerMarketSnapshotsResponse, IndexerServerMatchEvent, IndexerServerMatchEventBalances, IndexerServerMatchEventsParams, IndexerServerMatchEventsResponse, IndexerServerMultiProductsParams, IndexerServerMultiProductsResponse, IndexerServerMultiSubaccountSnapshotsParams, IndexerServerMultiSubaccountSnapshotsResponse, IndexerServerNlpSnapshot, IndexerServerNlpSnapshotsParams, IndexerServerNlpSnapshotsResponse, IndexerServerOraclePrice, IndexerServerOraclePricesParams, IndexerServerOraclePricesResponse, IndexerServerOrder, IndexerServerOrdersParams, IndexerServerOrdersResponse, IndexerServerPerpPrices, IndexerServerPerpPricesParams, IndexerServerPerpPricesResponse, IndexerServerPointsEpoch, IndexerServerPointsParams, IndexerServerPointsResponse, IndexerServerPriceParams, IndexerServerPriceResponse, IndexerServerPrivateAlphaChoiceParams, IndexerServerPrivateAlphaChoiceResponse, IndexerServerProduct, IndexerServerProductPayment, IndexerServerProductSnapshot, IndexerServerProductsParams, IndexerServerProductsResponse, IndexerServerQueryRequestByType, IndexerServerQueryRequestType, IndexerServerQueryResponseByType, IndexerServerQuotePriceResponse, IndexerServerReferralCodeParams, IndexerServerReferralCodeResponse, IndexerServerRevokeSocialAccountParams, IndexerServerSnapshotsInterval, IndexerServerSocialAccount, IndexerServerSocialAccountsResponse, IndexerServerSocialConnectParams, IndexerServerSocialConnectResponse, IndexerServerTriggerTypeFilter, IndexerServerTx, IndexerServerV2MarketHours, IndexerServerV2Symbol, IndexerServerV2SymbolsResponse, IndexerServerV2TickerResponse, IndexerServerV2TickersResponse, IndexerServerXPointsAllTime, IndexerServerXPointsEpoch, IndexerServerXPointsParams, IndexerServerXPointsQuest, IndexerServerXPointsResponse, IndexerSettlementEvent, IndexerSnapshotBalance, IndexerSnapshotsIntervalParams, IndexerSocialAccountInfo, IndexerSpotBalance, IndexerSubaccountSnapshot, IndexerV2MarketHours, IndexerV2Symbol, IndexerV2TickerResponse, IndexerV2TradingStatus, IndexerXPointsAllTime, IndexerXPointsEpoch, IndexerXPointsQuest, ListIndexerSocialAccountsParams, ListIndexerSocialAccountsResponse, ListIndexerSubaccountsParams, ListIndexerSubaccountsResponse, NadoDepositCollateralTx, NadoLiquidateSubaccountTx, NadoMatchOrdersRfqTx, NadoMatchOrdersTx, NadoTransferQuoteTx, NadoTx, NadoWithdrawCollateralTx, NadoWithdrawCollateralV2Tx, PaginatedIndexerEventsResponse, RegisterLeaderboardParams, RegisterLeaderboardResponse, RevokeSocialAccountParams, RevokeSocialAccountResponse, TickerMarketType, WithPaginationMeta, calcIndexerPerpBalanceNotionalValue, calcIndexerPerpBalanceValue, calcIndexerSpotBalanceValue };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { Kt as IndexerPerpBalance, en as IndexerSpotBalance } from "./clientTypes-CgQ-pdym.cjs";
|
|
2
2
|
import BigNumber from "bignumber.js";
|
|
3
3
|
|
|
4
4
|
//#region src/utils/indexerBalanceValue.d.ts
|
|
@@ -29,4 +29,4 @@ declare function calcIndexerPerpBalanceNotionalValue(balance: IndexerPerpBalance
|
|
|
29
29
|
declare function calcIndexerPerpBalanceValue(balance: IndexerPerpBalance, oraclePrice: BigNumber): BigNumber;
|
|
30
30
|
//#endregion
|
|
31
31
|
export { calcIndexerPerpBalanceValue as n, calcIndexerSpotBalanceValue as r, calcIndexerPerpBalanceNotionalValue as t };
|
|
32
|
-
//# sourceMappingURL=indexerBalanceValue-
|
|
32
|
+
//# sourceMappingURL=indexerBalanceValue-BMncrrka.d.cts.map
|
package/dist/{indexerBalanceValue-D2KvyrdG.d.cts.map → indexerBalanceValue-BMncrrka.d.cts.map}
RENAMED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"indexerBalanceValue-
|
|
1
|
+
{"version":3,"file":"indexerBalanceValue-BMncrrka.d.cts","names":[],"sources":["../src/utils/src/utils/indexerBalanceValue.ts"],"mappings":";;;;;;;AAcA;;;;;;;iBAAgB,2BAAA,CACd,OAAA,EAAS,kBAAA,EACT,WAAA,EAAa,SAAA,GACZ,SAAA;;;;;;;iBAUa,mCAAA,CACd,OAAA,EAAS,kBAAA,EACT,WAAA,EAAa,SAAA,GACZ,SAAA;AAHH;;;;;;AAAA,iBAagB,2BAAA,CACd,OAAA,EAAS,kBAAA,EACT,WAAA,EAAa,SAAA,GACZ,SAAA"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { Kt as IndexerPerpBalance, en as IndexerSpotBalance } from "./clientTypes-BzpYIUbg.js";
|
|
2
2
|
import BigNumber from "bignumber.js";
|
|
3
3
|
|
|
4
4
|
//#region src/utils/indexerBalanceValue.d.ts
|
|
@@ -29,4 +29,4 @@ declare function calcIndexerPerpBalanceNotionalValue(balance: IndexerPerpBalance
|
|
|
29
29
|
declare function calcIndexerPerpBalanceValue(balance: IndexerPerpBalance, oraclePrice: BigNumber): BigNumber;
|
|
30
30
|
//#endregion
|
|
31
31
|
export { calcIndexerPerpBalanceValue as n, calcIndexerSpotBalanceValue as r, calcIndexerPerpBalanceNotionalValue as t };
|
|
32
|
-
//# sourceMappingURL=indexerBalanceValue-
|
|
32
|
+
//# sourceMappingURL=indexerBalanceValue-BeyJ655G.d.ts.map
|
package/dist/{indexerBalanceValue-CucKRR_z.d.ts.map → indexerBalanceValue-BeyJ655G.d.ts.map}
RENAMED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"indexerBalanceValue-
|
|
1
|
+
{"version":3,"file":"indexerBalanceValue-BeyJ655G.d.ts","names":[],"sources":["../src/utils/src/utils/indexerBalanceValue.ts"],"mappings":";;;;;;;AAcA;;;;;;;iBAAgB,2BAAA,CACd,OAAA,EAAS,kBAAA,EACT,WAAA,EAAa,SAAA,GACZ,SAAA;;;;;;;iBAUa,mCAAA,CACd,OAAA,EAAS,kBAAA,EACT,WAAA,EAAa,SAAA,GACZ,SAAA;AAHH;;;;;;AAAA,iBAagB,2BAAA,CACd,OAAA,EAAS,kBAAA,EACT,WAAA,EAAa,SAAA,GACZ,SAAA"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { o as NadoTx } from "./NadoTx-Bd4U-zDu.js";
|
|
2
|
-
import {
|
|
2
|
+
import { At as IndexerEventWithTx, C as GetIndexerInterestFundingPaymentsResponse, Dt as IndexerEventBalanceStateSnapshot, E as GetIndexerLeaderboardParams, Gt as IndexerOrder, Ot as IndexerEventPerpStateSnapshot, Q as GetIndexerOrdersParams, R as GetIndexerMatchEventsParams, S as GetIndexerInterestFundingPaymentsParams, Vt as IndexerMatchEvent, j as GetIndexerLeaderboardResponse, kt as IndexerEventSpotStateSnapshot } from "./clientTypes-BzpYIUbg.js";
|
|
3
3
|
import { t as CollateralEventType } from "./collateralEventType-s-WbBniE.js";
|
|
4
4
|
import { Subaccount } from "@nadohq/shared";
|
|
5
5
|
import BigNumber from "bignumber.js";
|
|
@@ -107,4 +107,4 @@ type GetIndexerPaginatedLeaderboardParams = IndexerPaginationParams & Pick<GetIn
|
|
|
107
107
|
type GetIndexerPaginatedLeaderboardResponse = WithPaginationMeta & GetIndexerLeaderboardResponse;
|
|
108
108
|
//#endregion
|
|
109
109
|
export { IndexerSettlementEvent as C, IndexerPaginationParams as S, WithPaginationMeta as T, GetIndexerSubaccountSettlementEventsResponse as _, GetIndexerPaginatedOrdersParams as a, IndexerNlpEvent as b, GetIndexerSubaccountCollateralEventsResponse as c, GetIndexerSubaccountLiquidationEventsResponse as d, GetIndexerSubaccountMatchEventParams as f, GetIndexerSubaccountSettlementEventsParams as g, GetIndexerSubaccountNlpEventsResponse as h, GetIndexerPaginatedLeaderboardResponse as i, GetIndexerSubaccountInterestFundingPaymentsParams as l, GetIndexerSubaccountNlpEventsParams as m, GetIndexerPaginatedInterestFundingPaymentsResponse as n, GetIndexerPaginatedOrdersResponse as o, GetIndexerSubaccountMatchEventsResponse as p, GetIndexerPaginatedLeaderboardParams as r, GetIndexerSubaccountCollateralEventsParams as s, BaseIndexerPaginatedEvent as t, GetIndexerSubaccountLiquidationEventsParams as u, IndexerCollateralEvent as v, PaginatedIndexerEventsResponse as w, IndexerPaginationMeta as x, IndexerLiquidationEvent as y };
|
|
110
|
-
//# sourceMappingURL=paginatedEventsTypes-
|
|
110
|
+
//# sourceMappingURL=paginatedEventsTypes-B8d8yiii.d.ts.map
|