@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,540 @@
1
+ import { z } from 'zod';
2
+
3
+ declare const HotspotTypeSchema: z.ZodEnum<{
4
+ iot: "iot";
5
+ mobile: "mobile";
6
+ all: "all";
7
+ }>;
8
+ declare const GetHotspotsInputSchema: z.ZodObject<{
9
+ walletAddress: z.ZodString;
10
+ type: z.ZodOptional<z.ZodEnum<{
11
+ iot: "iot";
12
+ mobile: "mobile";
13
+ all: "all";
14
+ }>>;
15
+ page: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
16
+ limit: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
17
+ }, z.core.$strip>;
18
+ declare const ClaimRewardsInputSchema: z.ZodObject<{
19
+ walletAddress: z.ZodString;
20
+ }, z.core.$strip>;
21
+ declare const GetPendingRewardsInputSchema: z.ZodObject<{
22
+ walletAddress: z.ZodString;
23
+ }, z.core.$strip>;
24
+ declare const GetPendingRewardsOutputSchema: z.ZodObject<{
25
+ pending: z.ZodObject<{
26
+ total: z.ZodObject<{
27
+ amount: z.ZodString;
28
+ decimals: z.ZodNumber;
29
+ uiAmount: z.ZodNullable<z.ZodNumber>;
30
+ uiAmountString: z.ZodString;
31
+ mint: z.ZodString;
32
+ }, z.core.$strip>;
33
+ claimable: z.ZodObject<{
34
+ amount: z.ZodString;
35
+ decimals: z.ZodNumber;
36
+ uiAmount: z.ZodNullable<z.ZodNumber>;
37
+ uiAmountString: z.ZodString;
38
+ mint: z.ZodString;
39
+ }, z.core.$strip>;
40
+ automated: z.ZodObject<{
41
+ amount: z.ZodString;
42
+ decimals: z.ZodNumber;
43
+ uiAmount: z.ZodNullable<z.ZodNumber>;
44
+ uiAmountString: z.ZodString;
45
+ mint: z.ZodString;
46
+ }, z.core.$strip>;
47
+ }, z.core.$strip>;
48
+ byHotspot: z.ZodArray<z.ZodObject<{
49
+ hotspotPubKey: z.ZodString;
50
+ pending: z.ZodObject<{
51
+ total: z.ZodObject<{
52
+ amount: z.ZodString;
53
+ decimals: z.ZodNumber;
54
+ uiAmount: z.ZodNullable<z.ZodNumber>;
55
+ uiAmountString: z.ZodString;
56
+ mint: z.ZodString;
57
+ }, z.core.$strip>;
58
+ claimable: z.ZodObject<{
59
+ amount: z.ZodString;
60
+ decimals: z.ZodNumber;
61
+ uiAmount: z.ZodNullable<z.ZodNumber>;
62
+ uiAmountString: z.ZodString;
63
+ mint: z.ZodString;
64
+ }, z.core.$strip>;
65
+ automated: z.ZodObject<{
66
+ amount: z.ZodString;
67
+ decimals: z.ZodNumber;
68
+ uiAmount: z.ZodNullable<z.ZodNumber>;
69
+ uiAmountString: z.ZodString;
70
+ mint: z.ZodString;
71
+ }, z.core.$strip>;
72
+ }, z.core.$strip>;
73
+ }, z.core.$strip>>;
74
+ }, z.core.$strip>;
75
+ declare const TransferHotspotInputSchema: z.ZodObject<{
76
+ walletAddress: z.ZodString;
77
+ hotspotPubkey: z.ZodString;
78
+ recipient: z.ZodString;
79
+ }, z.core.$strip>;
80
+ declare const UpdateRewardsDestinationInputSchema: z.ZodObject<{
81
+ walletAddress: z.ZodString;
82
+ hotspotPubkey: z.ZodString;
83
+ destination: z.ZodString;
84
+ lazyDistributors: z.ZodArray<z.ZodString>;
85
+ }, z.core.$strip>;
86
+ declare const GetSplitInputSchema: z.ZodObject<{
87
+ walletAddress: z.ZodString;
88
+ hotspotPubkey: z.ZodString;
89
+ }, z.core.$strip>;
90
+ declare const CreateSplitInputSchema: z.ZodObject<{
91
+ walletAddress: z.ZodString;
92
+ hotspotPubkey: z.ZodString;
93
+ rewardsSplit: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
94
+ address: z.ZodString;
95
+ type: z.ZodLiteral<"percentage">;
96
+ amount: z.ZodNumber;
97
+ }, z.core.$strip>, z.ZodObject<{
98
+ address: z.ZodString;
99
+ type: z.ZodLiteral<"fixed">;
100
+ tokenAmount: z.ZodObject<{
101
+ amount: z.ZodString;
102
+ mint: z.ZodString;
103
+ }, z.core.$strip>;
104
+ }, z.core.$strip>], "type">>;
105
+ schedule: z.ZodObject<{
106
+ frequency: z.ZodEnum<{
107
+ daily: "daily";
108
+ weekly: "weekly";
109
+ monthly: "monthly";
110
+ }>;
111
+ time: z.ZodString;
112
+ timezone: z.ZodString;
113
+ dayOfWeek: z.ZodOptional<z.ZodString>;
114
+ dayOfMonth: z.ZodOptional<z.ZodString>;
115
+ }, z.core.$strip>;
116
+ lazyDistributor: z.ZodString;
117
+ }, z.core.$strip>;
118
+ declare const DeleteSplitInputSchema: z.ZodObject<{
119
+ walletAddress: z.ZodString;
120
+ hotspotPubkey: z.ZodString;
121
+ }, z.core.$strip>;
122
+ declare const GetAutomationStatusInputSchema: z.ZodObject<{
123
+ walletAddress: z.ZodString;
124
+ }, z.core.$strip>;
125
+ declare const AutomationScheduleSchema: z.ZodEnum<{
126
+ daily: "daily";
127
+ weekly: "weekly";
128
+ monthly: "monthly";
129
+ }>;
130
+ declare const SetupAutomationInputSchema: z.ZodObject<{
131
+ walletAddress: z.ZodString;
132
+ schedule: z.ZodEnum<{
133
+ daily: "daily";
134
+ weekly: "weekly";
135
+ monthly: "monthly";
136
+ }>;
137
+ duration: z.ZodNumber;
138
+ totalHotspots: z.ZodNumber;
139
+ }, z.core.$strip>;
140
+ declare const FundAutomationInputSchema: z.ZodObject<{
141
+ walletAddress: z.ZodString;
142
+ additionalDuration: z.ZodNumber;
143
+ }, z.core.$strip>;
144
+ declare const GetFundingEstimateInputSchema: z.ZodObject<{
145
+ walletAddress: z.ZodString;
146
+ duration: z.ZodCoercedNumber<unknown>;
147
+ }, z.core.$strip>;
148
+ declare const CloseAutomationInputSchema: z.ZodObject<{
149
+ walletAddress: z.ZodString;
150
+ }, z.core.$strip>;
151
+ declare const DeviceTypeSchema: z.ZodEnum<{
152
+ "iot-gateway": "iot-gateway";
153
+ wifiIndoor: "wifiIndoor";
154
+ wifiOutdoor: "wifiOutdoor";
155
+ wifiDataOnly: "wifiDataOnly";
156
+ cbrs: "cbrs";
157
+ }>;
158
+ declare const OwnershipTypeSchema: z.ZodEnum<{
159
+ all: "all";
160
+ owner: "owner";
161
+ direct: "direct";
162
+ fanout: "fanout";
163
+ }>;
164
+ declare const HotspotSharesSchema: z.ZodObject<{
165
+ fixed: z.ZodOptional<z.ZodString>;
166
+ percentage: z.ZodOptional<z.ZodNumber>;
167
+ }, z.core.$strip>;
168
+ declare const HotspotSchema: z.ZodObject<{
169
+ address: z.ZodString;
170
+ entityKey: z.ZodString;
171
+ name: z.ZodString;
172
+ type: z.ZodEnum<{
173
+ iot: "iot";
174
+ mobile: "mobile";
175
+ all: "all";
176
+ }>;
177
+ deviceType: z.ZodEnum<{
178
+ "iot-gateway": "iot-gateway";
179
+ wifiIndoor: "wifiIndoor";
180
+ wifiOutdoor: "wifiOutdoor";
181
+ wifiDataOnly: "wifiDataOnly";
182
+ cbrs: "cbrs";
183
+ }>;
184
+ city: z.ZodOptional<z.ZodString>;
185
+ state: z.ZodOptional<z.ZodString>;
186
+ country: z.ZodOptional<z.ZodString>;
187
+ asset: z.ZodString;
188
+ isOnline: z.ZodOptional<z.ZodBoolean>;
189
+ owner: z.ZodOptional<z.ZodString>;
190
+ shares: z.ZodOptional<z.ZodObject<{
191
+ fixed: z.ZodOptional<z.ZodString>;
192
+ percentage: z.ZodOptional<z.ZodNumber>;
193
+ }, z.core.$strip>>;
194
+ ownershipType: z.ZodString;
195
+ }, z.core.$strip>;
196
+ declare const HotspotsDataSchema: z.ZodObject<{
197
+ hotspots: z.ZodArray<z.ZodObject<{
198
+ address: z.ZodString;
199
+ entityKey: z.ZodString;
200
+ name: z.ZodString;
201
+ type: z.ZodEnum<{
202
+ iot: "iot";
203
+ mobile: "mobile";
204
+ all: "all";
205
+ }>;
206
+ deviceType: z.ZodEnum<{
207
+ "iot-gateway": "iot-gateway";
208
+ wifiIndoor: "wifiIndoor";
209
+ wifiOutdoor: "wifiOutdoor";
210
+ wifiDataOnly: "wifiDataOnly";
211
+ cbrs: "cbrs";
212
+ }>;
213
+ city: z.ZodOptional<z.ZodString>;
214
+ state: z.ZodOptional<z.ZodString>;
215
+ country: z.ZodOptional<z.ZodString>;
216
+ asset: z.ZodString;
217
+ isOnline: z.ZodOptional<z.ZodBoolean>;
218
+ owner: z.ZodOptional<z.ZodString>;
219
+ shares: z.ZodOptional<z.ZodObject<{
220
+ fixed: z.ZodOptional<z.ZodString>;
221
+ percentage: z.ZodOptional<z.ZodNumber>;
222
+ }, z.core.$strip>>;
223
+ ownershipType: z.ZodString;
224
+ }, z.core.$strip>>;
225
+ total: z.ZodNumber;
226
+ page: z.ZodNumber;
227
+ totalPages: z.ZodNumber;
228
+ }, z.core.$strip>;
229
+ declare const ClaimRewardsOutputSchema: z.ZodObject<{
230
+ transactionData: z.ZodObject<{
231
+ transactions: z.ZodArray<z.ZodObject<{
232
+ serializedTransaction: z.ZodString;
233
+ metadata: z.ZodOptional<z.ZodObject<{
234
+ type: z.ZodString;
235
+ description: z.ZodString;
236
+ }, z.core.$catchall<z.ZodUnknown>>>;
237
+ }, z.core.$strip>>;
238
+ parallel: z.ZodBoolean;
239
+ tag: z.ZodOptional<z.ZodString>;
240
+ }, z.core.$strip>;
241
+ estimatedSolFee: z.ZodObject<{
242
+ amount: z.ZodString;
243
+ decimals: z.ZodNumber;
244
+ uiAmount: z.ZodNullable<z.ZodNumber>;
245
+ uiAmountString: z.ZodString;
246
+ mint: z.ZodString;
247
+ }, z.core.$strip>;
248
+ }, z.core.$strip>;
249
+ declare const TransferHotspotOutputSchema: z.ZodObject<{
250
+ transactionData: z.ZodObject<{
251
+ transactions: z.ZodArray<z.ZodObject<{
252
+ serializedTransaction: z.ZodString;
253
+ metadata: z.ZodOptional<z.ZodObject<{
254
+ type: z.ZodString;
255
+ description: z.ZodString;
256
+ }, z.core.$catchall<z.ZodUnknown>>>;
257
+ }, z.core.$strip>>;
258
+ parallel: z.ZodBoolean;
259
+ tag: z.ZodOptional<z.ZodString>;
260
+ }, z.core.$strip>;
261
+ estimatedSolFee: z.ZodObject<{
262
+ amount: z.ZodString;
263
+ decimals: z.ZodNumber;
264
+ uiAmount: z.ZodNullable<z.ZodNumber>;
265
+ uiAmountString: z.ZodString;
266
+ mint: z.ZodString;
267
+ }, z.core.$strip>;
268
+ }, z.core.$strip>;
269
+ declare const UpdateRewardsDestinationOutputSchema: z.ZodObject<{
270
+ transactionData: z.ZodObject<{
271
+ transactions: z.ZodArray<z.ZodObject<{
272
+ serializedTransaction: z.ZodString;
273
+ metadata: z.ZodOptional<z.ZodObject<{
274
+ type: z.ZodString;
275
+ description: z.ZodString;
276
+ }, z.core.$catchall<z.ZodUnknown>>>;
277
+ }, z.core.$strip>>;
278
+ parallel: z.ZodBoolean;
279
+ tag: z.ZodOptional<z.ZodString>;
280
+ }, z.core.$strip>;
281
+ estimatedSolFee: z.ZodObject<{
282
+ amount: z.ZodString;
283
+ decimals: z.ZodNumber;
284
+ uiAmount: z.ZodNullable<z.ZodNumber>;
285
+ uiAmountString: z.ZodString;
286
+ mint: z.ZodString;
287
+ }, z.core.$strip>;
288
+ }, z.core.$strip>;
289
+ declare const CreateSplitOutputSchema: z.ZodObject<{
290
+ transactionData: z.ZodObject<{
291
+ transactions: z.ZodArray<z.ZodObject<{
292
+ serializedTransaction: z.ZodString;
293
+ metadata: z.ZodOptional<z.ZodObject<{
294
+ type: z.ZodString;
295
+ description: z.ZodString;
296
+ }, z.core.$catchall<z.ZodUnknown>>>;
297
+ }, z.core.$strip>>;
298
+ parallel: z.ZodBoolean;
299
+ tag: z.ZodOptional<z.ZodString>;
300
+ }, z.core.$strip>;
301
+ estimatedSolFee: z.ZodObject<{
302
+ amount: z.ZodString;
303
+ decimals: z.ZodNumber;
304
+ uiAmount: z.ZodNullable<z.ZodNumber>;
305
+ uiAmountString: z.ZodString;
306
+ mint: z.ZodString;
307
+ }, z.core.$strip>;
308
+ }, z.core.$strip>;
309
+ declare const DeleteSplitOutputSchema: 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
+ }, z.core.$strip>;
329
+ declare const SetupAutomationOutputSchema: z.ZodObject<{
330
+ transactionData: z.ZodObject<{
331
+ transactions: z.ZodArray<z.ZodObject<{
332
+ serializedTransaction: z.ZodString;
333
+ metadata: z.ZodOptional<z.ZodObject<{
334
+ type: z.ZodString;
335
+ description: z.ZodString;
336
+ }, z.core.$catchall<z.ZodUnknown>>>;
337
+ }, z.core.$strip>>;
338
+ parallel: z.ZodBoolean;
339
+ tag: z.ZodOptional<z.ZodString>;
340
+ }, z.core.$strip>;
341
+ estimatedSolFee: z.ZodObject<{
342
+ amount: z.ZodString;
343
+ decimals: z.ZodNumber;
344
+ uiAmount: z.ZodNullable<z.ZodNumber>;
345
+ uiAmountString: z.ZodString;
346
+ mint: z.ZodString;
347
+ }, z.core.$strip>;
348
+ }, z.core.$strip>;
349
+ declare const FundAutomationOutputSchema: z.ZodObject<{
350
+ transactionData: z.ZodObject<{
351
+ transactions: z.ZodArray<z.ZodObject<{
352
+ serializedTransaction: z.ZodString;
353
+ metadata: z.ZodOptional<z.ZodObject<{
354
+ type: z.ZodString;
355
+ description: z.ZodString;
356
+ }, z.core.$catchall<z.ZodUnknown>>>;
357
+ }, z.core.$strip>>;
358
+ parallel: z.ZodBoolean;
359
+ tag: z.ZodOptional<z.ZodString>;
360
+ }, z.core.$strip>;
361
+ estimatedSolFee: z.ZodObject<{
362
+ amount: z.ZodString;
363
+ decimals: z.ZodNumber;
364
+ uiAmount: z.ZodNullable<z.ZodNumber>;
365
+ uiAmountString: z.ZodString;
366
+ mint: z.ZodString;
367
+ }, z.core.$strip>;
368
+ }, z.core.$strip>;
369
+ declare const CloseAutomationOutputSchema: z.ZodObject<{
370
+ transactionData: z.ZodObject<{
371
+ transactions: z.ZodArray<z.ZodObject<{
372
+ serializedTransaction: z.ZodString;
373
+ metadata: z.ZodOptional<z.ZodObject<{
374
+ type: z.ZodString;
375
+ description: z.ZodString;
376
+ }, z.core.$catchall<z.ZodUnknown>>>;
377
+ }, z.core.$strip>>;
378
+ parallel: z.ZodBoolean;
379
+ tag: z.ZodOptional<z.ZodString>;
380
+ }, z.core.$strip>;
381
+ estimatedSolFee: z.ZodObject<{
382
+ amount: z.ZodString;
383
+ decimals: z.ZodNumber;
384
+ uiAmount: z.ZodNullable<z.ZodNumber>;
385
+ uiAmountString: z.ZodString;
386
+ mint: z.ZodString;
387
+ }, z.core.$strip>;
388
+ }, z.core.$strip>;
389
+ declare const SplitShareSchema: z.ZodObject<{
390
+ wallet: z.ZodString;
391
+ delegate: z.ZodString;
392
+ fixed: z.ZodObject<{
393
+ amount: z.ZodString;
394
+ decimals: z.ZodNumber;
395
+ uiAmount: z.ZodNullable<z.ZodNumber>;
396
+ uiAmountString: z.ZodString;
397
+ mint: z.ZodString;
398
+ }, z.core.$strip>;
399
+ shares: z.ZodNumber;
400
+ }, z.core.$strip>;
401
+ declare const SplitResponseSchema: z.ZodObject<{
402
+ walletAddress: z.ZodString;
403
+ hotspotPubkey: z.ZodString;
404
+ splitAddress: z.ZodString;
405
+ shares: z.ZodArray<z.ZodObject<{
406
+ wallet: z.ZodString;
407
+ delegate: z.ZodString;
408
+ fixed: z.ZodObject<{
409
+ amount: z.ZodString;
410
+ decimals: z.ZodNumber;
411
+ uiAmount: z.ZodNullable<z.ZodNumber>;
412
+ uiAmountString: z.ZodString;
413
+ mint: z.ZodString;
414
+ }, z.core.$strip>;
415
+ shares: z.ZodNumber;
416
+ }, z.core.$strip>>;
417
+ }, z.core.$strip>;
418
+ declare const AutomationStatusOutputSchema: z.ZodObject<{
419
+ hasExistingAutomation: z.ZodBoolean;
420
+ isOutOfSol: z.ZodBoolean;
421
+ currentSchedule: z.ZodOptional<z.ZodObject<{
422
+ schedule: z.ZodEnum<{
423
+ daily: "daily";
424
+ weekly: "weekly";
425
+ monthly: "monthly";
426
+ }>;
427
+ time: z.ZodString;
428
+ nextRun: z.ZodString;
429
+ }, z.core.$strip>>;
430
+ rentFee: z.ZodNumber;
431
+ recipientFee: z.ZodNumber;
432
+ operationalSol: z.ZodNumber;
433
+ remainingClaims: z.ZodOptional<z.ZodNumber>;
434
+ fundingPeriodInfo: z.ZodOptional<z.ZodObject<{
435
+ periodLength: z.ZodEnum<{
436
+ daily: "daily";
437
+ weekly: "weekly";
438
+ monthly: "monthly";
439
+ }>;
440
+ periodsRemaining: z.ZodNumber;
441
+ cronJobPeriodsRemaining: z.ZodNumber;
442
+ pdaWalletPeriodsRemaining: z.ZodNumber;
443
+ }, z.core.$strip>>;
444
+ cronJobBalance: z.ZodString;
445
+ pdaWalletBalance: z.ZodString;
446
+ }, z.core.$strip>;
447
+ declare const FundingEstimateOutputSchema: z.ZodObject<{
448
+ rentFee: z.ZodNumber;
449
+ cronJobFunding: z.ZodNumber;
450
+ pdaWalletFunding: z.ZodNumber;
451
+ recipientFee: z.ZodNumber;
452
+ operationalSol: z.ZodNumber;
453
+ totalSolNeeded: z.ZodNumber;
454
+ currentCronJobBalance: z.ZodString;
455
+ currentPdaWalletBalance: z.ZodString;
456
+ }, z.core.$strip>;
457
+ declare const UpdateHotspotInfoInputSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
458
+ deviceType: z.ZodLiteral<"iot">;
459
+ entityPubKey: z.ZodString;
460
+ walletAddress: z.ZodString;
461
+ location: z.ZodOptional<z.ZodObject<{
462
+ lat: z.ZodNumber;
463
+ lng: z.ZodNumber;
464
+ }, z.core.$strip>>;
465
+ gain: z.ZodOptional<z.ZodNumber>;
466
+ elevation: z.ZodOptional<z.ZodNumber>;
467
+ azimuth: z.ZodOptional<z.ZodNumber>;
468
+ }, z.core.$strip>, z.ZodObject<{
469
+ deviceType: z.ZodLiteral<"mobile">;
470
+ entityPubKey: z.ZodString;
471
+ walletAddress: z.ZodString;
472
+ location: z.ZodOptional<z.ZodObject<{
473
+ lat: z.ZodNumber;
474
+ lng: z.ZodNumber;
475
+ }, z.core.$strip>>;
476
+ deploymentInfo: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
477
+ type: z.ZodLiteral<"WIFI">;
478
+ antenna: z.ZodOptional<z.ZodNumber>;
479
+ elevation: z.ZodOptional<z.ZodNumber>;
480
+ azimuth: z.ZodOptional<z.ZodNumber>;
481
+ mechanicalDownTilt: z.ZodOptional<z.ZodNumber>;
482
+ electricalDownTilt: z.ZodOptional<z.ZodNumber>;
483
+ serial: z.ZodNullable<z.ZodOptional<z.ZodString>>;
484
+ }, z.core.$strip>, z.ZodObject<{
485
+ type: z.ZodLiteral<"CBRS">;
486
+ radioInfos: z.ZodArray<z.ZodObject<{
487
+ radioId: z.ZodString;
488
+ elevation: z.ZodNumber;
489
+ }, z.core.$strip>>;
490
+ }, z.core.$strip>], "type">>;
491
+ }, z.core.$strip>], "deviceType">;
492
+ declare const UpdateHotspotInfoOutputSchema: z.ZodObject<{
493
+ transactionData: z.ZodObject<{
494
+ transactions: z.ZodArray<z.ZodObject<{
495
+ serializedTransaction: z.ZodString;
496
+ metadata: z.ZodOptional<z.ZodObject<{
497
+ type: z.ZodString;
498
+ description: z.ZodString;
499
+ }, z.core.$catchall<z.ZodUnknown>>>;
500
+ }, z.core.$strip>>;
501
+ parallel: z.ZodBoolean;
502
+ tag: z.ZodOptional<z.ZodString>;
503
+ }, z.core.$strip>;
504
+ estimatedSolFee: z.ZodObject<{
505
+ amount: z.ZodString;
506
+ decimals: z.ZodNumber;
507
+ uiAmount: z.ZodNullable<z.ZodNumber>;
508
+ uiAmountString: z.ZodString;
509
+ mint: z.ZodString;
510
+ }, z.core.$strip>;
511
+ appliedTo: z.ZodObject<{
512
+ iot: z.ZodBoolean;
513
+ mobile: z.ZodBoolean;
514
+ }, z.core.$strip>;
515
+ }, z.core.$strip>;
516
+ type HotspotType = z.infer<typeof HotspotTypeSchema>;
517
+ type DeviceType = z.infer<typeof DeviceTypeSchema>;
518
+ type OwnershipType = z.infer<typeof OwnershipTypeSchema>;
519
+ type Hotspot = z.infer<typeof HotspotSchema>;
520
+ type HotspotsData = z.infer<typeof HotspotsDataSchema>;
521
+ type GetHotspotsInput = z.infer<typeof GetHotspotsInputSchema>;
522
+ type ClaimRewardsInput = z.infer<typeof ClaimRewardsInputSchema>;
523
+ type GetPendingRewardsInput = z.infer<typeof GetPendingRewardsInputSchema>;
524
+ type TransferHotspotInput = z.infer<typeof TransferHotspotInputSchema>;
525
+ type GetPendingRewardsOutput = z.infer<typeof GetPendingRewardsOutputSchema>;
526
+ type UpdateRewardsDestinationInput = z.infer<typeof UpdateRewardsDestinationInputSchema>;
527
+ type GetSplitInput = z.infer<typeof GetSplitInputSchema>;
528
+ type CreateSplitInput = z.infer<typeof CreateSplitInputSchema>;
529
+ type DeleteSplitInput = z.infer<typeof DeleteSplitInputSchema>;
530
+ type SplitShare = z.infer<typeof SplitShareSchema>;
531
+ type SplitResponse = z.infer<typeof SplitResponseSchema>;
532
+ type GetAutomationStatusInput = z.infer<typeof GetAutomationStatusInputSchema>;
533
+ type AutomationStatus = z.infer<typeof AutomationStatusOutputSchema>;
534
+ type SetupAutomationInput = z.infer<typeof SetupAutomationInputSchema>;
535
+ type FundAutomationInput = z.infer<typeof FundAutomationInputSchema>;
536
+ type CloseAutomationInput = z.infer<typeof CloseAutomationInputSchema>;
537
+ type GetFundingEstimateInput = z.infer<typeof GetFundingEstimateInputSchema>;
538
+ type FundingEstimate = z.infer<typeof FundingEstimateOutputSchema>;
539
+
540
+ export { AutomationScheduleSchema, type AutomationStatus, AutomationStatusOutputSchema, type ClaimRewardsInput, ClaimRewardsInputSchema, ClaimRewardsOutputSchema, type CloseAutomationInput, CloseAutomationInputSchema, CloseAutomationOutputSchema, type CreateSplitInput, CreateSplitInputSchema, CreateSplitOutputSchema, type DeleteSplitInput, DeleteSplitInputSchema, DeleteSplitOutputSchema, type DeviceType, DeviceTypeSchema, type FundAutomationInput, FundAutomationInputSchema, FundAutomationOutputSchema, type FundingEstimate, FundingEstimateOutputSchema, type GetAutomationStatusInput, GetAutomationStatusInputSchema, type GetFundingEstimateInput, GetFundingEstimateInputSchema, type GetHotspotsInput, GetHotspotsInputSchema, type GetPendingRewardsInput, GetPendingRewardsInputSchema, type GetPendingRewardsOutput, GetPendingRewardsOutputSchema, type GetSplitInput, GetSplitInputSchema, type Hotspot, HotspotSchema, HotspotSharesSchema, type HotspotType, HotspotTypeSchema, type HotspotsData, HotspotsDataSchema, type OwnershipType, OwnershipTypeSchema, type SetupAutomationInput, SetupAutomationInputSchema, SetupAutomationOutputSchema, type SplitResponse, SplitResponseSchema, type SplitShare, SplitShareSchema, type TransferHotspotInput, TransferHotspotInputSchema, TransferHotspotOutputSchema, UpdateHotspotInfoInputSchema, UpdateHotspotInfoOutputSchema, type UpdateRewardsDestinationInput, UpdateRewardsDestinationInputSchema, UpdateRewardsDestinationOutputSchema };
@@ -0,0 +1,2 @@
1
+ export { AutomationScheduleSchema, AutomationStatusOutputSchema, ClaimRewardsInputSchema, ClaimRewardsOutputSchema, CloseAutomationInputSchema, CloseAutomationOutputSchema, CreateSplitInputSchema, CreateSplitOutputSchema, DeleteSplitInputSchema, DeleteSplitOutputSchema, DeviceTypeSchema, FundAutomationInputSchema, FundAutomationOutputSchema, FundingEstimateOutputSchema, GetAutomationStatusInputSchema, GetFundingEstimateInputSchema, GetHotspotsInputSchema, GetPendingRewardsInputSchema, GetPendingRewardsOutputSchema, GetSplitInputSchema, HotspotSchema, HotspotSharesSchema, HotspotTypeSchema, HotspotsDataSchema, OwnershipTypeSchema, SetupAutomationInputSchema, SetupAutomationOutputSchema, SplitResponseSchema, SplitShareSchema, TransferHotspotInputSchema, TransferHotspotOutputSchema, UpdateHotspotInfoInputSchema, UpdateHotspotInfoOutputSchema, UpdateRewardsDestinationInputSchema, UpdateRewardsDestinationOutputSchema } from '../chunk-6LMSAIIW.js';
2
+ import '../chunk-YVB4ENKX.js';
@@ -0,0 +1,145 @@
1
+ import { z } from 'zod';
2
+
3
+ declare const MigrateInputSchema: z.ZodObject<{
4
+ sourceWallet: z.ZodString;
5
+ destinationWallet: z.ZodString;
6
+ hotspots: z.ZodDefault<z.ZodArray<z.ZodString>>;
7
+ tokens: z.ZodDefault<z.ZodArray<z.ZodObject<{
8
+ mint: z.ZodString;
9
+ amount: z.ZodString;
10
+ }, z.core.$strip>>>;
11
+ password: z.ZodOptional<z.ZodString>;
12
+ }, z.core.$strip>;
13
+ declare const MigrateTransactionItemSchema: z.ZodObject<{
14
+ serializedTransaction: z.ZodString;
15
+ metadata: z.ZodOptional<z.ZodObject<{
16
+ type: z.ZodString;
17
+ description: z.ZodString;
18
+ signers: z.ZodArray<z.ZodEnum<{
19
+ destination: "destination";
20
+ source: "source";
21
+ }>>;
22
+ }, z.core.$catchall<z.ZodUnknown>>>;
23
+ }, z.core.$strip>;
24
+ declare const MigrateTransactionDataSchema: z.ZodObject<{
25
+ transactions: z.ZodArray<z.ZodObject<{
26
+ serializedTransaction: z.ZodString;
27
+ metadata: z.ZodOptional<z.ZodObject<{
28
+ type: z.ZodString;
29
+ description: z.ZodString;
30
+ signers: z.ZodArray<z.ZodEnum<{
31
+ destination: "destination";
32
+ source: "source";
33
+ }>>;
34
+ }, z.core.$catchall<z.ZodUnknown>>>;
35
+ }, z.core.$strip>>;
36
+ parallel: z.ZodBoolean;
37
+ tag: z.ZodOptional<z.ZodString>;
38
+ }, z.core.$strip>;
39
+ declare const MigrateOutputSchema: z.ZodObject<{
40
+ transactionData: z.ZodObject<{
41
+ transactions: z.ZodArray<z.ZodObject<{
42
+ serializedTransaction: z.ZodString;
43
+ metadata: z.ZodOptional<z.ZodObject<{
44
+ type: z.ZodString;
45
+ description: z.ZodString;
46
+ signers: z.ZodArray<z.ZodEnum<{
47
+ destination: "destination";
48
+ source: "source";
49
+ }>>;
50
+ }, z.core.$catchall<z.ZodUnknown>>>;
51
+ }, z.core.$strip>>;
52
+ parallel: z.ZodBoolean;
53
+ tag: z.ZodOptional<z.ZodString>;
54
+ }, z.core.$strip>;
55
+ estimatedSolFee: z.ZodObject<{
56
+ amount: z.ZodString;
57
+ decimals: z.ZodNumber;
58
+ uiAmount: z.ZodNullable<z.ZodNumber>;
59
+ uiAmountString: z.ZodString;
60
+ mint: z.ZodString;
61
+ }, z.core.$strip>;
62
+ warnings: z.ZodOptional<z.ZodArray<z.ZodString>>;
63
+ hasMore: z.ZodOptional<z.ZodBoolean>;
64
+ nextParams: z.ZodOptional<z.ZodObject<{
65
+ sourceWallet: z.ZodString;
66
+ destinationWallet: z.ZodString;
67
+ hotspots: z.ZodDefault<z.ZodArray<z.ZodString>>;
68
+ tokens: z.ZodDefault<z.ZodArray<z.ZodObject<{
69
+ mint: z.ZodString;
70
+ amount: z.ZodString;
71
+ }, z.core.$strip>>>;
72
+ password: z.ZodOptional<z.ZodString>;
73
+ }, z.core.$strip>>;
74
+ }, z.core.$strip>;
75
+ declare const MigratableHotspotSchema: z.ZodObject<{
76
+ address: z.ZodString;
77
+ entityKey: z.ZodString;
78
+ name: z.ZodString;
79
+ type: z.ZodEnum<{
80
+ iot: "iot";
81
+ mobile: "mobile";
82
+ all: "all";
83
+ }>;
84
+ deviceType: z.ZodEnum<{
85
+ "iot-gateway": "iot-gateway";
86
+ wifiIndoor: "wifiIndoor";
87
+ wifiOutdoor: "wifiOutdoor";
88
+ wifiDataOnly: "wifiDataOnly";
89
+ cbrs: "cbrs";
90
+ }>;
91
+ city: z.ZodOptional<z.ZodString>;
92
+ state: z.ZodOptional<z.ZodString>;
93
+ country: z.ZodOptional<z.ZodString>;
94
+ asset: z.ZodString;
95
+ isOnline: z.ZodOptional<z.ZodBoolean>;
96
+ owner: z.ZodOptional<z.ZodString>;
97
+ shares: z.ZodOptional<z.ZodObject<{
98
+ fixed: z.ZodOptional<z.ZodString>;
99
+ percentage: z.ZodOptional<z.ZodNumber>;
100
+ }, z.core.$strip>>;
101
+ ownershipType: z.ZodString;
102
+ inWelcomePack: z.ZodBoolean;
103
+ splitWallets: z.ZodOptional<z.ZodArray<z.ZodString>>;
104
+ }, z.core.$strip>;
105
+ declare const MigratableHotspotsInputSchema: z.ZodObject<{
106
+ walletAddress: z.ZodString;
107
+ }, z.core.$strip>;
108
+ declare const MigratableHotspotsOutputSchema: z.ZodObject<{
109
+ hotspots: z.ZodArray<z.ZodObject<{
110
+ address: z.ZodString;
111
+ entityKey: z.ZodString;
112
+ name: z.ZodString;
113
+ type: z.ZodEnum<{
114
+ iot: "iot";
115
+ mobile: "mobile";
116
+ all: "all";
117
+ }>;
118
+ deviceType: z.ZodEnum<{
119
+ "iot-gateway": "iot-gateway";
120
+ wifiIndoor: "wifiIndoor";
121
+ wifiOutdoor: "wifiOutdoor";
122
+ wifiDataOnly: "wifiDataOnly";
123
+ cbrs: "cbrs";
124
+ }>;
125
+ city: z.ZodOptional<z.ZodString>;
126
+ state: z.ZodOptional<z.ZodString>;
127
+ country: z.ZodOptional<z.ZodString>;
128
+ asset: z.ZodString;
129
+ isOnline: z.ZodOptional<z.ZodBoolean>;
130
+ owner: z.ZodOptional<z.ZodString>;
131
+ shares: z.ZodOptional<z.ZodObject<{
132
+ fixed: z.ZodOptional<z.ZodString>;
133
+ percentage: z.ZodOptional<z.ZodNumber>;
134
+ }, z.core.$strip>>;
135
+ ownershipType: z.ZodString;
136
+ inWelcomePack: z.ZodBoolean;
137
+ splitWallets: z.ZodOptional<z.ZodArray<z.ZodString>>;
138
+ }, z.core.$strip>>;
139
+ }, z.core.$strip>;
140
+ type MigrateInput = z.infer<typeof MigrateInputSchema>;
141
+ type MigrateOutput = z.infer<typeof MigrateOutputSchema>;
142
+ type MigratableHotspotsInput = z.infer<typeof MigratableHotspotsInputSchema>;
143
+ type MigratableHotspotsOutput = z.infer<typeof MigratableHotspotsOutputSchema>;
144
+
145
+ export { MigratableHotspotSchema, type MigratableHotspotsInput, MigratableHotspotsInputSchema, type MigratableHotspotsOutput, MigratableHotspotsOutputSchema, type MigrateInput, MigrateInputSchema, type MigrateOutput, MigrateOutputSchema, MigrateTransactionDataSchema, MigrateTransactionItemSchema };
@@ -0,0 +1,3 @@
1
+ export { MigratableHotspotSchema, MigratableHotspotsInputSchema, MigratableHotspotsOutputSchema, MigrateInputSchema, MigrateOutputSchema, MigrateTransactionDataSchema, MigrateTransactionItemSchema } from '../chunk-NBOSJXWK.js';
2
+ import '../chunk-6LMSAIIW.js';
3
+ import '../chunk-YVB4ENKX.js';