@helium/blockchain-api 0.3.13 → 0.11.11

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 (50) hide show
  1. package/dist/chunk-2SBYC2AH.js +466 -0
  2. package/dist/chunk-4CY5D37F.js +176 -0
  3. package/dist/chunk-4RVSLJOU.js +9 -0
  4. package/dist/chunk-5ZPW3MRC.js +53 -0
  5. package/dist/chunk-6EPXJJY5.js +60 -0
  6. package/dist/chunk-6LMSAIIW.js +230 -0
  7. package/dist/chunk-7CTJX35S.js +16 -0
  8. package/dist/chunk-7R4XQ5SN.js +116 -0
  9. package/dist/chunk-KTADG6LO.js +1 -0
  10. package/dist/chunk-LHKDTWB2.js +177 -0
  11. package/dist/chunk-MSIA3ZUI.js +36 -0
  12. package/dist/chunk-NBOSJXWK.js +50 -0
  13. package/dist/chunk-RD5LUTM5.js +97 -0
  14. package/dist/chunk-T7OKPHTD.js +68 -0
  15. package/dist/chunk-TEWZC6CW.js +1 -0
  16. package/dist/chunk-YVB4ENKX.js +119 -0
  17. package/dist/contracts.d.ts +8671 -0
  18. package/dist/contracts.js +14 -0
  19. package/dist/errors.d.ts +69 -0
  20. package/dist/errors.js +2 -0
  21. package/dist/index.d.ts +16 -8128
  22. package/dist/index.js +16 -1597
  23. package/dist/schemas/common.d.ts +219 -0
  24. package/dist/schemas/common.js +1 -0
  25. package/dist/schemas/fiat.d.ts +175 -0
  26. package/dist/schemas/fiat.js +3 -0
  27. package/dist/schemas/governance.d.ts +470 -0
  28. package/dist/schemas/governance.js +2 -0
  29. package/dist/schemas/health.d.ts +9 -0
  30. package/dist/schemas/health.js +1 -0
  31. package/dist/schemas/hotspots.d.ts +540 -0
  32. package/dist/schemas/hotspots.js +2 -0
  33. package/dist/schemas/migration.d.ts +145 -0
  34. package/dist/schemas/migration.js +3 -0
  35. package/dist/schemas/reward-contract.d.ts +209 -0
  36. package/dist/schemas/reward-contract.js +2 -0
  37. package/dist/schemas/swap.d.ts +95 -0
  38. package/dist/schemas/swap.js +2 -0
  39. package/dist/schemas/tokens.d.ts +94 -0
  40. package/dist/schemas/tokens.js +2 -0
  41. package/dist/schemas/transactions.d.ts +200 -0
  42. package/dist/schemas/transactions.js +2 -0
  43. package/dist/schemas/webhooks.d.ts +17 -0
  44. package/dist/schemas/webhooks.js +1 -0
  45. package/dist/schemas/welcome-packs.d.ts +305 -0
  46. package/dist/schemas/welcome-packs.js +3 -0
  47. package/dist/schemas.d.ts +12 -0
  48. package/dist/schemas.js +12 -0
  49. package/package.json +31 -9
  50. package/README.md +0 -78
