@nktkas/hyperliquid 0.13.0 → 0.13.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.
Files changed (118) hide show
  1. package/README.md +9 -0
  2. package/esm/mod.d.ts +14 -14
  3. package/esm/mod.d.ts.map +1 -1
  4. package/esm/src/clients/event.d.ts +8 -6
  5. package/esm/src/clients/event.d.ts.map +1 -1
  6. package/esm/src/clients/event.js +4 -2
  7. package/esm/src/clients/public.d.ts +7 -7
  8. package/esm/src/clients/public.d.ts.map +1 -1
  9. package/esm/src/clients/wallet.d.ts +3 -3
  10. package/esm/src/clients/wallet.d.ts.map +1 -1
  11. package/esm/src/clients/wallet.js +9 -7
  12. package/esm/src/transports/http/http_transport.d.ts.map +1 -1
  13. package/esm/src/transports/http/http_transport.js +4 -1
  14. package/esm/src/transports/websocket/websocket_request_dispatcher.d.ts.map +1 -1
  15. package/esm/src/transports/websocket/websocket_request_dispatcher.js +4 -4
  16. package/esm/src/types/common.d.ts +3 -0
  17. package/esm/src/types/common.d.ts.map +1 -0
  18. package/esm/src/types/common.js +1 -0
  19. package/esm/src/types/exchange/common.d.ts +36 -0
  20. package/esm/src/types/exchange/common.d.ts.map +1 -0
  21. package/esm/src/types/exchange/common.js +1 -0
  22. package/esm/src/types/exchange/requests.d.ts +435 -0
  23. package/esm/src/types/exchange/requests.d.ts.map +1 -0
  24. package/esm/src/types/exchange/requests.js +1 -0
  25. package/esm/src/types/exchange/responses.d.ts +141 -0
  26. package/esm/src/types/exchange/responses.d.ts.map +1 -0
  27. package/esm/src/types/exchange/responses.js +1 -0
  28. package/esm/src/types/explorer/common.d.ts +37 -0
  29. package/esm/src/types/explorer/common.d.ts.map +1 -0
  30. package/esm/src/types/explorer/common.js +1 -0
  31. package/esm/src/types/explorer/requests.d.ts +22 -0
  32. package/esm/src/types/explorer/requests.d.ts.map +1 -0
  33. package/esm/src/types/explorer/requests.js +1 -0
  34. package/esm/src/types/explorer/responses.d.ts +16 -0
  35. package/esm/src/types/explorer/responses.d.ts.map +1 -0
  36. package/esm/src/types/explorer/responses.js +1 -0
  37. package/esm/src/types/info/accounts.d.ts +424 -0
  38. package/esm/src/types/info/accounts.d.ts.map +1 -0
  39. package/esm/src/types/info/accounts.js +1 -0
  40. package/esm/src/types/info/assets.d.ts +271 -0
  41. package/esm/src/types/info/assets.d.ts.map +1 -0
  42. package/esm/src/types/info/assets.js +1 -0
  43. package/esm/src/types/info/orders.d.ts +209 -0
  44. package/esm/src/types/info/orders.d.ts.map +1 -0
  45. package/esm/src/types/info/orders.js +1 -0
  46. package/esm/src/types/info/requests.d.ts +380 -0
  47. package/esm/src/types/info/requests.d.ts.map +1 -0
  48. package/esm/src/types/info/requests.js +1 -0
  49. package/esm/src/types/info/vaults.d.ts +133 -0
  50. package/esm/src/types/info/vaults.d.ts.map +1 -0
  51. package/esm/src/types/info/vaults.js +1 -0
  52. package/esm/src/types/subscriptions/common.d.ts +205 -0
  53. package/esm/src/types/subscriptions/common.d.ts.map +1 -0
  54. package/esm/src/types/subscriptions/common.js +1 -0
  55. package/esm/src/types/subscriptions/requests.d.ts +124 -0
  56. package/esm/src/types/subscriptions/requests.d.ts.map +1 -0
  57. package/esm/src/types/subscriptions/requests.js +1 -0
  58. package/esm/src/utils/key_sort.d.ts +2 -2
  59. package/esm/src/utils/key_sort.d.ts.map +1 -1
  60. package/package.json +2 -2
  61. package/script/mod.d.ts +14 -14
  62. package/script/mod.d.ts.map +1 -1
  63. package/script/src/clients/event.d.ts +8 -6
  64. package/script/src/clients/event.d.ts.map +1 -1
  65. package/script/src/clients/event.js +4 -2
  66. package/script/src/clients/public.d.ts +7 -7
  67. package/script/src/clients/public.d.ts.map +1 -1
  68. package/script/src/clients/wallet.d.ts +3 -3
  69. package/script/src/clients/wallet.d.ts.map +1 -1
  70. package/script/src/clients/wallet.js +9 -7
  71. package/script/src/transports/http/http_transport.d.ts.map +1 -1
  72. package/script/src/transports/http/http_transport.js +4 -1
  73. package/script/src/transports/websocket/websocket_request_dispatcher.d.ts.map +1 -1
  74. package/script/src/transports/websocket/websocket_request_dispatcher.js +4 -4
  75. package/script/src/types/common.d.ts +3 -0
  76. package/script/src/types/common.d.ts.map +1 -0
  77. package/script/src/types/common.js +2 -0
  78. package/script/src/types/exchange/common.d.ts +36 -0
  79. package/script/src/types/exchange/common.d.ts.map +1 -0
  80. package/script/src/types/exchange/common.js +2 -0
  81. package/script/src/types/exchange/requests.d.ts +435 -0
  82. package/script/src/types/exchange/requests.d.ts.map +1 -0
  83. package/script/src/types/exchange/requests.js +2 -0
  84. package/script/src/types/exchange/responses.d.ts +141 -0
  85. package/script/src/types/exchange/responses.d.ts.map +1 -0
  86. package/script/src/types/exchange/responses.js +2 -0
  87. package/script/src/types/explorer/common.d.ts +37 -0
  88. package/script/src/types/explorer/common.d.ts.map +1 -0
  89. package/script/src/types/explorer/common.js +2 -0
  90. package/script/src/types/explorer/requests.d.ts +22 -0
  91. package/script/src/types/explorer/requests.d.ts.map +1 -0
  92. package/script/src/types/explorer/requests.js +2 -0
  93. package/script/src/types/explorer/responses.d.ts +16 -0
  94. package/script/src/types/explorer/responses.d.ts.map +1 -0
  95. package/script/src/types/explorer/responses.js +2 -0
  96. package/script/src/types/info/accounts.d.ts +424 -0
  97. package/script/src/types/info/accounts.d.ts.map +1 -0
  98. package/script/src/types/info/accounts.js +2 -0
  99. package/script/src/types/info/assets.d.ts +271 -0
  100. package/script/src/types/info/assets.d.ts.map +1 -0
  101. package/script/src/types/info/assets.js +2 -0
  102. package/script/src/types/info/orders.d.ts +209 -0
  103. package/script/src/types/info/orders.d.ts.map +1 -0
  104. package/script/src/types/info/orders.js +2 -0
  105. package/script/src/types/info/requests.d.ts +380 -0
  106. package/script/src/types/info/requests.d.ts.map +1 -0
  107. package/script/src/types/info/requests.js +2 -0
  108. package/script/src/types/info/vaults.d.ts +133 -0
  109. package/script/src/types/info/vaults.d.ts.map +1 -0
  110. package/script/src/types/info/vaults.js +2 -0
  111. package/script/src/types/subscriptions/common.d.ts +205 -0
  112. package/script/src/types/subscriptions/common.d.ts.map +1 -0
  113. package/script/src/types/subscriptions/common.js +2 -0
  114. package/script/src/types/subscriptions/requests.d.ts +124 -0
  115. package/script/src/types/subscriptions/requests.d.ts.map +1 -0
  116. package/script/src/types/subscriptions/requests.js +2 -0
  117. package/script/src/utils/key_sort.d.ts +2 -2
  118. package/script/src/utils/key_sort.d.ts.map +1 -1
