@helium/blockchain-api 0.3.10 → 0.3.12

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 (3) hide show
  1. package/dist/index.d.ts +670 -257
  2. package/dist/index.js +115 -88
  3. package/package.json +2 -2
package/dist/index.d.ts CHANGED
@@ -134,6 +134,90 @@ type TokenAmountInput = z.infer<typeof TokenAmountInputSchema>;
134
134
  type TokenAmountOutput = z.infer<typeof TokenAmountOutputSchema>;
135
135
  type ScheduleInput = z.infer<typeof ScheduleInputSchema>;
136
136
  type RewardSplitInput = z.infer<typeof RewardSplitInputSchema>;
137
+ declare function typedTransactionData<T extends z.ZodTypeAny>(metadataSchema: T): z.ZodObject<{
138
+ transactions: z.ZodArray<z.ZodObject<{
139
+ serializedTransaction: z.ZodString;
140
+ metadata: z.ZodOptional<T>;
141
+ }, z.core.$strip>>;
142
+ parallel: z.ZodBoolean;
143
+ tag: z.ZodOptional<z.ZodString>;
144
+ }, z.core.$strip>;
145
+ declare function createTransactionResponse(): z.ZodObject<{
146
+ transactionData: z.ZodObject<{
147
+ transactions: z.ZodArray<z.ZodObject<{
148
+ serializedTransaction: z.ZodString;
149
+ metadata: z.ZodOptional<z.ZodObject<{
150
+ type: z.ZodString;
151
+ description: z.ZodString;
152
+ }, z.core.$catchall<z.ZodUnknown>>>;
153
+ }, z.core.$strip>>;
154
+ parallel: z.ZodBoolean;
155
+ tag: z.ZodOptional<z.ZodString>;
156
+ }, z.core.$strip>;
157
+ estimatedSolFee: z.ZodObject<{
158
+ amount: z.ZodString;
159
+ decimals: z.ZodNumber;
160
+ uiAmount: z.ZodNullable<z.ZodNumber>;
161
+ uiAmountString: z.ZodString;
162
+ mint: z.ZodString;
163
+ }, z.core.$strip>;
164
+ }, z.core.$strip>;
165
+ declare function createTypedTransactionResponse<T extends z.ZodTypeAny>(metadataSchema: T): z.ZodObject<{
166
+ transactionData: z.ZodObject<{
167
+ transactions: z.ZodArray<z.ZodObject<{
168
+ serializedTransaction: z.ZodString;
169
+ metadata: z.ZodOptional<T>;
170
+ }, z.core.$strip>>;
171
+ parallel: z.ZodBoolean;
172
+ tag: z.ZodOptional<z.ZodString>;
173
+ }, z.core.$strip>;
174
+ estimatedSolFee: z.ZodObject<{
175
+ amount: z.ZodString;
176
+ decimals: z.ZodNumber;
177
+ uiAmount: z.ZodNullable<z.ZodNumber>;
178
+ uiAmountString: z.ZodString;
179
+ mint: z.ZodString;
180
+ }, z.core.$strip>;
181
+ }, z.core.$strip>;
182
+ declare function createPaginatedTransactionResponse(): z.ZodObject<{
183
+ transactionData: z.ZodObject<{
184
+ transactions: z.ZodArray<z.ZodObject<{
185
+ serializedTransaction: z.ZodString;
186
+ metadata: z.ZodOptional<z.ZodObject<{
187
+ type: z.ZodString;
188
+ description: z.ZodString;
189
+ }, z.core.$catchall<z.ZodUnknown>>>;
190
+ }, z.core.$strip>>;
191
+ parallel: z.ZodBoolean;
192
+ tag: z.ZodOptional<z.ZodString>;
193
+ }, z.core.$strip>;
194
+ estimatedSolFee: z.ZodObject<{
195
+ amount: z.ZodString;
196
+ decimals: z.ZodNumber;
197
+ uiAmount: z.ZodNullable<z.ZodNumber>;
198
+ uiAmountString: z.ZodString;
199
+ mint: z.ZodString;
200
+ }, z.core.$strip>;
201
+ hasMore: z.ZodBoolean;
202
+ }, z.core.$strip>;
203
+ declare function createTypedPaginatedTransactionResponse<T extends z.ZodTypeAny>(metadataSchema: T): z.ZodObject<{
204
+ transactionData: z.ZodObject<{
205
+ transactions: z.ZodArray<z.ZodObject<{
206
+ serializedTransaction: z.ZodString;
207
+ metadata: z.ZodOptional<T>;
208
+ }, z.core.$strip>>;
209
+ parallel: z.ZodBoolean;
210
+ tag: z.ZodOptional<z.ZodString>;
211
+ }, z.core.$strip>;
212
+ estimatedSolFee: z.ZodObject<{
213
+ amount: z.ZodString;
214
+ decimals: z.ZodNumber;
215
+ uiAmount: z.ZodNullable<z.ZodNumber>;
216
+ uiAmountString: z.ZodString;
217
+ mint: z.ZodString;
218
+ }, z.core.$strip>;
219
+ hasMore: z.ZodBoolean;
220
+ }, z.core.$strip>;
137
221
 