@@ -0,0 +1,470 @@
1
+ import { z } from 'zod';
2
+
3
+ declare const LockupKindSchema: z.ZodEnum<{
4
+ cliff: "cliff";
5
+ constant: "constant";
6
+ }>;
7
+ declare const CreatePositionInputSchema: z.ZodObject<{
8
+ walletAddress: z.ZodString;
9
+ tokenAmount: z.ZodObject<{
10
+ amount: z.ZodString;
11
+ mint: z.ZodString;
12
+ }, z.core.$strip>;
13
+ lockupKind: z.ZodEnum<{
14
+ cliff: "cliff";
15
+ constant: "constant";
16
+ }>;
17
+ lockupPeriodsInDays: z.ZodNumber;
18
+ subDaoMint: z.ZodOptional<z.ZodString>;
19
+ automationEnabled: z.ZodOptional<z.ZodBoolean>;
20
+ }, z.core.$strip>;
21
+ declare const ClosePositionInputSchema: z.ZodObject<{
22
+ walletAddress: z.ZodString;
23
+ positionMint: z.ZodString;
24
+ }, z.core.$strip>;
25
+ declare const ExtendPositionInputSchema: z.ZodObject<{
26
+ walletAddress: z.ZodString;
27
+ positionMint: z.ZodString;
28
+ lockupPeriodsInDays: z.ZodNumber;
29
+ }, z.core.$strip>;
30
+ declare const FlipLockupKindInputSchema: z.ZodObject<{
31
+ walletAddress: z.ZodString;
32
+ positionMint: z.ZodString;
33
+ }, z.core.$strip>;
34
+ declare const ResetLockupInputSchema: z.ZodObject<{
35
+ walletAddress: z.ZodString;
36
+ positionMint: z.ZodString;
37
+ lockupKind: z.ZodEnum<{
38
+ cliff: "cliff";
39
+ constant: "constant";
40
+ }>;
41
+ lockupPeriodsInDays: z.ZodNumber;
42
+ }, z.core.$strip>;
43
+ declare const SplitPositionInputSchema: z.ZodObject<{
44
+ walletAddress: z.ZodString;
45
+ positionMint: z.ZodString;
46
+ amount: z.ZodString;
47
+ lockupKind: z.ZodEnum<{
48
+ cliff: "cliff";
49
+ constant: "constant";
50
+ }>;
51
+ lockupPeriodsInDays: z.ZodNumber;
52
+ }, z.core.$strip>;
53
+ declare const TransferPositionInputSchema: z.ZodObject<{
54
+ walletAddress: z.ZodString;
55
+ positionMint: z.ZodString;
56
+ targetPositionMint: z.ZodString;
57
+ amount: z.ZodString;
58
+ }, z.core.$strip>;
59
+ declare const DelegatePositionInputSchema: z.ZodObject<{
60
+ walletAddress: z.ZodString;
61
+ positionMints: z.ZodArray<z.ZodString>;
62
+ subDaoMint: z.ZodString;
63
+ automationEnabled: z.ZodOptional<z.ZodBoolean>;
64
+ }, z.core.$strip>;
65
+ declare const ExtendDelegationInputSchema: z.ZodObject<{
66
+ walletAddress: z.ZodString;
67
+ positionMint: z.ZodString;
68
+ }, z.core.$strip>;
69
+ declare const UndelegateInputSchema: z.ZodObject<{
70
+ walletAddress: z.ZodString;
71
+ positionMint: z.ZodString;
72
+ }, z.core.$strip>;
73
+ declare const ClaimDelegationRewardsInputSchema: z.ZodObject<{
74
+ walletAddress: z.ZodString;
75
+ positionMints: z.ZodArray<z.ZodString>;
76
+ }, z.core.$strip>;
77
+ declare const VoteInputSchema: z.ZodObject<{
78
+ walletAddress: z.ZodString;
79
+ proposalKey: z.ZodString;
80
+ positionMints: z.ZodArray<z.ZodString>;
81
+ choice: z.ZodNumber;
82
+ }, z.core.$strip>;
83
+ declare const RelinquishVoteInputSchema: z.ZodObject<{
84
+ walletAddress: z.ZodString;
85
+ proposalKey: z.ZodString;
86
+ positionMints: z.ZodArray<z.ZodString>;
87
+ choice: z.ZodNumber;
88
+ }, z.core.$strip>;
89
+ declare const RelinquishPositionVotesInputSchema: z.ZodObject<{
90
+ walletAddress: z.ZodString;
91
+ positionMint: z.ZodString;
92
+ organization: z.ZodString;
93
+ }, z.core.$strip>;
94
+ declare const AssignProxiesInputSchema: z.ZodObject<{
95
+ walletAddress: z.ZodString;
96
+ positionMints: z.ZodArray<z.ZodString>;
97
+ proxyKey: z.ZodString;
98
+ expirationTime: z.ZodNumber;
99
+ }, z.core.$strip>;
100
+ declare const UnassignProxiesInputSchema: z.ZodObject<{
101
+ walletAddress: z.ZodString;
102
+ proxyKey: z.ZodString;
103
+ positionMints: z.ZodArray<z.ZodString>;
104
+ }, z.core.$strip>;
105
+ declare const CreatePositionResponseSchema: z.ZodObject<{
106
+ transactionData: z.ZodObject<{
107
+ transactions: z.ZodArray<z.ZodObject<{
108
+ serializedTransaction: z.ZodString;
109
+ metadata: z.ZodOptional<z.ZodObject<{
110
+ type: z.ZodString;
111
+ description: z.ZodString;
112
+ positionMint: z.ZodOptional<z.ZodString>;
113
+ }, z.core.$strip>>;
114
+ }, z.core.$strip>>;
115
+ parallel: z.ZodBoolean;
116
+ tag: z.ZodOptional<z.ZodString>;
117
+ }, z.core.$strip>;
118
+ estimatedSolFee: z.ZodObject<{
119
+ amount: z.ZodString;
120
+ decimals: z.ZodNumber;
121
+ uiAmount: z.ZodNullable<z.ZodNumber>;
122
+ uiAmountString: z.ZodString;
123
+ mint: z.ZodString;
124
+ }, z.core.$strip>;
125
+ }, z.core.$strip>;
126
+ declare const ClosePositionResponseSchema: z.ZodObject<{
127
+ transactionData: z.ZodObject<{
128
+ transactions: z.ZodArray<z.ZodObject<{
129
+ serializedTransaction: z.ZodString;
130
+ metadata: z.ZodOptional<z.ZodObject<{
131
+ type: z.ZodString;
132
+ description: z.ZodString;
133
+ }, z.core.$catchall<z.ZodUnknown>>>;
134
+ }, z.core.$strip>>;
135
+ parallel: z.ZodBoolean;
136
+ tag: z.ZodOptional<z.ZodString>;
137
+ }, z.core.$strip>;
138
+ estimatedSolFee: z.ZodObject<{
139
+ amount: z.ZodString;
140
+ decimals: z.ZodNumber;
141
+ uiAmount: z.ZodNullable<z.ZodNumber>;
142
+ uiAmountString: z.ZodString;
143
+ mint: z.ZodString;
144
+ }, z.core.$strip>;
145
+ }, z.core.$strip>;
146
+ declare const ExtendPositionResponseSchema: z.ZodObject<{
147
+ transactionData: z.ZodObject<{
148
+ transactions: z.ZodArray<z.ZodObject<{
149
+ serializedTransaction: z.ZodString;
150
+ metadata: z.ZodOptional<z.ZodObject<{
151
+ type: z.ZodString;
152
+ description: z.ZodString;
153
+ }, z.core.$catchall<z.ZodUnknown>>>;
154
+ }, z.core.$strip>>;
155
+ parallel: z.ZodBoolean;
156
+ tag: z.ZodOptional<z.ZodString>;
157
+ }, z.core.$strip>;
158
+ estimatedSolFee: z.ZodObject<{
159
+ amount: z.ZodString;
160
+ decimals: z.ZodNumber;
161
+ uiAmount: z.ZodNullable<z.ZodNumber>;
162
+ uiAmountString: z.ZodString;
163
+ mint: z.ZodString;
164
+ }, z.core.$strip>;
165
+ }, z.core.$strip>;
166
+ declare const FlipLockupKindResponseSchema: z.ZodObject<{
167
+ transactionData: z.ZodObject<{
168
+ transactions: z.ZodArray<z.ZodObject<{
169
+ serializedTransaction: z.ZodString;
170
+ metadata: z.ZodOptional<z.ZodObject<{
171
+ type: z.ZodString;
172
+ description: z.ZodString;
173
+ }, z.core.$catchall<z.ZodUnknown>>>;
174
+ }, z.core.$strip>>;
175
+ parallel: z.ZodBoolean;
176
+ tag: z.ZodOptional<z.ZodString>;
177
+ }, z.core.$strip>;
178
+ estimatedSolFee: z.ZodObject<{
179
+ amount: z.ZodString;
180
+ decimals: z.ZodNumber;
181
+ uiAmount: z.ZodNullable<z.ZodNumber>;
182
+ uiAmountString: z.ZodString;
183
+ mint: z.ZodString;
184
+ }, z.core.$strip>;
185
+ }, z.core.$strip>;
186
+ declare const ResetLockupResponseSchema: z.ZodObject<{
187
+ transactionData: z.ZodObject<{
188
+ transactions: z.ZodArray<z.ZodObject<{
189
+ serializedTransaction: z.ZodString;
190
+ metadata: z.ZodOptional<z.ZodObject<{
191
+ type: z.ZodString;
192
+ description: z.ZodString;
193
+ }, z.core.$catchall<z.ZodUnknown>>>;
194
+ }, z.core.$strip>>;
195
+ parallel: z.ZodBoolean;
196
+ tag: z.ZodOptional<z.ZodString>;
197
+ }, z.core.$strip>;
198
+ estimatedSolFee: z.ZodObject<{
199
+ amount: z.ZodString;
200
+ decimals: z.ZodNumber;
201
+ uiAmount: z.ZodNullable<z.ZodNumber>;
202
+ uiAmountString: z.ZodString;
203
+ mint: z.ZodString;
204
+ }, z.core.$strip>;
205
+ }, z.core.$strip>;
206
+ declare const SplitPositionResponseSchema: z.ZodObject<{
207
+ transactionData: z.ZodObject<{
208
+ transactions: z.ZodArray<z.ZodObject<{
209
+ serializedTransaction: z.ZodString;
210
+ metadata: z.ZodOptional<z.ZodObject<{
211
+ type: z.ZodString;
212
+ description: z.ZodString;
213
+ newPositionMint: z.ZodOptional<z.ZodString>;
214
+ }, z.core.$strip>>;
215
+ }, z.core.$strip>>;
216
+ parallel: z.ZodBoolean;
217
+ tag: z.ZodOptional<z.ZodString>;
218
+ }, z.core.$strip>;
219
+ estimatedSolFee: z.ZodObject<{
220
+ amount: z.ZodString;
221
+ decimals: z.ZodNumber;
222
+ uiAmount: z.ZodNullable<z.ZodNumber>;
223
+ uiAmountString: z.ZodString;
224
+ mint: z.ZodString;
225
+ }, z.core.$strip>;
226
+ }, z.core.$strip>;
227
+ declare const TransferPositionResponseSchema: z.ZodObject<{
228
+ transactionData: z.ZodObject<{
229
+ transactions: z.ZodArray<z.ZodObject<{
230
+ serializedTransaction: z.ZodString;
231
+ metadata: z.ZodOptional<z.ZodObject<{
232
+ type: z.ZodString;
233
+ description: z.ZodString;
234
+ }, z.core.$catchall<z.ZodUnknown>>>;
235
+ }, z.core.$strip>>;
236
+ parallel: z.ZodBoolean;
237
+ tag: z.ZodOptional<z.ZodString>;
238
+ }, z.core.$strip>;
239
+ estimatedSolFee: z.ZodObject<{
240
+ amount: z.ZodString;
241
+ decimals: z.ZodNumber;
242
+ uiAmount: z.ZodNullable<z.ZodNumber>;
243
+ uiAmountString: z.ZodString;
244
+ mint: z.ZodString;
245
+ }, z.core.$strip>;
246
+ }, z.core.$strip>;
247
+ declare const ExtendDelegationResponseSchema: z.ZodObject<{
248
+ transactionData: z.ZodObject<{
249
+ transactions: z.ZodArray<z.ZodObject<{
250
+ serializedTransaction: z.ZodString;
251
+ metadata: z.ZodOptional<z.ZodObject<{
252
+ type: z.ZodString;
253
+ description: z.ZodString;
254
+ }, z.core.$catchall<z.ZodUnknown>>>;
255
+ }, z.core.$strip>>;
256
+ parallel: z.ZodBoolean;
257
+ tag: z.ZodOptional<z.ZodString>;
258
+ }, z.core.$strip>;
259
+ estimatedSolFee: z.ZodObject<{
260
+ amount: z.ZodString;
261
+ decimals: z.ZodNumber;
262
+ uiAmount: z.ZodNullable<z.ZodNumber>;
263
+ uiAmountString: z.ZodString;
264
+ mint: z.ZodString;
265
+ }, z.core.$strip>;
266
+ }, z.core.$strip>;
267
+ declare const DelegatePositionsResponseSchema: z.ZodObject<{
268
+ transactionData: z.ZodObject<{
269
+ transactions: z.ZodArray<z.ZodObject<{
270
+ serializedTransaction: z.ZodString;
271
+ metadata: z.ZodOptional<z.ZodObject<{
272
+ type: z.ZodString;
273
+ description: z.ZodString;
274
+ }, z.core.$catchall<z.ZodUnknown>>>;
275
+ }, z.core.$strip>>;
276
+ parallel: z.ZodBoolean;
277
+ tag: z.ZodOptional<z.ZodString>;
278
+ }, z.core.$strip>;
279
+ estimatedSolFee: z.ZodObject<{
280
+ amount: z.ZodString;
281
+ decimals: z.ZodNumber;
282
+ uiAmount: z.ZodNullable<z.ZodNumber>;
283
+ uiAmountString: z.ZodString;
284
+ mint: z.ZodString;
285
+ }, z.core.$strip>;
286
+ hasMore: z.ZodBoolean;
287
+ }, z.core.$strip>;
288
+ declare const ClaimDelegationRewardsResponseSchema: z.ZodObject<{
289
+ transactionData: z.ZodObject<{
290
+ transactions: z.ZodArray<z.ZodObject<{
291
+ serializedTransaction: z.ZodString;
292
+ metadata: z.ZodOptional<z.ZodObject<{
293
+ type: z.ZodString;
294
+ description: z.ZodString;
295
+ }, z.core.$catchall<z.ZodUnknown>>>;
296
+ }, z.core.$strip>>;
297
+ parallel: z.ZodBoolean;
298
+ tag: z.ZodOptional<z.ZodString>;
299
+ }, z.core.$strip>;
300
+ estimatedSolFee: z.ZodObject<{
301
+ amount: z.ZodString;
302
+ decimals: z.ZodNumber;
303
+ uiAmount: z.ZodNullable<z.ZodNumber>;
304
+ uiAmountString: z.ZodString;
305
+ mint: z.ZodString;
306
+ }, z.core.$strip>;
307
+ hasMore: z.ZodBoolean;
308
+ }, z.core.$strip>;
309
+ declare const UndelegatePositionResponseSchema: z.ZodObject<{
310
+ transactionData: z.ZodObject<{
311
+ transactions: z.ZodArray<z.ZodObject<{
312
+ serializedTransaction: z.ZodString;
313
+ metadata: z.ZodOptional<z.ZodObject<{
314
+ type: z.ZodString;
315
+ description: z.ZodString;
316
+ }, z.core.$catchall<z.ZodUnknown>>>;
317
+ }, z.core.$strip>>;
318
+ parallel: z.ZodBoolean;
319
+ tag: z.ZodOptional<z.ZodString>;
320
+ }, z.core.$strip>;
321
+ estimatedSolFee: z.ZodObject<{
322
+ amount: z.ZodString;
323
+ decimals: z.ZodNumber;
324
+ uiAmount: z.ZodNullable<z.ZodNumber>;
325
+ uiAmountString: z.ZodString;
326
+ mint: z.ZodString;
327
+ }, z.core.$strip>;
328
+ hasMore: z.ZodBoolean;
329
+ }, z.core.$strip>;
330
+ declare const VoteResponseSchema: z.ZodObject<{
331
+ transactionData: z.ZodObject<{
332
+ transactions: z.ZodArray<z.ZodObject<{
333
+ serializedTransaction: z.ZodString;
334
+ metadata: z.ZodOptional<z.ZodObject<{
335
+ type: z.ZodString;
336
+ description: z.ZodString;
337
+ }, z.core.$catchall<z.ZodUnknown>>>;
338
+ }, z.core.$strip>>;
339
+ parallel: z.ZodBoolean;
340
+ tag: z.ZodOptional<z.ZodString>;
341
+ }, z.core.$strip>;
342
+ estimatedSolFee: z.ZodObject<{
343
+ amount: z.ZodString;
344
+ decimals: z.ZodNumber;
345
+ uiAmount: z.ZodNullable<z.ZodNumber>;
346
+ uiAmountString: z.ZodString;
347
+ mint: z.ZodString;
348
+ }, z.core.$strip>;
349
+ hasMore: z.ZodBoolean;
350
+ }, z.core.$strip>;
351
+ declare const RelinquishVoteResponseSchema: z.ZodObject<{
352
+ transactionData: z.ZodObject<{
353
+ transactions: z.ZodArray<z.ZodObject<{
354
+ serializedTransaction: z.ZodString;
355
+ metadata: z.ZodOptional<z.ZodObject<{
356
+ type: z.ZodString;
357
+ description: z.ZodString;
358
+ }, z.core.$catchall<z.ZodUnknown>>>;
359
+ }, z.core.$strip>>;
360
+ parallel: z.ZodBoolean;
361
+ tag: z.ZodOptional<z.ZodString>;
362
+ }, z.core.$strip>;
363
+ estimatedSolFee: z.ZodObject<{
364
+ amount: z.ZodString;
365
+ decimals: z.ZodNumber;
366
+ uiAmount: z.ZodNullable<z.ZodNumber>;
367
+ uiAmountString: z.ZodString;
368
+ mint: z.ZodString;
369
+ }, z.core.$strip>;
370
+ hasMore: z.ZodBoolean;
371
+ }, z.core.$strip>;
372
+ declare const RelinquishPositionVotesResponseSchema: z.ZodObject<{
373
+ transactionData: z.ZodObject<{
374
+ transactions: z.ZodArray<z.ZodObject<{
375
+ serializedTransaction: z.ZodString;
376
+ metadata: z.ZodOptional<z.ZodObject<{
377
+ type: z.ZodString;
378
+ description: z.ZodString;
379
+ votesRelinquished: z.ZodOptional<z.ZodNumber>;
380
+ }, z.core.$strip>>;
381
+ }, z.core.$strip>>;
382
+ parallel: z.ZodBoolean;
383
+ tag: z.ZodOptional<z.ZodString>;
384
+ }, z.core.$strip>;
385
+ estimatedSolFee: z.ZodObject<{
386
+ amount: z.ZodString;
387
+ decimals: z.ZodNumber;
388
+ uiAmount: z.ZodNullable<z.ZodNumber>;
389
+ uiAmountString: z.ZodString;
390
+ mint: z.ZodString;
391
+ }, z.core.$strip>;
392
+ hasMore: z.ZodBoolean;
393
+ }, z.core.$strip>;
394
+ declare const AssignProxiesResponseSchema: z.ZodObject<{
395
+ transactionData: z.ZodObject<{
396
+ transactions: z.ZodArray<z.ZodObject<{
397
+ serializedTransaction: z.ZodString;
398
+ metadata: z.ZodOptional<z.ZodObject<{
399
+ type: z.ZodString;
400
+ description: z.ZodString;
401
+ }, z.core.$catchall<z.ZodUnknown>>>;
402
+ }, z.core.$strip>>;
403
+ parallel: z.ZodBoolean;
404
+ tag: z.ZodOptional<z.ZodString>;
405
+ }, z.core.$strip>;
406
+ estimatedSolFee: z.ZodObject<{
407
+ amount: z.ZodString;
408
+ decimals: z.ZodNumber;
409
+ uiAmount: z.ZodNullable<z.ZodNumber>;
410
+ uiAmountString: z.ZodString;
411
+ mint: z.ZodString;
412
+ }, z.core.$strip>;
413
+ hasMore: z.ZodBoolean;
414
+ }, z.core.$strip>;
415
+ declare const UnassignProxiesResponseSchema: z.ZodObject<{
416
+ transactionData: z.ZodObject<{
417
+ transactions: z.ZodArray<z.ZodObject<{
418
+ serializedTransaction: z.ZodString;
419
+ metadata: z.ZodOptional<z.ZodObject<{
420
+ type: z.ZodString;
421
+ description: z.ZodString;
422
+ }, z.core.$catchall<z.ZodUnknown>>>;
423
+ }, z.core.$strip>>;
424
+ parallel: z.ZodBoolean;
425
+ tag: z.ZodOptional<z.ZodString>;
426
+ }, z.core.$strip>;
427
+ estimatedSolFee: z.ZodObject<{
428
+ amount: z.ZodString;
429
+ decimals: z.ZodNumber;
430
+ uiAmount: z.ZodNullable<z.ZodNumber>;
431
+ uiAmountString: z.ZodString;
432
+ mint: z.ZodString;
433
+ }, z.core.$strip>;
434
+ hasMore: z.ZodBoolean;
435
+ }, z.core.$strip>;
436
+ type LockupKind = z.infer<typeof LockupKindSchema>;
437
+ type CreatePositionInput = z.infer<typeof CreatePositionInputSchema>;
438
+ type ClosePositionInput = z.infer<typeof ClosePositionInputSchema>;
439
+ type ExtendPositionInput = z.infer<typeof ExtendPositionInputSchema>;
440
+ type FlipLockupKindInput = z.infer<typeof FlipLockupKindInputSchema>;
441
+ type ResetLockupInput = z.infer<typeof ResetLockupInputSchema>;
442
+ type SplitPositionInput = z.infer<typeof SplitPositionInputSchema>;
443
+ type TransferPositionInput = z.infer<typeof TransferPositionInputSchema>;
444
+ type DelegatePositionInput = z.infer<typeof DelegatePositionInputSchema>;
445
+ type ExtendDelegationInput = z.infer<typeof ExtendDelegationInputSchema>;
446
+ type UndelegateInput = z.infer<typeof UndelegateInputSchema>;
447
+ type ClaimDelegationRewardsInput = z.infer<typeof ClaimDelegationRewardsInputSchema>;
448
+ type VoteInput = z.infer<typeof VoteInputSchema>;
449
+ type RelinquishVoteInput = z.infer<typeof RelinquishVoteInputSchema>;
450
+ type RelinquishPositionVotesInput = z.infer<typeof RelinquishPositionVotesInputSchema>;
451
+ type AssignProxiesInput = z.infer<typeof AssignProxiesInputSchema>;
452
+ type UnassignProxiesInput = z.infer<typeof UnassignProxiesInputSchema>;
453
+ type CreatePositionResponse = z.infer<typeof CreatePositionResponseSchema>;
454
+ type ClosePositionResponse = z.infer<typeof ClosePositionResponseSchema>;
455
+ type ExtendPositionResponse = z.infer<typeof ExtendPositionResponseSchema>;
456
+ type FlipLockupKindResponse = z.infer<typeof FlipLockupKindResponseSchema>;
457
+ type ResetLockupResponse = z.infer<typeof ResetLockupResponseSchema>;
458
+ type SplitPositionResponse = z.infer<typeof SplitPositionResponseSchema>;
459
+ type TransferPositionResponse = z.infer<typeof TransferPositionResponseSchema>;
460
+ type DelegatePositionsResponse = z.infer<typeof DelegatePositionsResponseSchema>;
461
+ type ExtendDelegationResponse = z.infer<typeof ExtendDelegationResponseSchema>;
462
+ type UndelegatePositionResponse = z.infer<typeof UndelegatePositionResponseSchema>;
463
+ type ClaimDelegationRewardsResponse = z.infer<typeof ClaimDelegationRewardsResponseSchema>;
464
+ type VoteResponse = z.infer<typeof VoteResponseSchema>;
465
+ type RelinquishVoteResponse = z.infer<typeof RelinquishVoteResponseSchema>;
466
+ type RelinquishPositionVotesResponse = z.infer<typeof RelinquishPositionVotesResponseSchema>;
467
+ type AssignProxiesResponse = z.infer<typeof AssignProxiesResponseSchema>;
468
+ type UnassignProxiesResponse = z.infer<typeof UnassignProxiesResponseSchema>;
469
+
470
+ export { type AssignProxiesInput, AssignProxiesInputSchema, type AssignProxiesResponse, AssignProxiesResponseSchema, type ClaimDelegationRewardsInput, ClaimDelegationRewardsInputSchema, type ClaimDelegationRewardsResponse, ClaimDelegationRewardsResponseSchema, type ClosePositionInput, ClosePositionInputSchema, type ClosePositionResponse, ClosePositionResponseSchema, type CreatePositionInput, CreatePositionInputSchema, type CreatePositionResponse, CreatePositionResponseSchema, type DelegatePositionInput, DelegatePositionInputSchema, type DelegatePositionsResponse, DelegatePositionsResponseSchema, type ExtendDelegationInput, ExtendDelegationInputSchema, type ExtendDelegationResponse, ExtendDelegationResponseSchema, type ExtendPositionInput, ExtendPositionInputSchema, type ExtendPositionResponse, ExtendPositionResponseSchema, type FlipLockupKindInput, FlipLockupKindInputSchema, type FlipLockupKindResponse, FlipLockupKindResponseSchema, type LockupKind, LockupKindSchema, type RelinquishPositionVotesInput, RelinquishPositionVotesInputSchema, type RelinquishPositionVotesResponse, RelinquishPositionVotesResponseSchema, type RelinquishVoteInput, RelinquishVoteInputSchema, type RelinquishVoteResponse, RelinquishVoteResponseSchema, type ResetLockupInput, ResetLockupInputSchema, type ResetLockupResponse, ResetLockupResponseSchema, type SplitPositionInput, SplitPositionInputSchema, type SplitPositionResponse, SplitPositionResponseSchema, type TransferPositionInput, TransferPositionInputSchema, type TransferPositionResponse, TransferPositionResponseSchema, type UnassignProxiesInput, UnassignProxiesInputSchema, type UnassignProxiesResponse, UnassignProxiesResponseSchema, type UndelegateInput, UndelegateInputSchema, type UndelegatePositionResponse, UndelegatePositionResponseSchema, type VoteInput, VoteInputSchema, type VoteResponse, VoteResponseSchema };
@@ -0,0 +1,2 @@
1
+ export { AssignProxiesInputSchema, AssignProxiesResponseSchema, ClaimDelegationRewardsInputSchema, ClaimDelegationRewardsResponseSchema, ClosePositionInputSchema, ClosePositionResponseSchema, CreatePositionInputSchema, CreatePositionResponseSchema, DelegatePositionInputSchema, DelegatePositionsResponseSchema, ExtendDelegationInputSchema, ExtendDelegationResponseSchema, ExtendPositionInputSchema, ExtendPositionResponseSchema, FlipLockupKindInputSchema, FlipLockupKindResponseSchema, LockupKindSchema, RelinquishPositionVotesInputSchema, RelinquishPositionVotesResponseSchema, RelinquishVoteInputSchema, RelinquishVoteResponseSchema, ResetLockupInputSchema, ResetLockupResponseSchema, SplitPositionInputSchema, SplitPositionResponseSchema, TransferPositionInputSchema, TransferPositionResponseSchema, UnassignProxiesInputSchema, UnassignProxiesResponseSchema, UndelegateInputSchema, UndelegatePositionResponseSchema, VoteInputSchema, VoteResponseSchema } from '../chunk-LHKDTWB2.js';
2
+ import '../chunk-YVB4ENKX.js';
@@ -0,0 +1,9 @@
1
+ import { z } from 'zod';
2
+
3
+ declare const HealthResponseSchema: z.ZodObject<{
4
+ ok: z.ZodBoolean;
5
+ error: z.ZodOptional<z.ZodString>;
6
+ }, z.core.$strip>;
7
+ type HealthResponse = z.infer<typeof HealthResponseSchema>;
8
+
9
+ export { type HealthResponse, HealthResponseSchema };
@@ -0,0 +1 @@
1
+ export { HealthResponseSchema } from '../chunk-4RVSLJOU.js';