@@ -0,0 +1,16 @@
1
+ import type { BlockDetails, TxDetails } from "./common.js";
2
+ /** The response to get the details of a transaction. */
3
+ export interface TxDetailsResponse {
4
+ /** Type of response. */
5
+ type: "txDetails";
6
+ /** The details of a transaction. */
7
+ tx: TxDetails;
8
+ }
9
+ /** The response to get the details of a block. */
10
+ export interface BlockDetailsResponse {
11
+ /** Type of response. */
12
+ type: "blockDetails";
13
+ /** The details of a block. */
14
+ blockDetails: BlockDetails;
15
+ }
16
+ //# sourceMappingURL=responses.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"responses.d.ts","sourceRoot":"","sources":["../../../../src/src/types/explorer/responses.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAE3D,wDAAwD;AACxD,MAAM,WAAW,iBAAiB;IAC9B,wBAAwB;IACxB,IAAI,EAAE,WAAW,CAAC;IAElB,oCAAoC;IACpC,EAAE,EAAE,SAAS,CAAC;CACjB;AAED,kDAAkD;AAClD,MAAM,WAAW,oBAAoB;IACjC,wBAAwB;IACxB,IAAI,EAAE,cAAc,CAAC;IAErB,8BAA8B;IAC9B,YAAY,EAAE,YAAY,CAAC;CAC9B"}
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,424 @@
1
+ import type { Hex } from "../common.js";
2
+ /** Position in a specific asset. */
3
+ export interface AssetPosition {
4
+ /** Position type. */
5
+ type: "oneWay";
6
+ /** Position details. */
7
+ position: {
8
+ /** Asset symbol. */
9
+ coin: string;
10
+ /** Signed position size. */
11
+ szi: string;
12
+ /** Leverage details. */
13
+ leverage: {
14
+ /** Leverage type. */
15
+ type: "isolated";
16
+ /** Leverage value used. */
17
+ value: number;
18
+ /** Amount of raw USD used. */
19
+ rawUsd: string;
20
+ } | {
21
+ /** Leverage type. */
22
+ type: "cross";
23
+ /** Leverage value used. */
24
+ value: number;
25
+ };
26
+ /** Average entry price. */
27
+ entryPx: string;
28
+ /** Position value. */
29
+ positionValue: string;
30
+ /** Unrealized PnL. */
31
+ unrealizedPnl: string;
32
+ /** Return on equity. */
33
+ returnOnEquity: string;
34
+ /** Liquidation price. */
35
+ liquidationPx: string | null;
36
+ /** Margin used. */
37
+ marginUsed: string;
38
+ /** Maximum allowed leverage. */
39
+ maxLeverage: number;
40
+ /** Cumulative funding details. */
41
+ cumFunding: {
42
+ /** Total funding paid or received since account opening. */
43
+ allTime: string;
44
+ /** Funding since the position was opened. */
45
+ sinceOpen: string;
46
+ /** Funding since the last position size change. */
47
+ sinceChange: string;
48
+ };
49
+ };
50
+ }
51
+ /** Account summary for perpetual trading. */
52
+ export interface PerpsClearinghouseState {
53
+ /** Margin details. */
54
+ marginSummary: {
55
+ /** Total account value. */
56
+ accountValue: string;
57
+ /** Total notional value. */
58
+ totalNtlPos: string;
59
+ /** Total raw USD value. */
60
+ totalRawUsd: string;
61
+ /** Total margin used. */
62
+ totalMarginUsed: string;
63
+ };
64
+ /** Cross-margin details. */
65
+ crossMarginSummary: {
66
+ /** Total account value. */
67
+ accountValue: string;
68
+ /** Total notional value. */
69
+ totalNtlPos: string;
70
+ /** Total raw USD value. */
71
+ totalRawUsd: string;
72
+ /** Total margin used. */
73
+ totalMarginUsed: string;
74
+ };
75
+ /** Maintenance margin used for cross-margin positions. */
76
+ crossMaintenanceMarginUsed: string;
77
+ /** Amount available for withdrawal. */
78
+ withdrawable: string;
79
+ /** Positions in various assets. */
80
+ assetPositions: AssetPosition[];
81
+ /** Timestamp when the data was retrieved (in ms since epoch). */
82
+ time: number;
83
+ }
84
+ /** Balance for a specific spot token. */
85
+ export interface SpotBalance {
86
+ /** Asset symbol. */
87
+ coin: string;
88
+ /** Unique identifier for the token. */
89
+ token: number;
90
+ /** Total balance. */
91
+ total: string;
92
+ /** Amount on hold. */
93
+ hold: string;
94
+ /** Entry notional value. */
95
+ entryNtl: string;
96
+ }
97
+ /** Balances for spot tokens. */
98
+ export interface SpotClearinghouseState {
99
+ /** Balance for each token. */
100
+ balances: SpotBalance[];
101
+ }
102
+ /** User sub-accounts. */
103
+ export interface SubAccount {
104
+ /** Name of the sub-account. */
105
+ name: string;
106
+ /** Address of the sub-account. */
107
+ subAccountUser: Hex;
108
+ /** Address of the master account. */
109
+ master: Hex;
110
+ /** Account summary for perpetual trading. */
111
+ clearinghouseState: PerpsClearinghouseState;
112
+ /** Balances for spot tokens. */
113
+ spotState: SpotClearinghouseState;
114
+ }
115
+ /** User fees. */
116
+ export interface UserFees {
117
+ /** User's daily volume. */
118
+ dailyUserVlm: {
119
+ /** Date. */
120
+ date: `${number}-${number}-${number}`;
121
+ /** User's cross-trade volume. */
122
+ userCross: string;
123
+ /** User's add liquidity volume. */
124
+ userAdd: string;
125
+ /** Total exchange volume. */
126
+ exchange: string;
127
+ }[];
128
+ /** Fee schedule. */
129
+ feeSchedule: {
130
+ /** Cross-trade fee rate. */
131
+ cross: string;
132
+ /** Add liquidity fee rate. */
133
+ add: string;
134
+ /** Fee tiers. */
135
+ tiers: {
136
+ /** VIP fee tiers. */
137
+ vip: {
138
+ /** Notional volume cutoff. */
139
+ ntlCutoff: string;
140
+ /** Cross-trade fee rate. */
141
+ cross: string;
142
+ /** Add liquidity fee rate. */
143
+ add: string;
144
+ }[];
145
+ /** MM fee tiers. */
146
+ mm: {
147
+ /** Maker fraction cutoff. */
148
+ makerFractionCutoff: string;
149
+ /** Add liquidity fee rate. */
150
+ add: string;
151
+ }[];
152
+ };
153
+ /** Referral discount. */
154
+ referralDiscount: string;
155
+ };
156
+ /** User's cross-trade rate. */
157
+ userCrossRate: string;
158
+ /** User's add liquidity rate. */
159
+ userAddRate: string;
160
+ /** Active referral discount. */
161
+ activeReferralDiscount: string;
162
+ /** Trial details. */
163
+ trial: unknown | null;
164
+ /** Fee trial reward. */
165
+ feeTrialReward: string;
166
+ /** Next trial available timestamp. */
167
+ nextTrialAvailableTimestamp: unknown | null;
168
+ }
169
+ /** User's rate limits. */
170
+ export interface UserRateLimit {
171
+ /** Cumulative trading volume. */
172
+ cumVlm: string;
173
+ /** Number of API requests used. */
174
+ nRequestsUsed: number;
175
+ /** Maximum allowed API requests. */
176
+ nRequestsCap: number;
177
+ }
178
+ /** User's extra agent. */
179
+ export interface ExtraAgent {
180
+ /** The address of the extra agent. */
181
+ address: Hex;
182
+ /** The name of the extra agent. */
183
+ name: string;
184
+ /** The validity period of the extra agent. */
185
+ validUntil: number;
186
+ }
187
+ /** Referral information for a user. */
188
+ export interface Referral {
189
+ /** Details about who referred this user, or `null` if no referrer exists. */
190
+ referredBy: {
191
+ /** Referrer's address. */
192
+ referrer: Hex;
193
+ /** Referral code used. */
194
+ code: string;
195
+ } | null;
196
+ /** Cumulative volume traded. */
197
+ cumVlm: string;
198
+ /** Rewards earned but not yet claimed. */
199
+ unclaimedRewards: string;
200
+ /** Rewards claimed. */
201
+ claimedRewards: string;
202
+ /** Rewards builder. */
203
+ builderRewards: string;
204
+ /** Current state of the referrer. */
205
+ referrerState: {
206
+ /** Referrer is ready to receive rewards. */
207
+ stage: "ready";
208
+ /** Data related to the referrer's referral program. */
209
+ data: {
210
+ /** Referral code assigned. */
211
+ code: string;
212
+ /** Summary of each user's activity. */
213
+ referralStates: {
214
+ /** Cumulative volume traded. */
215
+ cumVlm: string;
216
+ /** Total fees rewarded to the referred user since being referred. */
217
+ cumRewardedFeesSinceReferred: string;
218
+ /** Total fees rewarded to the referrer from the referred user's trades. */
219
+ cumFeesRewardedToReferrer: string;
220
+ /** Timestamp when the referred user joined (in ms since epoch). */
221
+ timeJoined: number;
222
+ /** Address of the referred user. */
223
+ user: string;
224
+ }[];
225
+ };
226
+ } | {
227
+ /** Referrer needs to create a referral code to start receiving rewards. */
228
+ stage: "needToCreateCode";
229
+ } | {
230
+ /** Referrer must complete a trade before receiving rewards. */
231
+ stage: "needToTrade";
232
+ /** Additional information about the required volume to start earning rewards. */
233
+ data: {
234
+ /** Required trading volume to activate rewards. */
235
+ required: string;
236
+ };
237
+ };
238
+ /** History of rewards. */
239
+ rewardHistory: {
240
+ /** Amount of rewards earned. */
241
+ earned: string;
242
+ /** Volume traded. */
243
+ vlm: string;
244
+ /** Volume traded through referrals. */
245
+ referralVlm: string;
246
+ /** Timestamp when the rewards were earned (in ms since epoch). */
247
+ time: number;
248
+ }[];
249
+ }
250
+ /** User's funding ledger update. */
251
+ export interface UserFundingUpdate {
252
+ /** Timestamp of the update (in ms since epoch). */
253
+ time: number;
254
+ /** L1 transaction hash. */
255
+ hash: Hex;
256
+ /** Details of the update. */
257
+ delta: FundingUpdate;
258
+ }
259
+ /** User's non-funding ledger update. */
260
+ export interface UserNonFundingLedgerUpdate {
261
+ /** Timestamp of the update (in ms since epoch). */
262
+ time: number;
263
+ /** L1 transaction hash. */
264
+ hash: Hex;
265
+ /** Details of the update. */
266
+ delta: AccountClassTransferUpdate | DepositUpdate | InternalTransferUpdate | LiquidationUpdate | RewardsClaimUpdate | SpotTransferUpdate | SubAccountTransferUpdate | VaultCreateUpdate | VaultDepositUpdate | VaultDistributionUpdate | VaultWithdrawUpdate | WithdrawUpdate;
267
+ }
268
+ /** Transfer between spot and perpetual accounts. */
269
+ export interface AccountClassTransferUpdate {
270
+ /** Type of update. */
271
+ type: "accountClassTransfer";
272
+ /** Amount. */
273
+ usdc: string;
274
+ /** Whether the transfer is to the perpetual account. */
275
+ toPerp: boolean;
276
+ }
277
+ /** Deposit to account. */
278
+ export interface DepositUpdate {
279
+ /** Type of update. */
280
+ type: "deposit";
281
+ /** Amount. */
282
+ usdc: string;
283
+ }
284
+ /** Internal transfer between accounts. */
285
+ export interface InternalTransferUpdate {
286
+ /** Type of update. */
287
+ type: "internalTransfer";
288
+ /** Amount. */
289
+ usdc: string;
290
+ /** Address of the user initiating the transfer. */
291
+ user: Hex;
292
+ /** Destination address. */
293
+ destination: Hex;
294
+ /** Fee. */
295
+ fee: string;
296
+ }
297
+ /** Update representing a liquidation event. */
298
+ export interface LiquidationUpdate {
299
+ /** Type of update. */
300
+ type: "liquidation";
301
+ /** Total notional value of liquidated positions. */
302
+ liquidatedNtlPos: string;
303
+ /** Account value at the time of liquidation. */
304
+ accountValue: string;
305
+ /** Type of leverage used for the liquidated positions. */
306
+ leverageType: "Cross" | "Isolated";
307
+ /** Details of individual positions that were liquidated. */
308
+ liquidatedPositions: {
309
+ /** Asset symbol of the liquidated position. */
310
+ coin: string;
311
+ /** Signed position size that was liquidated. */
312
+ szi: string;
313
+ }[];
314
+ }
315
+ /** Funding update. */
316
+ export interface FundingUpdate {
317
+ /** Type of update. */
318
+ type: "funding";
319
+ /** Asset symbol. */
320
+ coin: string;
321
+ /** Amount. */
322
+ usdc: string;
323
+ /** Signed position size. */
324
+ szi: string;
325
+ /** Funding rate. */
326
+ fundingRate: string;
327
+ /** Number of samples. */
328
+ nSamples: number | null;
329
+ }
330
+ /** Rewards claim update. */
331
+ export interface RewardsClaimUpdate {
332
+ /** Type of update. */
333
+ type: "rewardsClaim";
334
+ /** Amount of rewards claimed. */
335
+ amount: string;
336
+ }
337
+ /** Spot transfer between accounts. */
338
+ export interface SpotTransferUpdate {
339
+ /** Type of update. */
340
+ type: "spotTransfer";
341
+ /** Token. */
342
+ token: string;
343
+ /** Amount. */
344
+ amount: string;
345
+ /** Equivalent USDC value of the amount. */
346
+ usdcValue: string;
347
+ /** Address of the user initiating the transfer. */
348
+ user: Hex;
349
+ /** Destination address. */
350
+ destination: Hex;
351
+ /** Fee. */
352
+ fee: string;
353
+ }
354
+ /** Transfer between sub-accounts. */
355
+ export interface SubAccountTransferUpdate {
356
+ /** Type of update. */
357
+ type: "subAccountTransfer";
358
+ /** Amount. */
359
+ usdc: string;
360
+ /** Address of the user initiating the transfer. */
361
+ user: Hex;
362
+ /** Destination address. */
363
+ destination: Hex;
364
+ }
365
+ /** Creating a vault. */
366
+ export interface VaultCreateUpdate {
367
+ /** Type of update. */
368
+ type: "vaultCreate";
369
+ /** Address of the created vault. */
370
+ vault: Hex;
371
+ /** Initial amount allocated. */
372
+ usdc: string;
373
+ /** Fee for creating the vault. */
374
+ fee: string;
375
+ }
376
+ /** Deposit to a vault. */
377
+ export interface VaultDepositUpdate {
378
+ /** Type of update. */
379
+ type: "vaultDeposit";
380
+ /** Address of the vault receiving funds. */
381
+ vault: Hex;
382
+ /** Amount deposited. */
383
+ usdc: string;
384
+ }
385
+ /** Distribution event from a vault. */
386
+ export interface VaultDistributionUpdate {
387
+ /** Type of update. */
388
+ type: "vaultDistribution";
389
+ /** Address of the vault distributing funds. */
390
+ vault: Hex;
391
+ /** Amount. */
392
+ usdc: string;
393
+ }
394
+ /** Withdrawal from a vault. */
395
+ export interface VaultWithdrawUpdate {
396
+ /** Type of update. */
397
+ type: "vaultWithdraw";
398
+ /** Address of the vault. */
399
+ vault: Hex;
400
+ /** Address of the user withdrawing funds. */
401
+ user: Hex;
402
+ /** Amount requested for withdrawal in USD. */
403
+ requestedUsd: string;
404
+ /** Commission charged for the withdrawal. */
405
+ commission: string;
406
+ /** Cost associated with closing positions. */
407
+ closingCost: string;
408
+ /** Basis value for the withdrawal calculation. */
409
+ basis: string;
410
+ /** Final amount withdrawn after deducting fees and costs. */
411
+ netWithdrawnUsd: string;
412
+ }
413
+ /** Withdrawal from account. */
414
+ export interface WithdrawUpdate {
415
+ /** Type of update. */
416
+ type: "withdraw";
417
+ /** Amount. */
418
+ usdc: string;
419
+ /** Unique request identifier. */
420
+ nonce: number;
421
+ /** Fee. */
422
+ fee: string;
423
+ }
424
+ //# sourceMappingURL=accounts.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"accounts.d.ts","sourceRoot":"","sources":["../../../../src/src/types/info/accounts.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1 @@
1
+ export {};