138
222
  declare const InitKycInputSchema: z.ZodObject<{
139
223
  type: z.ZodOptional<z.ZodEnum<{
@@ -247,13 +331,6 @@ declare const BridgeTransferSchema: z.ZodObject<{
247
331
  }, z.core.$strip>;
248
332
  }, z.core.$loose>;
249
333
  declare const SendFundsOutputSchema: z.ZodObject<{
250
- bridgeTransfer: z.ZodObject<{
251
- id: z.ZodString;
252
- state: z.ZodString;
253
- source_deposit_instructions: z.ZodObject<{
254
- to_address: z.ZodString;
255
- }, z.core.$strip>;
256
- }, z.core.$loose>;
257
334
  transactionData: z.ZodObject<{
258
335
  transactions: z.ZodArray<z.ZodObject<{
259
336
  serializedTransaction: z.ZodString;
@@ -265,6 +342,20 @@ declare const SendFundsOutputSchema: z.ZodObject<{
265
342
  parallel: z.ZodBoolean;
266
343
  tag: z.ZodOptional<z.ZodString>;
267
344
  }, z.core.$strip>;
345
+ estimatedSolFee: z.ZodObject<{
346
+ amount: z.ZodString;
347
+ decimals: z.ZodNumber;
348
+ uiAmount: z.ZodNullable<z.ZodNumber>;
349
+ uiAmountString: z.ZodString;
350
+ mint: z.ZodString;
351
+ }, z.core.$strip>;
352
+ bridgeTransfer: z.ZodObject<{
353
+ id: z.ZodString;
354
+ state: z.ZodString;
355
+ source_deposit_instructions: z.ZodObject<{
356
+ to_address: z.ZodString;
357
+ }, z.core.$strip>;
358
+ }, z.core.$loose>;
268
359
  }, z.core.$strip>;
269
360
  declare const UpdateTransferOutputSchema: z.ZodObject<{
270
361
  success: z.ZodBoolean;
@@ -374,35 +465,345 @@ declare const ClaimDelegationRewardsInputSchema: z.ZodObject<{
374
465
  walletAddress: z.ZodString;
375
466
  positionMints: z.ZodArray<z.ZodString>;
376
467
  }, z.core.$strip>;
377
- declare const VoteInputSchema: z.ZodObject<{
378
- walletAddress: z.ZodString;
379
- proposalKey: z.ZodString;
380
- positionMints: z.ZodArray<z.ZodString>;
381
- choice: z.ZodNumber;
468
+ declare const VoteInputSchema: z.ZodObject<{
469
+ walletAddress: z.ZodString;
470
+ proposalKey: z.ZodString;
471
+ positionMints: z.ZodArray<z.ZodString>;
472
+ choice: z.ZodNumber;
473
+ }, z.core.$strip>;
474
+ declare const RelinquishVoteInputSchema: z.ZodObject<{
475
+ walletAddress: z.ZodString;
476
+ proposalKey: z.ZodString;
477
+ positionMints: z.ZodArray<z.ZodString>;
478
+ choice: z.ZodNumber;
479
+ }, z.core.$strip>;
480
+ declare const RelinquishPositionVotesInputSchema: z.ZodObject<{
481
+ walletAddress: z.ZodString;
482
+ positionMint: z.ZodString;
483
+ organization: z.ZodString;
484
+ }, z.core.$strip>;
485
+ declare const AssignProxiesInputSchema: z.ZodObject<{
486
+ walletAddress: z.ZodString;
487
+ positionMints: z.ZodArray<z.ZodString>;
488
+ proxyKey: z.ZodString;
489
+ expirationTime: z.ZodNumber;
490
+ }, z.core.$strip>;
491
+ declare const UnassignProxiesInputSchema: z.ZodObject<{
492
+ walletAddress: z.ZodString;
493
+ proxyKey: z.ZodString;
494
+ positionMints: z.ZodArray<z.ZodString>;
495
+ }, z.core.$strip>;
496
+ declare const CreatePositionResponseSchema: z.ZodObject<{
497
+ transactionData: z.ZodObject<{
498
+ transactions: z.ZodArray<z.ZodObject<{
499
+ serializedTransaction: z.ZodString;
500
+ metadata: z.ZodOptional<z.ZodObject<{
501
+ type: z.ZodString;
502
+ description: z.ZodString;
503
+ positionMint: z.ZodOptional<z.ZodString>;
504
+ }, z.core.$strip>>;
505
+ }, z.core.$strip>>;
506
+ parallel: z.ZodBoolean;
507
+ tag: z.ZodOptional<z.ZodString>;
508
+ }, z.core.$strip>;
509
+ estimatedSolFee: z.ZodObject<{
510
+ amount: z.ZodString;
511
+ decimals: z.ZodNumber;
512
+ uiAmount: z.ZodNullable<z.ZodNumber>;
513
+ uiAmountString: z.ZodString;
514
+ mint: z.ZodString;
515
+ }, z.core.$strip>;
516
+ }, z.core.$strip>;
517
+ declare const ClosePositionResponseSchema: z.ZodObject<{
518
+ transactionData: z.ZodObject<{
519
+ transactions: z.ZodArray<z.ZodObject<{
520
+ serializedTransaction: z.ZodString;
521
+ metadata: z.ZodOptional<z.ZodObject<{
522
+ type: z.ZodString;
523
+ description: z.ZodString;
524
+ }, z.core.$catchall<z.ZodUnknown>>>;
525
+ }, z.core.$strip>>;
526
+ parallel: z.ZodBoolean;
527
+ tag: z.ZodOptional<z.ZodString>;
528
+ }, z.core.$strip>;
529
+ estimatedSolFee: z.ZodObject<{
530
+ amount: z.ZodString;
531
+ decimals: z.ZodNumber;
532
+ uiAmount: z.ZodNullable<z.ZodNumber>;
533
+ uiAmountString: z.ZodString;
534
+ mint: z.ZodString;
535
+ }, z.core.$strip>;
536
+ }, z.core.$strip>;
537
+ declare const ExtendPositionResponseSchema: z.ZodObject<{
538
+ transactionData: z.ZodObject<{
539
+ transactions: z.ZodArray<z.ZodObject<{
540
+ serializedTransaction: z.ZodString;
541
+ metadata: z.ZodOptional<z.ZodObject<{
542
+ type: z.ZodString;
543
+ description: z.ZodString;
544
+ }, z.core.$catchall<z.ZodUnknown>>>;
545
+ }, z.core.$strip>>;
546
+ parallel: z.ZodBoolean;
547
+ tag: z.ZodOptional<z.ZodString>;
548
+ }, z.core.$strip>;
549
+ estimatedSolFee: z.ZodObject<{
550
+ amount: z.ZodString;
551
+ decimals: z.ZodNumber;
552
+ uiAmount: z.ZodNullable<z.ZodNumber>;
553
+ uiAmountString: z.ZodString;
554
+ mint: z.ZodString;
555
+ }, z.core.$strip>;
556
+ }, z.core.$strip>;
557
+ declare const FlipLockupKindResponseSchema: z.ZodObject<{
558
+ transactionData: z.ZodObject<{
559
+ transactions: z.ZodArray<z.ZodObject<{
560
+ serializedTransaction: z.ZodString;
561
+ metadata: z.ZodOptional<z.ZodObject<{
562
+ type: z.ZodString;
563
+ description: z.ZodString;
564
+ }, z.core.$catchall<z.ZodUnknown>>>;
565
+ }, z.core.$strip>>;
566
+ parallel: z.ZodBoolean;
567
+ tag: z.ZodOptional<z.ZodString>;
568
+ }, z.core.$strip>;
569
+ estimatedSolFee: z.ZodObject<{
570
+ amount: z.ZodString;
571
+ decimals: z.ZodNumber;
572
+ uiAmount: z.ZodNullable<z.ZodNumber>;
573
+ uiAmountString: z.ZodString;
574
+ mint: z.ZodString;
575
+ }, z.core.$strip>;
576
+ }, z.core.$strip>;
577
+ declare const ResetLockupResponseSchema: z.ZodObject<{
578
+ transactionData: z.ZodObject<{
579
+ transactions: z.ZodArray<z.ZodObject<{
580
+ serializedTransaction: z.ZodString;
581
+ metadata: z.ZodOptional<z.ZodObject<{
582
+ type: z.ZodString;
583
+ description: z.ZodString;
584
+ }, z.core.$catchall<z.ZodUnknown>>>;
585
+ }, z.core.$strip>>;
586
+ parallel: z.ZodBoolean;
587
+ tag: z.ZodOptional<z.ZodString>;
588
+ }, z.core.$strip>;
589
+ estimatedSolFee: z.ZodObject<{
590
+ amount: z.ZodString;
591
+ decimals: z.ZodNumber;
592
+ uiAmount: z.ZodNullable<z.ZodNumber>;
593
+ uiAmountString: z.ZodString;
594
+ mint: z.ZodString;
595
+ }, z.core.$strip>;
596
+ }, z.core.$strip>;
597
+ declare const SplitPositionResponseSchema: z.ZodObject<{
598
+ transactionData: z.ZodObject<{
599
+ transactions: z.ZodArray<z.ZodObject<{
600
+ serializedTransaction: z.ZodString;
601
+ metadata: z.ZodOptional<z.ZodObject<{
602
+ type: z.ZodString;
603
+ description: z.ZodString;
604
+ newPositionMint: z.ZodOptional<z.ZodString>;
605
+ }, z.core.$strip>>;
606
+ }, z.core.$strip>>;
607
+ parallel: z.ZodBoolean;
608
+ tag: z.ZodOptional<z.ZodString>;
609
+ }, z.core.$strip>;
610
+ estimatedSolFee: z.ZodObject<{
611
+ amount: z.ZodString;
612
+ decimals: z.ZodNumber;
613
+ uiAmount: z.ZodNullable<z.ZodNumber>;
614
+ uiAmountString: z.ZodString;
615
+ mint: z.ZodString;
616
+ }, z.core.$strip>;
617
+ }, z.core.$strip>;
618
+ declare const TransferPositionResponseSchema: z.ZodObject<{
619
+ transactionData: z.ZodObject<{
620
+ transactions: z.ZodArray<z.ZodObject<{
621
+ serializedTransaction: z.ZodString;
622
+ metadata: z.ZodOptional<z.ZodObject<{
623
+ type: z.ZodString;
624
+ description: z.ZodString;
625
+ }, z.core.$catchall<z.ZodUnknown>>>;
626
+ }, z.core.$strip>>;
627
+ parallel: z.ZodBoolean;
628
+ tag: z.ZodOptional<z.ZodString>;
629
+ }, z.core.$strip>;
630
+ estimatedSolFee: z.ZodObject<{
631
+ amount: z.ZodString;
632
+ decimals: z.ZodNumber;
633
+ uiAmount: z.ZodNullable<z.ZodNumber>;
634
+ uiAmountString: z.ZodString;
635
+ mint: z.ZodString;
636
+ }, z.core.$strip>;
637
+ }, z.core.$strip>;
638
+ declare const ExtendDelegationResponseSchema: z.ZodObject<{
639
+ transactionData: z.ZodObject<{
640
+ transactions: z.ZodArray<z.ZodObject<{
641
+ serializedTransaction: z.ZodString;
642
+ metadata: z.ZodOptional<z.ZodObject<{
643
+ type: z.ZodString;
644
+ description: z.ZodString;
645
+ }, z.core.$catchall<z.ZodUnknown>>>;
646
+ }, z.core.$strip>>;
647
+ parallel: z.ZodBoolean;
648
+ tag: z.ZodOptional<z.ZodString>;
649
+ }, z.core.$strip>;
650
+ estimatedSolFee: z.ZodObject<{
651
+ amount: z.ZodString;
652
+ decimals: z.ZodNumber;
653
+ uiAmount: z.ZodNullable<z.ZodNumber>;
654
+ uiAmountString: z.ZodString;
655
+ mint: z.ZodString;
656
+ }, z.core.$strip>;
657
+ }, z.core.$strip>;
658
+ declare const DelegatePositionsResponseSchema: z.ZodObject<{
659
+ transactionData: z.ZodObject<{
660
+ transactions: z.ZodArray<z.ZodObject<{
661
+ serializedTransaction: z.ZodString;
662
+ metadata: z.ZodOptional<z.ZodObject<{
663
+ type: z.ZodString;
664
+ description: z.ZodString;
665
+ }, z.core.$catchall<z.ZodUnknown>>>;
666
+ }, z.core.$strip>>;
667
+ parallel: z.ZodBoolean;
668
+ tag: z.ZodOptional<z.ZodString>;
669
+ }, z.core.$strip>;
670
+ estimatedSolFee: z.ZodObject<{
671
+ amount: z.ZodString;
672
+ decimals: z.ZodNumber;
673
+ uiAmount: z.ZodNullable<z.ZodNumber>;
674
+ uiAmountString: z.ZodString;
675
+ mint: z.ZodString;
676
+ }, z.core.$strip>;
677
+ hasMore: z.ZodBoolean;
678
+ }, z.core.$strip>;
679
+ declare const ClaimDelegationRewardsResponseSchema: z.ZodObject<{
680
+ transactionData: z.ZodObject<{
681
+ transactions: z.ZodArray<z.ZodObject<{
682
+ serializedTransaction: z.ZodString;
683
+ metadata: z.ZodOptional<z.ZodObject<{
684
+ type: z.ZodString;
685
+ description: z.ZodString;
686
+ }, z.core.$catchall<z.ZodUnknown>>>;
687
+ }, z.core.$strip>>;
688
+ parallel: z.ZodBoolean;
689
+ tag: z.ZodOptional<z.ZodString>;
690
+ }, z.core.$strip>;
691
+ estimatedSolFee: z.ZodObject<{
692
+ amount: z.ZodString;
693
+ decimals: z.ZodNumber;
694
+ uiAmount: z.ZodNullable<z.ZodNumber>;
695
+ uiAmountString: z.ZodString;
696
+ mint: z.ZodString;
697
+ }, z.core.$strip>;
698
+ hasMore: z.ZodBoolean;
699
+ }, z.core.$strip>;
700
+ declare const UndelegatePositionResponseSchema: z.ZodObject<{
701
+ transactionData: z.ZodObject<{
702
+ transactions: z.ZodArray<z.ZodObject<{
703
+ serializedTransaction: z.ZodString;
704
+ metadata: z.ZodOptional<z.ZodObject<{
705
+ type: z.ZodString;
706
+ description: z.ZodString;
707
+ }, z.core.$catchall<z.ZodUnknown>>>;
708
+ }, z.core.$strip>>;
709
+ parallel: z.ZodBoolean;
710
+ tag: z.ZodOptional<z.ZodString>;
711
+ }, z.core.$strip>;
712
+ estimatedSolFee: z.ZodObject<{
713
+ amount: z.ZodString;
714
+ decimals: z.ZodNumber;
715
+ uiAmount: z.ZodNullable<z.ZodNumber>;
716
+ uiAmountString: z.ZodString;
717
+ mint: z.ZodString;
718
+ }, z.core.$strip>;
719
+ hasMore: z.ZodBoolean;
382
720
  }, z.core.$strip>;
383
- declare const RelinquishVoteInputSchema: z.ZodObject<{
384
- walletAddress: z.ZodString;
385
- proposalKey: z.ZodString;
386
- positionMints: z.ZodArray<z.ZodString>;
387
- choice: z.ZodNumber;
721
+ declare const VoteResponseSchema: z.ZodObject<{
722
+ transactionData: z.ZodObject<{
723
+ transactions: z.ZodArray<z.ZodObject<{
724
+ serializedTransaction: z.ZodString;
725
+ metadata: z.ZodOptional<z.ZodObject<{
726
+ type: z.ZodString;
727
+ description: z.ZodString;
728
+ }, z.core.$catchall<z.ZodUnknown>>>;
729
+ }, z.core.$strip>>;
730
+ parallel: z.ZodBoolean;
731
+ tag: z.ZodOptional<z.ZodString>;
732
+ }, z.core.$strip>;
733
+ estimatedSolFee: z.ZodObject<{
734
+ amount: z.ZodString;
735
+ decimals: z.ZodNumber;
736
+ uiAmount: z.ZodNullable<z.ZodNumber>;
737
+ uiAmountString: z.ZodString;
738
+ mint: z.ZodString;
739
+ }, z.core.$strip>;
740
+ hasMore: z.ZodBoolean;
388
741
  }, z.core.$strip>;
389
- declare const RelinquishPositionVotesInputSchema: z.ZodObject<{
390
- walletAddress: z.ZodString;
391
- positionMint: z.ZodString;
392
- organization: z.ZodString;
742
+ declare const RelinquishVoteResponseSchema: z.ZodObject<{
743
+ transactionData: z.ZodObject<{
744
+ transactions: z.ZodArray<z.ZodObject<{
745
+ serializedTransaction: z.ZodString;
746
+ metadata: z.ZodOptional<z.ZodObject<{
747
+ type: z.ZodString;
748
+ description: z.ZodString;
749
+ }, z.core.$catchall<z.ZodUnknown>>>;
750
+ }, z.core.$strip>>;
751
+ parallel: z.ZodBoolean;
752
+ tag: z.ZodOptional<z.ZodString>;
753
+ }, z.core.$strip>;
754
+ estimatedSolFee: z.ZodObject<{
755
+ amount: z.ZodString;
756
+ decimals: z.ZodNumber;
757
+ uiAmount: z.ZodNullable<z.ZodNumber>;
758
+ uiAmountString: z.ZodString;
759
+ mint: z.ZodString;
760
+ }, z.core.$strip>;
761
+ hasMore: z.ZodBoolean;
393
762
  }, z.core.$strip>;
394
- declare const AssignProxiesInputSchema: z.ZodObject<{
395
- walletAddress: z.ZodString;
396
- positionMints: z.ZodArray<z.ZodString>;
397
- proxyKey: z.ZodString;
398
- expirationTime: z.ZodNumber;
763
+ declare const RelinquishPositionVotesResponseSchema: z.ZodObject<{
764
+ transactionData: z.ZodObject<{
765
+ transactions: z.ZodArray<z.ZodObject<{
766
+ serializedTransaction: z.ZodString;
767
+ metadata: z.ZodOptional<z.ZodObject<{
768
+ type: z.ZodString;
769
+ description: z.ZodString;
770
+ votesRelinquished: z.ZodOptional<z.ZodNumber>;
771
+ }, z.core.$strip>>;
772
+ }, z.core.$strip>>;
773
+ parallel: z.ZodBoolean;
774
+ tag: z.ZodOptional<z.ZodString>;
775
+ }, z.core.$strip>;
776
+ estimatedSolFee: z.ZodObject<{
777
+ amount: z.ZodString;
778
+ decimals: z.ZodNumber;
779
+ uiAmount: z.ZodNullable<z.ZodNumber>;
780
+ uiAmountString: z.ZodString;
781
+ mint: z.ZodString;
782
+ }, z.core.$strip>;
783
+ hasMore: z.ZodBoolean;
399
784
  }, z.core.$strip>;
400
- declare const UnassignProxiesInputSchema: z.ZodObject<{
401
- walletAddress: z.ZodString;
402
- proxyKey: z.ZodString;
403
- positionMints: z.ZodArray<z.ZodString>;
785
+ declare const AssignProxiesResponseSchema: z.ZodObject<{
786
+ transactionData: z.ZodObject<{
787
+ transactions: z.ZodArray<z.ZodObject<{
788
+ serializedTransaction: z.ZodString;
789
+ metadata: z.ZodOptional<z.ZodObject<{
790
+ type: z.ZodString;
791
+ description: z.ZodString;
792
+ }, z.core.$catchall<z.ZodUnknown>>>;
793
+ }, z.core.$strip>>;
794
+ parallel: z.ZodBoolean;
795
+ tag: z.ZodOptional<z.ZodString>;
796
+ }, z.core.$strip>;
797
+ estimatedSolFee: z.ZodObject<{
798
+ amount: z.ZodString;
799
+ decimals: z.ZodNumber;
800
+ uiAmount: z.ZodNullable<z.ZodNumber>;
801
+ uiAmountString: z.ZodString;
802
+ mint: z.ZodString;
803
+ }, z.core.$strip>;
804
+ hasMore: z.ZodBoolean;
404
805
  }, z.core.$strip>;
405
- declare const GovernanceTransactionResponseSchema: z.ZodObject<{
806
+ declare const UnassignProxiesResponseSchema: z.ZodObject<{
406
807
  transactionData: z.ZodObject<{
407
808
  transactions: z.ZodArray<z.ZodObject<{
408
809
  serializedTransaction: z.ZodString;
@@ -414,14 +815,14 @@ declare const GovernanceTransactionResponseSchema: z.ZodObject<{
414
815
  parallel: z.ZodBoolean;
415
816
  tag: z.ZodOptional<z.ZodString>;
416
817
  }, z.core.$strip>;
417
- estimatedSolFee: z.ZodOptional<z.ZodObject<{
818
+ estimatedSolFee: z.ZodObject<{
418
819
  amount: z.ZodString;
419
820
  decimals: z.ZodNumber;
420
821
  uiAmount: z.ZodNullable<z.ZodNumber>;
421
822
  uiAmountString: z.ZodString;
422
823
  mint: z.ZodString;
423
- }, z.core.$strip>>;
424
- hasMore: z.ZodOptional<z.ZodBoolean>;
824
+ }, z.core.$strip>;
825
+ hasMore: z.ZodBoolean;
425
826
  }, z.core.$strip>;
426
827
  type LockupKind = z.infer<typeof LockupKindSchema>;
427
828
  type CreatePositionInput = z.infer<typeof CreatePositionInputSchema>;
@@ -440,7 +841,22 @@ type RelinquishVoteInput = z.infer<typeof RelinquishVoteInputSchema>;
440
841
  type RelinquishPositionVotesInput = z.infer<typeof RelinquishPositionVotesInputSchema>;
441
842
  type AssignProxiesInput = z.infer<typeof AssignProxiesInputSchema>;
442
843
  type UnassignProxiesInput = z.infer<typeof UnassignProxiesInputSchema>;
443
- type GovernanceTransactionResponse = z.infer<typeof GovernanceTransactionResponseSchema>;
844
+ type CreatePositionResponse = z.infer<typeof CreatePositionResponseSchema>;
845
+ type ClosePositionResponse = z.infer<typeof ClosePositionResponseSchema>;
846
+ type ExtendPositionResponse = z.infer<typeof ExtendPositionResponseSchema>;
847
+ type FlipLockupKindResponse = z.infer<typeof FlipLockupKindResponseSchema>;
848
+ type ResetLockupResponse = z.infer<typeof ResetLockupResponseSchema>;
849
+ type SplitPositionResponse = z.infer<typeof SplitPositionResponseSchema>;
850
+ type TransferPositionResponse = z.infer<typeof TransferPositionResponseSchema>;
851
+ type DelegatePositionsResponse = z.infer<typeof DelegatePositionsResponseSchema>;
852
+ type ExtendDelegationResponse = z.infer<typeof ExtendDelegationResponseSchema>;
853
+ type UndelegatePositionResponse = z.infer<typeof UndelegatePositionResponseSchema>;
854
+ type ClaimDelegationRewardsResponse = z.infer<typeof ClaimDelegationRewardsResponseSchema>;
855
+ type VoteResponse = z.infer<typeof VoteResponseSchema>;
856
+ type RelinquishVoteResponse = z.infer<typeof RelinquishVoteResponseSchema>;
857
+ type RelinquishPositionVotesResponse = z.infer<typeof RelinquishPositionVotesResponseSchema>;
858
+ type AssignProxiesResponse = z.infer<typeof AssignProxiesResponseSchema>;
859
+ type UnassignProxiesResponse = z.infer<typeof UnassignProxiesResponseSchema>;
444
860
 
445
861
  declare const HealthResponseSchema: z.ZodObject<{
446
862
  ok: z.ZodBoolean;
@@ -825,35 +1241,6 @@ declare const UpdateRewardsDestinationOutputSchema: z.ZodObject<{
825
1241
  mint: z.ZodString;
826
1242
  }, z.core.$strip>;
827
1243
  }, z.core.$strip>;
828
- declare const SplitShareSchema: z.ZodObject<{
829
- wallet: z.ZodString;
830
- delegate: z.ZodString;
831
- fixed: z.ZodObject<{
832
- amount: z.ZodString;
833
- decimals: z.ZodNumber;
834
- uiAmount: z.ZodNullable<z.ZodNumber>;
835
- uiAmountString: z.ZodString;
836
- mint: z.ZodString;
837
- }, z.core.$strip>;
838
- shares: z.ZodNumber;
839
- }, z.core.$strip>;
840
- declare const SplitResponseSchema: z.ZodObject<{
841
- walletAddress: z.ZodString;
842
- hotspotPubkey: z.ZodString;
843
- splitAddress: z.ZodString;
844
- shares: z.ZodArray<z.ZodObject<{
845
- wallet: z.ZodString;
846
- delegate: z.ZodString;
847
- fixed: z.ZodObject<{
848
- amount: z.ZodString;
849
- decimals: z.ZodNumber;
850
- uiAmount: z.ZodNullable<z.ZodNumber>;
851
- uiAmountString: z.ZodString;
852
- mint: z.ZodString;
853
- }, z.core.$strip>;
854
- shares: z.ZodNumber;
855
- }, z.core.$strip>>;
856
- }, z.core.$strip>;
857
1244
  declare const CreateSplitOutputSchema: z.ZodObject<{
858
1245
  transactionData: z.ZodObject<{
859
1246
  transactions: z.ZodArray<z.ZodObject<{
@@ -894,35 +1281,6 @@ declare const DeleteSplitOutputSchema: z.ZodObject<{
894
1281
  mint: z.ZodString;
895
1282
  }, z.core.$strip>;
896
1283
  }, z.core.$strip>;
897
- declare const AutomationStatusOutputSchema: z.ZodObject<{
898
- hasExistingAutomation: z.ZodBoolean;
899
- isOutOfSol: z.ZodBoolean;
900
- currentSchedule: z.ZodOptional<z.ZodObject<{
901
- schedule: z.ZodEnum<{
902
- daily: "daily";
903
- weekly: "weekly";
904
- monthly: "monthly";
905
- }>;
906
- time: z.ZodString;
907
- nextRun: z.ZodString;
908
- }, z.core.$strip>>;
909
- rentFee: z.ZodNumber;
910
- recipientFee: z.ZodNumber;
911
- operationalSol: z.ZodNumber;
912
- remainingClaims: z.ZodOptional<z.ZodNumber>;
913
- fundingPeriodInfo: z.ZodOptional<z.ZodObject<{
914
- periodLength: z.ZodEnum<{
915
- daily: "daily";
916
- weekly: "weekly";
917
- monthly: "monthly";
918
- }>;
919
- periodsRemaining: z.ZodNumber;
920
- cronJobPeriodsRemaining: z.ZodNumber;
921
- pdaWalletPeriodsRemaining: z.ZodNumber;
922
- }, z.core.$strip>>;
923
- cronJobBalance: z.ZodString;
924
- pdaWalletBalance: z.ZodString;
925
- }, z.core.$strip>;
926
1284
  declare const SetupAutomationOutputSchema: z.ZodObject<{
927
1285
  transactionData: z.ZodObject<{
928
1286
  transactions: z.ZodArray<z.ZodObject<{
@@ -983,6 +1341,64 @@ declare const CloseAutomationOutputSchema: z.ZodObject<{
983
1341
  mint: z.ZodString;
984
1342
  }, z.core.$strip>;
985
1343
  }, z.core.$strip>;
1344
+ declare const SplitShareSchema: z.ZodObject<{
1345
+ wallet: z.ZodString;
1346
+ delegate: z.ZodString;
1347
+ fixed: z.ZodObject<{
1348
+ amount: z.ZodString;
1349
+ decimals: z.ZodNumber;
1350
+ uiAmount: z.ZodNullable<z.ZodNumber>;
1351
+ uiAmountString: z.ZodString;
1352
+ mint: z.ZodString;
1353
+ }, z.core.$strip>;
1354
+ shares: z.ZodNumber;
1355
+ }, z.core.$strip>;
1356
+ declare const SplitResponseSchema: z.ZodObject<{
1357
+ walletAddress: z.ZodString;
1358
+ hotspotPubkey: z.ZodString;
1359
+ splitAddress: z.ZodString;
1360
+ shares: z.ZodArray<z.ZodObject<{
1361
+ wallet: z.ZodString;
1362
+ delegate: z.ZodString;
1363
+ fixed: z.ZodObject<{
1364
+ amount: z.ZodString;
1365
+ decimals: z.ZodNumber;
1366
+ uiAmount: z.ZodNullable<z.ZodNumber>;
1367
+ uiAmountString: z.ZodString;
1368
+ mint: z.ZodString;
1369
+ }, z.core.$strip>;
1370
+ shares: z.ZodNumber;
1371
+ }, z.core.$strip>>;
1372
+ }, z.core.$strip>;
1373
+ declare const AutomationStatusOutputSchema: z.ZodObject<{
1374
+ hasExistingAutomation: z.ZodBoolean;
1375
+ isOutOfSol: z.ZodBoolean;
1376
+ currentSchedule: z.ZodOptional<z.ZodObject<{
1377
+ schedule: z.ZodEnum<{
1378
+ daily: "daily";
1379
+ weekly: "weekly";
1380
+ monthly: "monthly";
1381
+ }>;
1382
+ time: z.ZodString;
1383
+ nextRun: z.ZodString;
1384
+ }, z.core.$strip>>;
1385
+ rentFee: z.ZodNumber;
1386
+ recipientFee: z.ZodNumber;
1387
+ operationalSol: z.ZodNumber;
1388
+ remainingClaims: z.ZodOptional<z.ZodNumber>;
1389
+ fundingPeriodInfo: z.ZodOptional<z.ZodObject<{
1390
+ periodLength: z.ZodEnum<{
1391
+ daily: "daily";
1392
+ weekly: "weekly";
1393
+ monthly: "monthly";
1394
+ }>;
1395
+ periodsRemaining: z.ZodNumber;
1396
+ cronJobPeriodsRemaining: z.ZodNumber;
1397
+ pdaWalletPeriodsRemaining: z.ZodNumber;
1398
+ }, z.core.$strip>>;
1399
+ cronJobBalance: z.ZodString;
1400
+ pdaWalletBalance: z.ZodString;
1401
+ }, z.core.$strip>;
986
1402
  declare const FundingEstimateOutputSchema: z.ZodObject<{
987
1403
  rentFee: z.ZodNumber;
988
1404
  cronJobFunding: z.ZodNumber;
@@ -1741,6 +2157,24 @@ declare const WelcomePackListOutputSchema: z.ZodArray<z.ZodObject<{
1741
2157
  }, z.core.$strip>>;
1742
2158
  }, z.core.$strip>>;
1743
2159
  declare const WelcomePackCreateOutputSchema: z.ZodObject<{
2160
+ transactionData: z.ZodObject<{
2161
+ transactions: z.ZodArray<z.ZodObject<{
2162
+ serializedTransaction: z.ZodString;
2163
+ metadata: z.ZodOptional<z.ZodObject<{
2164
+ type: z.ZodString;
2165
+ description: z.ZodString;
2166
+ }, z.core.$catchall<z.ZodUnknown>>>;
2167
+ }, z.core.$strip>>;
2168
+ parallel: z.ZodBoolean;
2169
+ tag: z.ZodOptional<z.ZodString>;
2170
+ }, z.core.$strip>;
2171
+ estimatedSolFee: z.ZodObject<{
2172
+ amount: z.ZodString;
2173
+ decimals: z.ZodNumber;
2174
+ uiAmount: z.ZodNullable<z.ZodNumber>;
2175
+ uiAmountString: z.ZodString;
2176
+ mint: z.ZodString;
2177
+ }, z.core.$strip>;
1744
2178
  welcomePack: z.ZodObject<{
1745
2179
  address: z.ZodString;
1746
2180
  id: z.ZodNumber;
@@ -1796,24 +2230,6 @@ declare const WelcomePackCreateOutputSchema: z.ZodObject<{
1796
2230
  ownershipType: z.ZodString;
1797
2231
  }, z.core.$strip>>;
1798
2232
  }, z.core.$strip>;
1799
- transactionData: z.ZodObject<{
1800
- transactions: z.ZodArray<z.ZodObject<{
1801
- serializedTransaction: z.ZodString;
1802
- metadata: z.ZodOptional<z.ZodObject<{
1803
- type: z.ZodString;
1804
- description: z.ZodString;
1805
- }, z.core.$catchall<z.ZodUnknown>>>;
1806
- }, z.core.$strip>>;
1807
- parallel: z.ZodBoolean;
1808
- tag: z.ZodOptional<z.ZodString>;
1809
- }, z.core.$strip>;
1810
- estimatedSolFee: z.ZodObject<{
1811
- amount: z.ZodString;
1812
- decimals: z.ZodNumber;
1813
- uiAmount: z.ZodNullable<z.ZodNumber>;
1814
- uiAmountString: z.ZodString;
1815
- mint: z.ZodString;
1816
- }, z.core.$strip>;
1817
2233
  }, z.core.$strip>;
1818
2234
  declare const WelcomePackDeleteOutputSchema: z.ZodObject<{
1819
2235
  transactionData: z.ZodObject<{
@@ -2105,19 +2521,19 @@ declare const apiContract: {
2105
2521
  metadata: zod.ZodOptional<zod.ZodObject<{
2106
2522
  type: zod.ZodString;
2107
2523
  description: zod.ZodString;
2108
- }, zod_v4_core.$catchall<zod.ZodUnknown>>>;
2524
+ positionMint: zod.ZodOptional<zod.ZodString>;
2525
+ }, zod_v4_core.$strip>>;
2109
2526
  }, zod_v4_core.$strip>>;
2110
2527
  parallel: zod.ZodBoolean;
2111
2528
  tag: zod.ZodOptional<zod.ZodString>;
2112
2529
  }, zod_v4_core.$strip>;
2113
- estimatedSolFee: zod.ZodOptional<zod.ZodObject<{
2530
+ estimatedSolFee: zod.ZodObject<{
2114
2531
  amount: zod.ZodString;
2115
2532
  decimals: zod.ZodNumber;
2116
2533
  uiAmount: zod.ZodNullable<zod.ZodNumber>;
2117
2534
  uiAmountString: zod.ZodString;
2118
2535
  mint: zod.ZodString;
2119
- }, zod_v4_core.$strip>>;
2120
- hasMore: zod.ZodOptional<zod.ZodBoolean>;
2536
+ }, zod_v4_core.$strip>;
2121
2537
  }, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
2122
2538
  BAD_REQUEST: {
2123
2539
  readonly status: 400;
@@ -2150,14 +2566,13 @@ declare const apiContract: {
2150
2566
  parallel: zod.ZodBoolean;
2151
2567
  tag: zod.ZodOptional<zod.ZodString>;
2152
2568
  }, zod_v4_core.$strip>;
2153
- estimatedSolFee: zod.ZodOptional<zod.ZodObject<{
2569
+ estimatedSolFee: zod.ZodObject<{
2154
2570
  amount: zod.ZodString;
2155
2571
  decimals: zod.ZodNumber;
2156
2572
  uiAmount: zod.ZodNullable<zod.ZodNumber>;
2157
2573
  uiAmountString: zod.ZodString;
2158
2574
  mint: zod.ZodString;
2159
- }, zod_v4_core.$strip>>;
2160
- hasMore: zod.ZodOptional<zod.ZodBoolean>;
2575
+ }, zod_v4_core.$strip>;
2161
2576
  }, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
2162
2577
  BAD_REQUEST: {
2163
2578
  readonly status: 400;
@@ -2199,14 +2614,13 @@ declare const apiContract: {
2199
2614
  parallel: zod.ZodBoolean;
2200
2615
  tag: zod.ZodOptional<zod.ZodString>;
2201
2616
  }, zod_v4_core.$strip>;
2202
- estimatedSolFee: zod.ZodOptional<zod.ZodObject<{
2617
+ estimatedSolFee: zod.ZodObject<{
2203
2618
  amount: zod.ZodString;
2204
2619
  decimals: zod.ZodNumber;
2205
2620
  uiAmount: zod.ZodNullable<zod.ZodNumber>;
2206
2621
  uiAmountString: zod.ZodString;
2207
2622
  mint: zod.ZodString;
2208
- }, zod_v4_core.$strip>>;
2209
- hasMore: zod.ZodOptional<zod.ZodBoolean>;
2623
+ }, zod_v4_core.$strip>;
2210
2624
  }, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
2211
2625
  BAD_REQUEST: {
2212
2626
  readonly status: 400;
@@ -2243,14 +2657,13 @@ declare const apiContract: {
2243
2657
  parallel: zod.ZodBoolean;
2244
2658
  tag: zod.ZodOptional<zod.ZodString>;
2245
2659
  }, zod_v4_core.$strip>;
2246
- estimatedSolFee: zod.ZodOptional<zod.ZodObject<{
2660
+ estimatedSolFee: zod.ZodObject<{
2247
2661
  amount: zod.ZodString;
2248
2662
  decimals: zod.ZodNumber;
2249
2663
  uiAmount: zod.ZodNullable<zod.ZodNumber>;
2250
2664
  uiAmountString: zod.ZodString;
2251
2665
  mint: zod.ZodString;
2252
- }, zod_v4_core.$strip>>;
2253
- hasMore: zod.ZodOptional<zod.ZodBoolean>;
2666
+ }, zod_v4_core.$strip>;
2254
2667
  }, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
2255
2668
  BAD_REQUEST: {
2256
2669
  readonly status: 400;
@@ -2292,14 +2705,13 @@ declare const apiContract: {
2292
2705
  parallel: zod.ZodBoolean;
2293
2706
  tag: zod.ZodOptional<zod.ZodString>;
2294
2707
  }, zod_v4_core.$strip>;
2295
- estimatedSolFee: zod.ZodOptional<zod.ZodObject<{
2708
+ estimatedSolFee: zod.ZodObject<{
2296
2709
  amount: zod.ZodString;
2297
2710
  decimals: zod.ZodNumber;
2298
2711
  uiAmount: zod.ZodNullable<zod.ZodNumber>;
2299
2712
  uiAmountString: zod.ZodString;
2300
2713
  mint: zod.ZodString;
2301
- }, zod_v4_core.$strip>>;
2302
- hasMore: zod.ZodOptional<zod.ZodBoolean>;
2714
+ }, zod_v4_core.$strip>;
2303
2715
  }, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
2304
2716
  BAD_REQUEST: {
2305
2717
  readonly status: 400;
@@ -2337,19 +2749,19 @@ declare const apiContract: {
2337
2749
  metadata: zod.ZodOptional<zod.ZodObject<{
2338
2750
  type: zod.ZodString;
2339
2751
  description: zod.ZodString;
2340
- }, zod_v4_core.$catchall<zod.ZodUnknown>>>;
2752
+ newPositionMint: zod.ZodOptional<zod.ZodString>;
2753
+ }, zod_v4_core.$strip>>;
2341
2754
  }, zod_v4_core.$strip>>;
2342
2755
  parallel: zod.ZodBoolean;
2343
2756
  tag: zod.ZodOptional<zod.ZodString>;
2344
2757
  }, zod_v4_core.$strip>;
2345
- estimatedSolFee: zod.ZodOptional<zod.ZodObject<{
2758
+ estimatedSolFee: zod.ZodObject<{
2346
2759
  amount: zod.ZodString;
2347
2760
  decimals: zod.ZodNumber;
2348
2761
  uiAmount: zod.ZodNullable<zod.ZodNumber>;
2349
2762
  uiAmountString: zod.ZodString;
2350
2763
  mint: zod.ZodString;
2351
- }, zod_v4_core.$strip>>;
2352
- hasMore: zod.ZodOptional<zod.ZodBoolean>;
2764
+ }, zod_v4_core.$strip>;
2353
2765
  }, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
2354
2766
  BAD_REQUEST: {
2355
2767
  readonly status: 400;
@@ -2388,14 +2800,13 @@ declare const apiContract: {
2388
2800
  parallel: zod.ZodBoolean;
2389
2801
  tag: zod.ZodOptional<zod.ZodString>;
2390
2802
  }, zod_v4_core.$strip>;
2391
- estimatedSolFee: zod.ZodOptional<zod.ZodObject<{
2803
+ estimatedSolFee: zod.ZodObject<{
2392
2804
  amount: zod.ZodString;
2393
2805
  decimals: zod.ZodNumber;
2394
2806
  uiAmount: zod.ZodNullable<zod.ZodNumber>;
2395
2807
  uiAmountString: zod.ZodString;
2396
2808
  mint: zod.ZodString;
2397
- }, zod_v4_core.$strip>>;
2398
- hasMore: zod.ZodOptional<zod.ZodBoolean>;
2809
+ }, zod_v4_core.$strip>;
2399
2810
  }, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
2400
2811
  BAD_REQUEST: {
2401
2812
  readonly status: 400;
@@ -2434,14 +2845,14 @@ declare const apiContract: {
2434
2845
  parallel: zod.ZodBoolean;
2435
2846
  tag: zod.ZodOptional<zod.ZodString>;
2436
2847
  }, zod_v4_core.$strip>;
2437
- estimatedSolFee: zod.ZodOptional<zod.ZodObject<{
2848
+ estimatedSolFee: zod.ZodObject<{
2438
2849
  amount: zod.ZodString;
2439
2850
  decimals: zod.ZodNumber;
2440
2851
  uiAmount: zod.ZodNullable<zod.ZodNumber>;
2441
2852
  uiAmountString: zod.ZodString;
2442
2853
  mint: zod.ZodString;
2443
- }, zod_v4_core.$strip>>;
2444
- hasMore: zod.ZodOptional<zod.ZodBoolean>;
2854
+ }, zod_v4_core.$strip>;
2855
+ hasMore: zod.ZodBoolean;
2445
2856
  }, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
2446
2857
  BAD_REQUEST: {
2447
2858
  readonly status: 400;
@@ -2478,14 +2889,14 @@ declare const apiContract: {
2478
2889
  parallel: zod.ZodBoolean;
2479
2890
  tag: zod.ZodOptional<zod.ZodString>;
2480
2891
  }, zod_v4_core.$strip>;
2481
- estimatedSolFee: zod.ZodOptional<zod.ZodObject<{
2892
+ estimatedSolFee: zod.ZodObject<{
2482
2893
  amount: zod.ZodString;
2483
2894
  decimals: zod.ZodNumber;
2484
2895
  uiAmount: zod.ZodNullable<zod.ZodNumber>;
2485
2896
  uiAmountString: zod.ZodString;
2486
2897
  mint: zod.ZodString;
2487
- }, zod_v4_core.$strip>>;
2488
- hasMore: zod.ZodOptional<zod.ZodBoolean>;
2898
+ }, zod_v4_core.$strip>;
2899
+ hasMore: zod.ZodBoolean;
2489
2900
  }, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
2490
2901
  BAD_REQUEST: {
2491
2902
  readonly status: 400;
@@ -2522,14 +2933,14 @@ declare const apiContract: {
2522
2933
  parallel: zod.ZodBoolean;
2523
2934
  tag: zod.ZodOptional<zod.ZodString>;
2524
2935
  }, zod_v4_core.$strip>;
2525
- estimatedSolFee: zod.ZodOptional<zod.ZodObject<{
2936
+ estimatedSolFee: zod.ZodObject<{
2526
2937
  amount: zod.ZodString;
2527
2938
  decimals: zod.ZodNumber;
2528
2939
  uiAmount: zod.ZodNullable<zod.ZodNumber>;
2529
2940
  uiAmountString: zod.ZodString;
2530
2941
  mint: zod.ZodString;
2531
- }, zod_v4_core.$strip>>;
2532
- hasMore: zod.ZodOptional<zod.ZodBoolean>;
2942
+ }, zod_v4_core.$strip>;
2943
+ hasMore: zod.ZodBoolean;
2533
2944
  }, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
2534
2945
  BAD_REQUEST: {
2535
2946
  readonly status: 400;
@@ -2566,14 +2977,13 @@ declare const apiContract: {
2566
2977
  parallel: zod.ZodBoolean;
2567
2978
  tag: zod.ZodOptional<zod.ZodString>;
2568
2979
  }, zod_v4_core.$strip>;
2569
- estimatedSolFee: zod.ZodOptional<zod.ZodObject<{
2980
+ estimatedSolFee: zod.ZodObject<{
2570
2981
  amount: zod.ZodString;
2571
2982
  decimals: zod.ZodNumber;
2572
2983
  uiAmount: zod.ZodNullable<zod.ZodNumber>;
2573
2984
  uiAmountString: zod.ZodString;
2574
2985
  mint: zod.ZodString;
2575
- }, zod_v4_core.$strip>>;
2576
- hasMore: zod.ZodOptional<zod.ZodBoolean>;
2986
+ }, zod_v4_core.$strip>;
2577
2987
  }, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
2578
2988
  BAD_REQUEST: {
2579
2989
  readonly status: 400;
@@ -2612,14 +3022,14 @@ declare const apiContract: {
2612
3022
  parallel: zod.ZodBoolean;
2613
3023
  tag: zod.ZodOptional<zod.ZodString>;
2614
3024
  }, zod_v4_core.$strip>;
2615
- estimatedSolFee: zod.ZodOptional<zod.ZodObject<{
3025
+ estimatedSolFee: zod.ZodObject<{
2616
3026
  amount: zod.ZodString;
2617
3027
  decimals: zod.ZodNumber;
2618
3028
  uiAmount: zod.ZodNullable<zod.ZodNumber>;
2619
3029
  uiAmountString: zod.ZodString;
2620
3030
  mint: zod.ZodString;
2621
- }, zod_v4_core.$strip>>;
2622
- hasMore: zod.ZodOptional<zod.ZodBoolean>;
3031
+ }, zod_v4_core.$strip>;
3032
+ hasMore: zod.ZodBoolean;
2623
3033
  }, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
2624
3034
  BAD_REQUEST: {
2625
3035
  readonly status: 400;
@@ -2658,14 +3068,14 @@ declare const apiContract: {
2658
3068
  parallel: zod.ZodBoolean;
2659
3069
  tag: zod.ZodOptional<zod.ZodString>;
2660
3070
  }, zod_v4_core.$strip>;
2661
- estimatedSolFee: zod.ZodOptional<zod.ZodObject<{
3071
+ estimatedSolFee: zod.ZodObject<{
2662
3072
  amount: zod.ZodString;
2663
3073
  decimals: zod.ZodNumber;
2664
3074
  uiAmount: zod.ZodNullable<zod.ZodNumber>;
2665
3075
  uiAmountString: zod.ZodString;
2666
3076
  mint: zod.ZodString;
2667
- }, zod_v4_core.$strip>>;
2668
- hasMore: zod.ZodOptional<zod.ZodBoolean>;
3077
+ }, zod_v4_core.$strip>;
3078
+ hasMore: zod.ZodBoolean;
2669
3079
  }, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
2670
3080
  BAD_REQUEST: {
2671
3081
  readonly status: 400;
@@ -2698,19 +3108,20 @@ declare const apiContract: {
2698
3108
  metadata: zod.ZodOptional<zod.ZodObject<{
2699
3109
  type: zod.ZodString;
2700
3110
  description: zod.ZodString;
2701
- }, zod_v4_core.$catchall<zod.ZodUnknown>>>;
3111
+ votesRelinquished: zod.ZodOptional<zod.ZodNumber>;
3112
+ }, zod_v4_core.$strip>>;
2702
3113
  }, zod_v4_core.$strip>>;
2703
3114
  parallel: zod.ZodBoolean;
2704
3115
  tag: zod.ZodOptional<zod.ZodString>;
2705
3116
  }, zod_v4_core.$strip>;
2706
- estimatedSolFee: zod.ZodOptional<zod.ZodObject<{
3117
+ estimatedSolFee: zod.ZodObject<{
2707
3118
  amount: zod.ZodString;
2708
3119
  decimals: zod.ZodNumber;
2709
3120
  uiAmount: zod.ZodNullable<zod.ZodNumber>;
2710
3121
  uiAmountString: zod.ZodString;
2711
3122
  mint: zod.ZodString;
2712
- }, zod_v4_core.$strip>>;
2713
- hasMore: zod.ZodOptional<zod.ZodBoolean>;
3123
+ }, zod_v4_core.$strip>;
3124
+ hasMore: zod.ZodBoolean;
2714
3125
  }, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
2715
3126
  BAD_REQUEST: {
2716
3127
  readonly status: 400;
@@ -2749,14 +3160,14 @@ declare const apiContract: {
2749
3160
  parallel: zod.ZodBoolean;
2750
3161
  tag: zod.ZodOptional<zod.ZodString>;
2751
3162
  }, zod_v4_core.$strip>;
2752
- estimatedSolFee: zod.ZodOptional<zod.ZodObject<{
3163
+ estimatedSolFee: zod.ZodObject<{
2753
3164
  amount: zod.ZodString;
2754
3165
  decimals: zod.ZodNumber;
2755
3166
  uiAmount: zod.ZodNullable<zod.ZodNumber>;
2756
3167
  uiAmountString: zod.ZodString;
2757
3168
  mint: zod.ZodString;
2758
- }, zod_v4_core.$strip>>;
2759
- hasMore: zod.ZodOptional<zod.ZodBoolean>;
3169
+ }, zod_v4_core.$strip>;
3170
+ hasMore: zod.ZodBoolean;
2760
3171
  }, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
2761
3172
  BAD_REQUEST: {
2762
3173
  readonly status: 400;
@@ -2794,14 +3205,14 @@ declare const apiContract: {
2794
3205
  parallel: zod.ZodBoolean;
2795
3206
  tag: zod.ZodOptional<zod.ZodString>;
2796
3207
  }, zod_v4_core.$strip>;
2797
- estimatedSolFee: zod.ZodOptional<zod.ZodObject<{
3208
+ estimatedSolFee: zod.ZodObject<{
2798
3209
  amount: zod.ZodString;
2799
3210
  decimals: zod.ZodNumber;
2800
3211
  uiAmount: zod.ZodNullable<zod.ZodNumber>;
2801
3212
  uiAmountString: zod.ZodString;
2802
3213
  mint: zod.ZodString;
2803
- }, zod_v4_core.$strip>>;
2804
- hasMore: zod.ZodOptional<zod.ZodBoolean>;
3214
+ }, zod_v4_core.$strip>;
3215
+ hasMore: zod.ZodBoolean;
2805
3216
  }, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
2806
3217
  BAD_REQUEST: {
2807
3218
  readonly status: 400;
@@ -4354,6 +4765,24 @@ declare const apiContract: {
4354
4765
  }, zod_v4_core.$strip>;
4355
4766
  lazyDistributor: zod.ZodString;
4356
4767
  }, zod_v4_core.$strip>, zod.ZodObject<{
4768
+ transactionData: zod.ZodObject<{
4769
+ transactions: zod.ZodArray<zod.ZodObject<{
4770
+ serializedTransaction: zod.ZodString;
4771
+ metadata: zod.ZodOptional<zod.ZodObject<{
4772
+ type: zod.ZodString;
4773
+ description: zod.ZodString;
4774
+ }, zod_v4_core.$catchall<zod.ZodUnknown>>>;
4775
+ }, zod_v4_core.$strip>>;
4776
+ parallel: zod.ZodBoolean;
4777
+ tag: zod.ZodOptional<zod.ZodString>;
4778
+ }, zod_v4_core.$strip>;
4779
+ estimatedSolFee: zod.ZodObject<{
4780
+ amount: zod.ZodString;
4781
+ decimals: zod.ZodNumber;
4782
+ uiAmount: zod.ZodNullable<zod.ZodNumber>;
4783
+ uiAmountString: zod.ZodString;
4784
+ mint: zod.ZodString;
4785
+ }, zod_v4_core.$strip>;
4357
4786
  welcomePack: zod.ZodObject<{
4358
4787
  address: zod.ZodString;
4359
4788
  id: zod.ZodNumber;
@@ -4409,24 +4838,6 @@ declare const apiContract: {
4409
4838
  ownershipType: zod.ZodString;
4410
4839
  }, zod_v4_core.$strip>>;
4411
4840
  }, zod_v4_core.$strip>;
4412
- transactionData: zod.ZodObject<{
4413
- transactions: zod.ZodArray<zod.ZodObject<{
4414
- serializedTransaction: zod.ZodString;
4415
- metadata: zod.ZodOptional<zod.ZodObject<{
4416
- type: zod.ZodString;
4417
- description: zod.ZodString;
4418
- }, zod_v4_core.$catchall<zod.ZodUnknown>>>;
4419
- }, zod_v4_core.$strip>>;
4420
- parallel: zod.ZodBoolean;
4421
- tag: zod.ZodOptional<zod.ZodString>;
4422
- }, zod_v4_core.$strip>;
4423
- estimatedSolFee: zod.ZodObject<{
4424
- amount: zod.ZodString;
4425
- decimals: zod.ZodNumber;
4426
- uiAmount: zod.ZodNullable<zod.ZodNumber>;
4427
- uiAmountString: zod.ZodString;
4428
- mint: zod.ZodString;
4429
- }, zod_v4_core.$strip>;
4430
4841
  }, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
4431
4842
  BAD_REQUEST: {
4432
4843
  readonly status: 400;
@@ -4910,13 +5321,6 @@ declare const fullApiContract: {
4910
5321
  timeTaken: zod.ZodOptional<zod.ZodNumber>;
4911
5322
  }, zod_v4_core.$loose>;
4912
5323
  }, zod_v4_core.$strip>, zod.ZodObject<{
4913
- bridgeTransfer: zod.ZodObject<{
4914
- id: zod.ZodString;
4915
- state: zod.ZodString;
4916
- source_deposit_instructions: zod.ZodObject<{
4917
- to_address: zod.ZodString;
4918
- }, zod_v4_core.$strip>;
4919
- }, zod_v4_core.$loose>;
4920
5324
  transactionData: zod.ZodObject<{
4921
5325
  transactions: zod.ZodArray<zod.ZodObject<{
4922
5326
  serializedTransaction: zod.ZodString;
@@ -4928,6 +5332,20 @@ declare const fullApiContract: {
4928
5332
  parallel: zod.ZodBoolean;
4929
5333
  tag: zod.ZodOptional<zod.ZodString>;
4930
5334
  }, zod_v4_core.$strip>;
5335
+ estimatedSolFee: zod.ZodObject<{
5336
+ amount: zod.ZodString;
5337
+ decimals: zod.ZodNumber;
5338
+ uiAmount: zod.ZodNullable<zod.ZodNumber>;
5339
+ uiAmountString: zod.ZodString;
5340
+ mint: zod.ZodString;
5341
+ }, zod_v4_core.$strip>;
5342
+ bridgeTransfer: zod.ZodObject<{
5343
+ id: zod.ZodString;
5344
+ state: zod.ZodString;
5345
+ source_deposit_instructions: zod.ZodObject<{
5346
+ to_address: zod.ZodString;
5347
+ }, zod_v4_core.$strip>;
5348
+ }, zod_v4_core.$loose>;
4931
5349
  }, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<_orpc_contract.MergedErrorMap<Record<never, never>, {
4932
5350
  UNAUTHENTICATED: {
4933
5351
  readonly status: 401;
@@ -5133,19 +5551,19 @@ declare const fullApiContract: {
5133
5551
  metadata: zod.ZodOptional<zod.ZodObject<{
5134
5552
  type: zod.ZodString;
5135
5553
  description: zod.ZodString;
5136
- }, zod_v4_core.$catchall<zod.ZodUnknown>>>;
5554
+ positionMint: zod.ZodOptional<zod.ZodString>;
5555
+ }, zod_v4_core.$strip>>;
5137
5556
  }, zod_v4_core.$strip>>;
5138
5557
  parallel: zod.ZodBoolean;
5139
5558
  tag: zod.ZodOptional<zod.ZodString>;
5140
5559
  }, zod_v4_core.$strip>;
5141
- estimatedSolFee: zod.ZodOptional<zod.ZodObject<{
5560
+ estimatedSolFee: zod.ZodObject<{
5142
5561
  amount: zod.ZodString;
5143
5562
  decimals: zod.ZodNumber;
5144
5563
  uiAmount: zod.ZodNullable<zod.ZodNumber>;
5145
5564
  uiAmountString: zod.ZodString;
5146
5565
  mint: zod.ZodString;
5147
- }, zod_v4_core.$strip>>;
5148
- hasMore: zod.ZodOptional<zod.ZodBoolean>;
5566
+ }, zod_v4_core.$strip>;
5149
5567
  }, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
5150
5568
  BAD_REQUEST: {
5151
5569
  readonly status: 400;
@@ -5178,14 +5596,13 @@ declare const fullApiContract: {
5178
5596
  parallel: zod.ZodBoolean;
5179
5597
  tag: zod.ZodOptional<zod.ZodString>;
5180
5598
  }, zod_v4_core.$strip>;
5181
- estimatedSolFee: zod.ZodOptional<zod.ZodObject<{
5599
+ estimatedSolFee: zod.ZodObject<{
5182
5600
  amount: zod.ZodString;
5183
5601
  decimals: zod.ZodNumber;
5184
5602
  uiAmount: zod.ZodNullable<zod.ZodNumber>;
5185
5603
  uiAmountString: zod.ZodString;
5186
5604
  mint: zod.ZodString;
5187
- }, zod_v4_core.$strip>>;
5188
- hasMore: zod.ZodOptional<zod.ZodBoolean>;
5605
+ }, zod_v4_core.$strip>;
5189
5606
  }, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
5190
5607
  BAD_REQUEST: {
5191
5608
  readonly status: 400;
@@ -5227,14 +5644,13 @@ declare const fullApiContract: {
5227
5644
  parallel: zod.ZodBoolean;
5228
5645
  tag: zod.ZodOptional<zod.ZodString>;
5229
5646
  }, zod_v4_core.$strip>;
5230
- estimatedSolFee: zod.ZodOptional<zod.ZodObject<{
5647
+ estimatedSolFee: zod.ZodObject<{
5231
5648
  amount: zod.ZodString;
5232
5649
  decimals: zod.ZodNumber;
5233
5650
  uiAmount: zod.ZodNullable<zod.ZodNumber>;
5234
5651
  uiAmountString: zod.ZodString;
5235
5652
  mint: zod.ZodString;
5236
- }, zod_v4_core.$strip>>;
5237
- hasMore: zod.ZodOptional<zod.ZodBoolean>;
5653
+ }, zod_v4_core.$strip>;
5238
5654
  }, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
5239
5655
  BAD_REQUEST: {
5240
5656
  readonly status: 400;
@@ -5271,14 +5687,13 @@ declare const fullApiContract: {
5271
5687
  parallel: zod.ZodBoolean;
5272
5688
  tag: zod.ZodOptional<zod.ZodString>;
5273
5689
  }, zod_v4_core.$strip>;
5274
- estimatedSolFee: zod.ZodOptional<zod.ZodObject<{
5690
+ estimatedSolFee: zod.ZodObject<{
5275
5691
  amount: zod.ZodString;
5276
5692
  decimals: zod.ZodNumber;
5277
5693
  uiAmount: zod.ZodNullable<zod.ZodNumber>;
5278
5694
  uiAmountString: zod.ZodString;
5279
5695
  mint: zod.ZodString;
5280
- }, zod_v4_core.$strip>>;
5281
- hasMore: zod.ZodOptional<zod.ZodBoolean>;
5696
+ }, zod_v4_core.$strip>;
5282
5697
  }, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
5283
5698
  BAD_REQUEST: {
5284
5699
  readonly status: 400;
@@ -5320,14 +5735,13 @@ declare const fullApiContract: {
5320
5735
  parallel: zod.ZodBoolean;
5321
5736
  tag: zod.ZodOptional<zod.ZodString>;
5322
5737
  }, zod_v4_core.$strip>;
5323
- estimatedSolFee: zod.ZodOptional<zod.ZodObject<{
5738
+ estimatedSolFee: zod.ZodObject<{
5324
5739
  amount: zod.ZodString;
5325
5740
  decimals: zod.ZodNumber;
5326
5741
  uiAmount: zod.ZodNullable<zod.ZodNumber>;
5327
5742
  uiAmountString: zod.ZodString;
5328
5743
  mint: zod.ZodString;
5329
- }, zod_v4_core.$strip>>;
5330
- hasMore: zod.ZodOptional<zod.ZodBoolean>;
5744
+ }, zod_v4_core.$strip>;
5331
5745
  }, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
5332
5746
  BAD_REQUEST: {
5333
5747
  readonly status: 400;
@@ -5365,19 +5779,19 @@ declare const fullApiContract: {
5365
5779
  metadata: zod.ZodOptional<zod.ZodObject<{
5366
5780
  type: zod.ZodString;
5367
5781
  description: zod.ZodString;
5368
- }, zod_v4_core.$catchall<zod.ZodUnknown>>>;
5782
+ newPositionMint: zod.ZodOptional<zod.ZodString>;
5783
+ }, zod_v4_core.$strip>>;
5369
5784
  }, zod_v4_core.$strip>>;
5370
5785
  parallel: zod.ZodBoolean;
5371
5786
  tag: zod.ZodOptional<zod.ZodString>;
5372
5787
  }, zod_v4_core.$strip>;
5373
- estimatedSolFee: zod.ZodOptional<zod.ZodObject<{
5788
+ estimatedSolFee: zod.ZodObject<{
5374
5789
  amount: zod.ZodString;
5375
5790
  decimals: zod.ZodNumber;
5376
5791
  uiAmount: zod.ZodNullable<zod.ZodNumber>;
5377
5792
  uiAmountString: zod.ZodString;
5378
5793
  mint: zod.ZodString;
5379
- }, zod_v4_core.$strip>>;
5380
- hasMore: zod.ZodOptional<zod.ZodBoolean>;
5794
+ }, zod_v4_core.$strip>;
5381
5795
  }, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
5382
5796
  BAD_REQUEST: {
5383
5797
  readonly status: 400;
@@ -5416,14 +5830,13 @@ declare const fullApiContract: {
5416
5830
  parallel: zod.ZodBoolean;
5417
5831
  tag: zod.ZodOptional<zod.ZodString>;
5418
5832
  }, zod_v4_core.$strip>;
5419
- estimatedSolFee: zod.ZodOptional<zod.ZodObject<{
5833
+ estimatedSolFee: zod.ZodObject<{
5420
5834
  amount: zod.ZodString;
5421
5835
  decimals: zod.ZodNumber;
5422
5836
  uiAmount: zod.ZodNullable<zod.ZodNumber>;
5423
5837
  uiAmountString: zod.ZodString;
5424
5838
  mint: zod.ZodString;
5425
- }, zod_v4_core.$strip>>;
5426
- hasMore: zod.ZodOptional<zod.ZodBoolean>;
5839
+ }, zod_v4_core.$strip>;
5427
5840
  }, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
5428
5841
  BAD_REQUEST: {
5429
5842
  readonly status: 400;
@@ -5462,14 +5875,14 @@ declare const fullApiContract: {
5462
5875
  parallel: zod.ZodBoolean;
5463
5876
  tag: zod.ZodOptional<zod.ZodString>;
5464
5877
  }, zod_v4_core.$strip>;
5465
- estimatedSolFee: zod.ZodOptional<zod.ZodObject<{
5878
+ estimatedSolFee: zod.ZodObject<{
5466
5879
  amount: zod.ZodString;
5467
5880
  decimals: zod.ZodNumber;
5468
5881
  uiAmount: zod.ZodNullable<zod.ZodNumber>;
5469
5882
  uiAmountString: zod.ZodString;
5470
5883
  mint: zod.ZodString;
5471
- }, zod_v4_core.$strip>>;
5472
- hasMore: zod.ZodOptional<zod.ZodBoolean>;
5884
+ }, zod_v4_core.$strip>;
5885
+ hasMore: zod.ZodBoolean;
5473
5886
  }, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
5474
5887
  BAD_REQUEST: {
5475
5888
  readonly status: 400;
@@ -5506,14 +5919,14 @@ declare const fullApiContract: {
5506
5919
  parallel: zod.ZodBoolean;
5507
5920
  tag: zod.ZodOptional<zod.ZodString>;
5508
5921
  }, zod_v4_core.$strip>;
5509
- estimatedSolFee: zod.ZodOptional<zod.ZodObject<{
5922
+ estimatedSolFee: zod.ZodObject<{
5510
5923
  amount: zod.ZodString;
5511
5924
  decimals: zod.ZodNumber;
5512
5925
  uiAmount: zod.ZodNullable<zod.ZodNumber>;
5513
5926
  uiAmountString: zod.ZodString;
5514
5927
  mint: zod.ZodString;
5515
- }, zod_v4_core.$strip>>;
5516
- hasMore: zod.ZodOptional<zod.ZodBoolean>;
5928
+ }, zod_v4_core.$strip>;
5929
+ hasMore: zod.ZodBoolean;
5517
5930
  }, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
5518
5931
  BAD_REQUEST: {
5519
5932
  readonly status: 400;
@@ -5550,14 +5963,14 @@ declare const fullApiContract: {
5550
5963
  parallel: zod.ZodBoolean;
5551
5964
  tag: zod.ZodOptional<zod.ZodString>;
5552
5965
  }, zod_v4_core.$strip>;
5553
- estimatedSolFee: zod.ZodOptional<zod.ZodObject<{
5966
+ estimatedSolFee: zod.ZodObject<{
5554
5967
  amount: zod.ZodString;
5555
5968
  decimals: zod.ZodNumber;
5556
5969
  uiAmount: zod.ZodNullable<zod.ZodNumber>;
5557
5970
  uiAmountString: zod.ZodString;
5558
5971
  mint: zod.ZodString;
5559
- }, zod_v4_core.$strip>>;
5560
- hasMore: zod.ZodOptional<zod.ZodBoolean>;
5972
+ }, zod_v4_core.$strip>;
5973
+ hasMore: zod.ZodBoolean;
5561
5974
  }, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
5562
5975
  BAD_REQUEST: {
5563
5976
  readonly status: 400;
@@ -5594,14 +6007,13 @@ declare const fullApiContract: {
5594
6007
  parallel: zod.ZodBoolean;
5595
6008
  tag: zod.ZodOptional<zod.ZodString>;
5596
6009
  }, zod_v4_core.$strip>;
5597
- estimatedSolFee: zod.ZodOptional<zod.ZodObject<{
6010
+ estimatedSolFee: zod.ZodObject<{
5598
6011
  amount: zod.ZodString;
5599
6012
  decimals: zod.ZodNumber;
5600
6013
  uiAmount: zod.ZodNullable<zod.ZodNumber>;
5601
6014
  uiAmountString: zod.ZodString;
5602
6015
  mint: zod.ZodString;
5603
- }, zod_v4_core.$strip>>;
5604
- hasMore: zod.ZodOptional<zod.ZodBoolean>;
6016
+ }, zod_v4_core.$strip>;
5605
6017
  }, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
5606
6018
  BAD_REQUEST: {
5607
6019
  readonly status: 400;
@@ -5640,14 +6052,14 @@ declare const fullApiContract: {
5640
6052
  parallel: zod.ZodBoolean;
5641
6053
  tag: zod.ZodOptional<zod.ZodString>;
5642
6054
  }, zod_v4_core.$strip>;
5643
- estimatedSolFee: zod.ZodOptional<zod.ZodObject<{
6055
+ estimatedSolFee: zod.ZodObject<{
5644
6056
  amount: zod.ZodString;
5645
6057
  decimals: zod.ZodNumber;
5646
6058
  uiAmount: zod.ZodNullable<zod.ZodNumber>;
5647
6059
  uiAmountString: zod.ZodString;
5648
6060
  mint: zod.ZodString;
5649
- }, zod_v4_core.$strip>>;
5650
- hasMore: zod.ZodOptional<zod.ZodBoolean>;
6061
+ }, zod_v4_core.$strip>;
6062
+ hasMore: zod.ZodBoolean;
5651
6063
  }, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
5652
6064
  BAD_REQUEST: {
5653
6065
  readonly status: 400;
@@ -5686,14 +6098,14 @@ declare const fullApiContract: {
5686
6098
  parallel: zod.ZodBoolean;
5687
6099
  tag: zod.ZodOptional<zod.ZodString>;
5688
6100
  }, zod_v4_core.$strip>;
5689
- estimatedSolFee: zod.ZodOptional<zod.ZodObject<{
6101
+ estimatedSolFee: zod.ZodObject<{
5690
6102
  amount: zod.ZodString;
5691
6103
  decimals: zod.ZodNumber;
5692
6104
  uiAmount: zod.ZodNullable<zod.ZodNumber>;
5693
6105
  uiAmountString: zod.ZodString;
5694
6106
  mint: zod.ZodString;
5695
- }, zod_v4_core.$strip>>;
5696
- hasMore: zod.ZodOptional<zod.ZodBoolean>;
6107
+ }, zod_v4_core.$strip>;
6108
+ hasMore: zod.ZodBoolean;
5697
6109
  }, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
5698
6110
  BAD_REQUEST: {
5699
6111
  readonly status: 400;
@@ -5726,19 +6138,20 @@ declare const fullApiContract: {
5726
6138
  metadata: zod.ZodOptional<zod.ZodObject<{
5727
6139
  type: zod.ZodString;
5728
6140
  description: zod.ZodString;
5729
- }, zod_v4_core.$catchall<zod.ZodUnknown>>>;
6141
+ votesRelinquished: zod.ZodOptional<zod.ZodNumber>;
6142
+ }, zod_v4_core.$strip>>;
5730
6143
  }, zod_v4_core.$strip>>;
5731
6144
  parallel: zod.ZodBoolean;
5732
6145
  tag: zod.ZodOptional<zod.ZodString>;
5733
6146
  }, zod_v4_core.$strip>;
5734
- estimatedSolFee: zod.ZodOptional<zod.ZodObject<{
6147
+ estimatedSolFee: zod.ZodObject<{
5735
6148
  amount: zod.ZodString;
5736
6149
  decimals: zod.ZodNumber;
5737
6150
  uiAmount: zod.ZodNullable<zod.ZodNumber>;
5738
6151
  uiAmountString: zod.ZodString;
5739
6152
  mint: zod.ZodString;
5740
- }, zod_v4_core.$strip>>;
5741
- hasMore: zod.ZodOptional<zod.ZodBoolean>;
6153
+ }, zod_v4_core.$strip>;
6154
+ hasMore: zod.ZodBoolean;
5742
6155
  }, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
5743
6156
  BAD_REQUEST: {
5744
6157
  readonly status: 400;
@@ -5777,14 +6190,14 @@ declare const fullApiContract: {
5777
6190
  parallel: zod.ZodBoolean;
5778
6191
  tag: zod.ZodOptional<zod.ZodString>;
5779
6192
  }, zod_v4_core.$strip>;
5780
- estimatedSolFee: zod.ZodOptional<zod.ZodObject<{
6193
+ estimatedSolFee: zod.ZodObject<{
5781
6194
  amount: zod.ZodString;
5782
6195
  decimals: zod.ZodNumber;
5783
6196
  uiAmount: zod.ZodNullable<zod.ZodNumber>;
5784
6197
  uiAmountString: zod.ZodString;
5785
6198
  mint: zod.ZodString;
5786
- }, zod_v4_core.$strip>>;
5787
- hasMore: zod.ZodOptional<zod.ZodBoolean>;
6199
+ }, zod_v4_core.$strip>;
6200
+ hasMore: zod.ZodBoolean;
5788
6201
  }, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
5789
6202
  BAD_REQUEST: {
5790
6203
  readonly status: 400;
@@ -5822,14 +6235,14 @@ declare const fullApiContract: {
5822
6235
  parallel: zod.ZodBoolean;
5823
6236
  tag: zod.ZodOptional<zod.ZodString>;
5824
6237
  }, zod_v4_core.$strip>;
5825
- estimatedSolFee: zod.ZodOptional<zod.ZodObject<{
6238
+ estimatedSolFee: zod.ZodObject<{
5826
6239
  amount: zod.ZodString;
5827
6240
  decimals: zod.ZodNumber;
5828
6241
  uiAmount: zod.ZodNullable<zod.ZodNumber>;
5829
6242
  uiAmountString: zod.ZodString;
5830
6243
  mint: zod.ZodString;
5831
- }, zod_v4_core.$strip>>;
5832
- hasMore: zod.ZodOptional<zod.ZodBoolean>;
6244
+ }, zod_v4_core.$strip>;
6245
+ hasMore: zod.ZodBoolean;
5833
6246
  }, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
5834
6247
  BAD_REQUEST: {
5835
6248
  readonly status: 400;
@@ -7382,6 +7795,24 @@ declare const fullApiContract: {
7382
7795
  }, zod_v4_core.$strip>;
7383
7796
  lazyDistributor: zod.ZodString;
7384
7797
  }, zod_v4_core.$strip>, zod.ZodObject<{
7798
+ transactionData: zod.ZodObject<{
7799
+ transactions: zod.ZodArray<zod.ZodObject<{
7800
+ serializedTransaction: zod.ZodString;
7801
+ metadata: zod.ZodOptional<zod.ZodObject<{
7802
+ type: zod.ZodString;
7803
+ description: zod.ZodString;
7804
+ }, zod_v4_core.$catchall<zod.ZodUnknown>>>;
7805
+ }, zod_v4_core.$strip>>;
7806
+ parallel: zod.ZodBoolean;
7807
+ tag: zod.ZodOptional<zod.ZodString>;
7808
+ }, zod_v4_core.$strip>;
7809
+ estimatedSolFee: zod.ZodObject<{
7810
+ amount: zod.ZodString;
7811
+ decimals: zod.ZodNumber;
7812
+ uiAmount: zod.ZodNullable<zod.ZodNumber>;
7813
+ uiAmountString: zod.ZodString;
7814
+ mint: zod.ZodString;
7815
+ }, zod_v4_core.$strip>;
7385
7816
  welcomePack: zod.ZodObject<{
7386
7817
  address: zod.ZodString;
7387
7818
  id: zod.ZodNumber;
@@ -7437,24 +7868,6 @@ declare const fullApiContract: {
7437
7868
  ownershipType: zod.ZodString;
7438
7869
  }, zod_v4_core.$strip>>;
7439
7870
  }, zod_v4_core.$strip>;
7440
- transactionData: zod.ZodObject<{
7441
- transactions: zod.ZodArray<zod.ZodObject<{
7442
- serializedTransaction: zod.ZodString;
7443
- metadata: zod.ZodOptional<zod.ZodObject<{
7444
- type: zod.ZodString;
7445
- description: zod.ZodString;
7446
- }, zod_v4_core.$catchall<zod.ZodUnknown>>>;
7447
- }, zod_v4_core.$strip>>;
7448
- parallel: zod.ZodBoolean;
7449
- tag: zod.ZodOptional<zod.ZodString>;
7450
- }, zod_v4_core.$strip>;
7451
- estimatedSolFee: zod.ZodObject<{
7452
- amount: zod.ZodString;
7453
- decimals: zod.ZodNumber;
7454
- uiAmount: zod.ZodNullable<zod.ZodNumber>;
7455
- uiAmountString: zod.ZodString;
7456
- mint: zod.ZodString;
7457
- }, zod_v4_core.$strip>;
7458
7871
  }, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
7459
7872
  BAD_REQUEST: {
7460
7873
  readonly status: 400;
@@ -7708,4 +8121,4 @@ declare const fullApiContract: {
7708
8121
  };
7709
8122
  };
7710
8123
 
7711
- export { type AssignProxiesInput, AssignProxiesInputSchema, AutomationScheduleSchema, type AutomationStatus, AutomationStatusOutputSchema, BAD_REQUEST, type BankAccount, type BankAccountListOutput, BankAccountListOutputSchema, BankAccountSchema, type BatchStatusOutput, BatchStatusOutputSchema, type BridgeTransfer, BridgeTransferSchema, CONFLICT, type ClaimDelegationRewardsInput, ClaimDelegationRewardsInputSchema, ClaimInviteRequestSchema, ClaimInviteResponseSchema, type ClaimRewardsInput, ClaimRewardsInputSchema, ClaimRewardsOutputSchema, type CloseAutomationInput, CloseAutomationInputSchema, CloseAutomationOutputSchema, type ClosePositionInput, ClosePositionInputSchema, type CreateBankAccountInput, CreateBankAccountInputSchema, type CreateHntAccountInput, CreateHntAccountInputSchema, type CreateHntAccountOutput, CreateHntAccountOutputSchema, CreateInviteResponseSchema, type CreatePositionInput, CreatePositionInputSchema, CreateRewardContractTransactionInputSchema, CreateRewardContractTransactionResponseSchema, type CreateSplitInput, CreateSplitInputSchema, CreateSplitOutputSchema, type DelegatePositionInput, DelegatePositionInputSchema, type DeleteBankAccountInput, DeleteBankAccountInputSchema, type DeleteBankAccountOutput, DeleteBankAccountOutputSchema, DeleteRewardContractTransactionResponseSchema, type DeleteSplitInput, DeleteSplitInputSchema, DeleteSplitOutputSchema, type DeviceType, DeviceTypeSchema, type ErrorResponse, ErrorResponseSchema, EstimateCostToCreateRewardContractResponseSchema, type EstimateInput, EstimateInputSchema, type EstimateOutput, EstimateOutputSchema, type ExtendDelegationInput, ExtendDelegationInputSchema, type ExtendPositionInput, ExtendPositionInputSchema, type FeesOutput, FeesOutputSchema, FindRewardContractResponseSchema, type FlipLockupKindInput, FlipLockupKindInputSchema, type FundAutomationInput, FundAutomationInputSchema, FundAutomationOutputSchema, type FundingEstimate, FundingEstimateOutputSchema, type GetAutomationStatusInput, GetAutomationStatusInputSchema, type GetBalancesInput, GetBalancesInputSchema, type GetBankAccountInput, GetBankAccountInputSchema, type GetByPayerAndTagInput, GetByPayerAndTagInputSchema, type GetByPayerInput, GetByPayerInputSchema, type GetFundingEstimateInput, GetFundingEstimateInputSchema, type GetHotspotsInput, GetHotspotsInputSchema, type GetInput, GetInputSchema, type GetInstructionsInput, GetInstructionsInputSchema, type GetPendingRewardsInput, GetPendingRewardsInputSchema, type GetPendingRewardsOutput, GetPendingRewardsOutputSchema, type GetQuoteInput, GetQuoteInputSchema, type GetSendQuoteInput, GetSendQuoteInputSchema, type GetSplitInput, GetSplitInputSchema, type GetTokensInput, GetTokensInputSchema, type GetTransferInput, GetTransferInputSchema, type GovernanceTransactionResponse, GovernanceTransactionResponseSchema, type HealthResponse, HealthResponseSchema, HeliumPublicKeySchema, type Hotspot, HotspotSchema, HotspotSharesSchema, type HotspotType, HotspotTypeSchema, type HotspotsData, HotspotsDataSchema, INSUFFICIENT_FUNDS, INVALID_WALLET_ADDRESS, type InitKycInput, InitKycInputSchema, type KycStatusOutput, KycStatusOutputSchema, type LockupKind, LockupKindSchema, MigratableHotspotSchema, type MigratableHotspotsInput, MigratableHotspotsInputSchema, type MigratableHotspotsOutput, MigratableHotspotsOutputSchema, type MigrateInput, MigrateInputSchema, type MigrateOutput, MigrateOutputSchema, MigrateTransactionDataSchema, MigrateTransactionItemSchema, NOT_FOUND, type OwnershipType, OwnershipTypeSchema, PaginationInputSchema, PaginationOutputSchema, type PayerBatchSummary, PayerBatchSummarySchema, type PayerBatchesOutput, PayerBatchesOutputSchema, PublicKeySchema, QuoteOutputSchema, type QuoteResponse, QuoteResponseSchema, RATE_LIMITED, type RelinquishPositionVotesInput, RelinquishPositionVotesInputSchema, type RelinquishVoteInput, RelinquishVoteInputSchema, type ResetLockupInput, ResetLockupInputSchema, type ResubmitInput, ResubmitInputSchema, type ResubmitOutput, ResubmitOutputSchema, type RewardSplitInput, RewardSplitInputSchema, SIMULATION_FAILED, type ScheduleInput, ScheduleInputSchema, type SendFundsInput, SendFundsInputSchema, type SendFundsOutput, SendFundsOutputSchema, type SetupAutomationInput, SetupAutomationInputSchema, SetupAutomationOutputSchema, type SplitPositionInput, SplitPositionInputSchema, type SplitResponse, SplitResponseSchema, type SplitShare, SplitShareSchema, type SubmitInput, SubmitInputSchema, type SubmitOutput, SubmitOutputSchema, SwapTransactionDataSchema, TRANSACTION_FAILED, type Token, type TokenAccount, TokenAccountSchema, type TokenAmountInput, TokenAmountInputSchema, type TokenAmountOutput, TokenAmountOutputSchema, type TokenBalanceData, TokenBalanceDataSchema, type TokenListOutput, TokenListOutputSchema, TokenSchema, type TransactionBatchRequest, TransactionBatchRequestSchema, type TransactionBatchResponse, TransactionBatchResponseSchema, type TransactionData, TransactionDataSchema, type TransactionItem, TransactionItemSchema, type TransactionMetadata, TransactionMetadataSchema, type TransactionStatus, TransactionStatusSchema, type TransferHotspotInput, TransferHotspotInputSchema, TransferHotspotOutputSchema, type TransferInput, TransferInputSchema, type TransferOutput, TransferOutputSchema, type TransferPositionInput, TransferPositionInputSchema, UNAUTHENTICATED, UNAUTHORIZED, type UnassignProxiesInput, UnassignProxiesInputSchema, type UndelegateInput, UndelegateInputSchema, UpdateHotspotInfoInputSchema, UpdateHotspotInfoOutputSchema, type UpdateRewardsDestinationInput, UpdateRewardsDestinationInputSchema, UpdateRewardsDestinationOutputSchema, type UpdateTransferInput, UpdateTransferInputSchema, type UpdateTransferOutput, UpdateTransferOutputSchema, type VoteInput, VoteInputSchema, WalletAddressSchema, type WelcomePack, type WelcomePackClaimInput, WelcomePackClaimInputSchema, type WelcomePackClaimOutput, WelcomePackClaimOutputSchema, type WelcomePackCreateInput, WelcomePackCreateInputSchema, type WelcomePackCreateOutput, WelcomePackCreateOutputSchema, type WelcomePackDeleteInput, WelcomePackDeleteInputSchema, type WelcomePackDeleteOutput, WelcomePackDeleteOutputSchema, type WelcomePackGetByAddressInput, WelcomePackGetByAddressInputSchema, type WelcomePackGetInput, WelcomePackGetInputSchema, type WelcomePackInviteInput, WelcomePackInviteInputSchema, type WelcomePackInviteOutput, WelcomePackInviteOutputSchema, type WelcomePackListInput, WelcomePackListInputSchema, type WelcomePackListOutput, WelcomePackListOutputSchema, WelcomePackSchema, apiContract, fullApiContract };
8124
+ export { type AssignProxiesInput, AssignProxiesInputSchema, type AssignProxiesResponse, AssignProxiesResponseSchema, AutomationScheduleSchema, type AutomationStatus, AutomationStatusOutputSchema, BAD_REQUEST, type BankAccount, type BankAccountListOutput, BankAccountListOutputSchema, BankAccountSchema, type BatchStatusOutput, BatchStatusOutputSchema, type BridgeTransfer, BridgeTransferSchema, CONFLICT, type ClaimDelegationRewardsInput, ClaimDelegationRewardsInputSchema, type ClaimDelegationRewardsResponse, ClaimDelegationRewardsResponseSchema, ClaimInviteRequestSchema, ClaimInviteResponseSchema, type ClaimRewardsInput, ClaimRewardsInputSchema, ClaimRewardsOutputSchema, type CloseAutomationInput, CloseAutomationInputSchema, CloseAutomationOutputSchema, type ClosePositionInput, ClosePositionInputSchema, type ClosePositionResponse, ClosePositionResponseSchema, type CreateBankAccountInput, CreateBankAccountInputSchema, type CreateHntAccountInput, CreateHntAccountInputSchema, type CreateHntAccountOutput, CreateHntAccountOutputSchema, CreateInviteResponseSchema, type CreatePositionInput, CreatePositionInputSchema, type CreatePositionResponse, CreatePositionResponseSchema, CreateRewardContractTransactionInputSchema, CreateRewardContractTransactionResponseSchema, type CreateSplitInput, CreateSplitInputSchema, CreateSplitOutputSchema, type DelegatePositionInput, DelegatePositionInputSchema, type DelegatePositionsResponse, DelegatePositionsResponseSchema, type DeleteBankAccountInput, DeleteBankAccountInputSchema, type DeleteBankAccountOutput, DeleteBankAccountOutputSchema, DeleteRewardContractTransactionResponseSchema, type DeleteSplitInput, DeleteSplitInputSchema, DeleteSplitOutputSchema, type DeviceType, DeviceTypeSchema, type ErrorResponse, ErrorResponseSchema, EstimateCostToCreateRewardContractResponseSchema, type EstimateInput, EstimateInputSchema, type EstimateOutput, EstimateOutputSchema, type ExtendDelegationInput, ExtendDelegationInputSchema, type ExtendDelegationResponse, ExtendDelegationResponseSchema, type ExtendPositionInput, ExtendPositionInputSchema, type ExtendPositionResponse, ExtendPositionResponseSchema, type FeesOutput, FeesOutputSchema, FindRewardContractResponseSchema, type FlipLockupKindInput, FlipLockupKindInputSchema, type FlipLockupKindResponse, FlipLockupKindResponseSchema, type FundAutomationInput, FundAutomationInputSchema, FundAutomationOutputSchema, type FundingEstimate, FundingEstimateOutputSchema, type GetAutomationStatusInput, GetAutomationStatusInputSchema, type GetBalancesInput, GetBalancesInputSchema, type GetBankAccountInput, GetBankAccountInputSchema, type GetByPayerAndTagInput, GetByPayerAndTagInputSchema, type GetByPayerInput, GetByPayerInputSchema, type GetFundingEstimateInput, GetFundingEstimateInputSchema, type GetHotspotsInput, GetHotspotsInputSchema, type GetInput, GetInputSchema, type GetInstructionsInput, GetInstructionsInputSchema, type GetPendingRewardsInput, GetPendingRewardsInputSchema, type GetPendingRewardsOutput, GetPendingRewardsOutputSchema, type GetQuoteInput, GetQuoteInputSchema, type GetSendQuoteInput, GetSendQuoteInputSchema, type GetSplitInput, GetSplitInputSchema, type GetTokensInput, GetTokensInputSchema, type GetTransferInput, GetTransferInputSchema, type HealthResponse, HealthResponseSchema, HeliumPublicKeySchema, type Hotspot, HotspotSchema, HotspotSharesSchema, type HotspotType, HotspotTypeSchema, type HotspotsData, HotspotsDataSchema, INSUFFICIENT_FUNDS, INVALID_WALLET_ADDRESS, type InitKycInput, InitKycInputSchema, type KycStatusOutput, KycStatusOutputSchema, type LockupKind, LockupKindSchema, MigratableHotspotSchema, type MigratableHotspotsInput, MigratableHotspotsInputSchema, type MigratableHotspotsOutput, MigratableHotspotsOutputSchema, type MigrateInput, MigrateInputSchema, type MigrateOutput, MigrateOutputSchema, MigrateTransactionDataSchema, MigrateTransactionItemSchema, NOT_FOUND, type OwnershipType, OwnershipTypeSchema, PaginationInputSchema, PaginationOutputSchema, type PayerBatchSummary, PayerBatchSummarySchema, type PayerBatchesOutput, PayerBatchesOutputSchema, PublicKeySchema, QuoteOutputSchema, type QuoteResponse, QuoteResponseSchema, RATE_LIMITED, type RelinquishPositionVotesInput, RelinquishPositionVotesInputSchema, type RelinquishPositionVotesResponse, RelinquishPositionVotesResponseSchema, type RelinquishVoteInput, RelinquishVoteInputSchema, type RelinquishVoteResponse, RelinquishVoteResponseSchema, type ResetLockupInput, ResetLockupInputSchema, type ResetLockupResponse, ResetLockupResponseSchema, type ResubmitInput, ResubmitInputSchema, type ResubmitOutput, ResubmitOutputSchema, type RewardSplitInput, RewardSplitInputSchema, SIMULATION_FAILED, type ScheduleInput, ScheduleInputSchema, type SendFundsInput, SendFundsInputSchema, type SendFundsOutput, SendFundsOutputSchema, type SetupAutomationInput, SetupAutomationInputSchema, SetupAutomationOutputSchema, type SplitPositionInput, SplitPositionInputSchema, type SplitPositionResponse, SplitPositionResponseSchema, type SplitResponse, SplitResponseSchema, type SplitShare, SplitShareSchema, type SubmitInput, SubmitInputSchema, type SubmitOutput, SubmitOutputSchema, SwapTransactionDataSchema, TRANSACTION_FAILED, type Token, type TokenAccount, TokenAccountSchema, type TokenAmountInput, TokenAmountInputSchema, type TokenAmountOutput, TokenAmountOutputSchema, type TokenBalanceData, TokenBalanceDataSchema, type TokenListOutput, TokenListOutputSchema, TokenSchema, type TransactionBatchRequest, TransactionBatchRequestSchema, type TransactionBatchResponse, TransactionBatchResponseSchema, type TransactionData, TransactionDataSchema, type TransactionItem, TransactionItemSchema, type TransactionMetadata, TransactionMetadataSchema, type TransactionStatus, TransactionStatusSchema, type TransferHotspotInput, TransferHotspotInputSchema, TransferHotspotOutputSchema, type TransferInput, TransferInputSchema, type TransferOutput, TransferOutputSchema, type TransferPositionInput, TransferPositionInputSchema, type TransferPositionResponse, TransferPositionResponseSchema, UNAUTHENTICATED, UNAUTHORIZED, type UnassignProxiesInput, UnassignProxiesInputSchema, type UnassignProxiesResponse, UnassignProxiesResponseSchema, type UndelegateInput, UndelegateInputSchema, type UndelegatePositionResponse, UndelegatePositionResponseSchema, UpdateHotspotInfoInputSchema, UpdateHotspotInfoOutputSchema, type UpdateRewardsDestinationInput, UpdateRewardsDestinationInputSchema, UpdateRewardsDestinationOutputSchema, type UpdateTransferInput, UpdateTransferInputSchema, type UpdateTransferOutput, UpdateTransferOutputSchema, type VoteInput, VoteInputSchema, type VoteResponse, VoteResponseSchema, WalletAddressSchema, type WelcomePack, type WelcomePackClaimInput, WelcomePackClaimInputSchema, type WelcomePackClaimOutput, WelcomePackClaimOutputSchema, type WelcomePackCreateInput, WelcomePackCreateInputSchema, type WelcomePackCreateOutput, WelcomePackCreateOutputSchema, type WelcomePackDeleteInput, WelcomePackDeleteInputSchema, type WelcomePackDeleteOutput, WelcomePackDeleteOutputSchema, type WelcomePackGetByAddressInput, WelcomePackGetByAddressInputSchema, type WelcomePackGetInput, WelcomePackGetInputSchema, type WelcomePackInviteInput, WelcomePackInviteInputSchema, type WelcomePackInviteOutput, WelcomePackInviteOutputSchema, type WelcomePackListInput, WelcomePackListInputSchema, type WelcomePackListOutput, WelcomePackListOutputSchema, WelcomePackSchema, apiContract, createPaginatedTransactionResponse, createTransactionResponse, createTypedPaginatedTransactionResponse, createTypedTransactionResponse, fullApiContract, typedTransactionData };