@helium/blockchain-api 0.3.9 → 0.3.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.
- package/dist/index.d.ts +879 -229
- package/dist/index.js +178 -86
- 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.ZodOptional<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.ZodOptional<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.ZodOptional<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.ZodOptional<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<{
|
|
@@ -402,7 +486,88 @@ declare const UnassignProxiesInputSchema: z.ZodObject<{
|
|
|
402
486
|
proxyKey: z.ZodString;
|
|
403
487
|
positionMints: z.ZodArray<z.ZodString>;
|
|
404
488
|
}, z.core.$strip>;
|
|
405
|
-
declare const
|
|
489
|
+
declare const CreatePositionResponseSchema: z.ZodObject<{
|
|
490
|
+
transactionData: z.ZodObject<{
|
|
491
|
+
transactions: z.ZodArray<z.ZodObject<{
|
|
492
|
+
serializedTransaction: z.ZodString;
|
|
493
|
+
metadata: z.ZodOptional<z.ZodObject<{
|
|
494
|
+
type: z.ZodString;
|
|
495
|
+
description: z.ZodString;
|
|
496
|
+
positionMint: z.ZodOptional<z.ZodString>;
|
|
497
|
+
}, z.core.$strip>>;
|
|
498
|
+
}, z.core.$strip>>;
|
|
499
|
+
parallel: z.ZodBoolean;
|
|
500
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
501
|
+
}, z.core.$strip>;
|
|
502
|
+
estimatedSolFee: z.ZodOptional<z.ZodObject<{
|
|
503
|
+
amount: z.ZodString;
|
|
504
|
+
decimals: z.ZodNumber;
|
|
505
|
+
uiAmount: z.ZodNullable<z.ZodNumber>;
|
|
506
|
+
uiAmountString: z.ZodString;
|
|
507
|
+
mint: z.ZodString;
|
|
508
|
+
}, z.core.$strip>>;
|
|
509
|
+
}, z.core.$strip>;
|
|
510
|
+
declare const ClosePositionResponseSchema: z.ZodObject<{
|
|
511
|
+
transactionData: z.ZodObject<{
|
|
512
|
+
transactions: z.ZodArray<z.ZodObject<{
|
|
513
|
+
serializedTransaction: z.ZodString;
|
|
514
|
+
metadata: z.ZodOptional<z.ZodObject<{
|
|
515
|
+
type: z.ZodString;
|
|
516
|
+
description: z.ZodString;
|
|
517
|
+
}, z.core.$catchall<z.ZodUnknown>>>;
|
|
518
|
+
}, z.core.$strip>>;
|
|
519
|
+
parallel: z.ZodBoolean;
|
|
520
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
521
|
+
}, z.core.$strip>;
|
|
522
|
+
estimatedSolFee: z.ZodOptional<z.ZodObject<{
|
|
523
|
+
amount: z.ZodString;
|
|
524
|
+
decimals: z.ZodNumber;
|
|
525
|
+
uiAmount: z.ZodNullable<z.ZodNumber>;
|
|
526
|
+
uiAmountString: z.ZodString;
|
|
527
|
+
mint: z.ZodString;
|
|
528
|
+
}, z.core.$strip>>;
|
|
529
|
+
}, z.core.$strip>;
|
|
530
|
+
declare const ExtendPositionResponseSchema: z.ZodObject<{
|
|
531
|
+
transactionData: z.ZodObject<{
|
|
532
|
+
transactions: z.ZodArray<z.ZodObject<{
|
|
533
|
+
serializedTransaction: z.ZodString;
|
|
534
|
+
metadata: z.ZodOptional<z.ZodObject<{
|
|
535
|
+
type: z.ZodString;
|
|
536
|
+
description: z.ZodString;
|
|
537
|
+
}, z.core.$catchall<z.ZodUnknown>>>;
|
|
538
|
+
}, z.core.$strip>>;
|
|
539
|
+
parallel: z.ZodBoolean;
|
|
540
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
541
|
+
}, z.core.$strip>;
|
|
542
|
+
estimatedSolFee: z.ZodOptional<z.ZodObject<{
|
|
543
|
+
amount: z.ZodString;
|
|
544
|
+
decimals: z.ZodNumber;
|
|
545
|
+
uiAmount: z.ZodNullable<z.ZodNumber>;
|
|
546
|
+
uiAmountString: z.ZodString;
|
|
547
|
+
mint: z.ZodString;
|
|
548
|
+
}, z.core.$strip>>;
|
|
549
|
+
}, z.core.$strip>;
|
|
550
|
+
declare const FlipLockupKindResponseSchema: z.ZodObject<{
|
|
551
|
+
transactionData: z.ZodObject<{
|
|
552
|
+
transactions: z.ZodArray<z.ZodObject<{
|
|
553
|
+
serializedTransaction: z.ZodString;
|
|
554
|
+
metadata: z.ZodOptional<z.ZodObject<{
|
|
555
|
+
type: z.ZodString;
|
|
556
|
+
description: z.ZodString;
|
|
557
|
+
}, z.core.$catchall<z.ZodUnknown>>>;
|
|
558
|
+
}, z.core.$strip>>;
|
|
559
|
+
parallel: z.ZodBoolean;
|
|
560
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
561
|
+
}, z.core.$strip>;
|
|
562
|
+
estimatedSolFee: z.ZodOptional<z.ZodObject<{
|
|
563
|
+
amount: z.ZodString;
|
|
564
|
+
decimals: z.ZodNumber;
|
|
565
|
+
uiAmount: z.ZodNullable<z.ZodNumber>;
|
|
566
|
+
uiAmountString: z.ZodString;
|
|
567
|
+
mint: z.ZodString;
|
|
568
|
+
}, z.core.$strip>>;
|
|
569
|
+
}, z.core.$strip>;
|
|
570
|
+
declare const ResetLockupResponseSchema: z.ZodObject<{
|
|
406
571
|
transactionData: z.ZodObject<{
|
|
407
572
|
transactions: z.ZodArray<z.ZodObject<{
|
|
408
573
|
serializedTransaction: z.ZodString;
|
|
@@ -421,7 +586,236 @@ declare const GovernanceTransactionResponseSchema: z.ZodObject<{
|
|
|
421
586
|
uiAmountString: z.ZodString;
|
|
422
587
|
mint: z.ZodString;
|
|
423
588
|
}, z.core.$strip>>;
|
|
424
|
-
|
|
589
|
+
}, z.core.$strip>;
|
|
590
|
+
declare const SplitPositionResponseSchema: z.ZodObject<{
|
|
591
|
+
transactionData: z.ZodObject<{
|
|
592
|
+
transactions: z.ZodArray<z.ZodObject<{
|
|
593
|
+
serializedTransaction: z.ZodString;
|
|
594
|
+
metadata: z.ZodOptional<z.ZodObject<{
|
|
595
|
+
type: z.ZodString;
|
|
596
|
+
description: z.ZodString;
|
|
597
|
+
newPositionMint: z.ZodOptional<z.ZodString>;
|
|
598
|
+
}, z.core.$strip>>;
|
|
599
|
+
}, z.core.$strip>>;
|
|
600
|
+
parallel: z.ZodBoolean;
|
|
601
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
602
|
+
}, z.core.$strip>;
|
|
603
|
+
estimatedSolFee: z.ZodOptional<z.ZodObject<{
|
|
604
|
+
amount: z.ZodString;
|
|
605
|
+
decimals: z.ZodNumber;
|
|
606
|
+
uiAmount: z.ZodNullable<z.ZodNumber>;
|
|
607
|
+
uiAmountString: z.ZodString;
|
|
608
|
+
mint: z.ZodString;
|
|
609
|
+
}, z.core.$strip>>;
|
|
610
|
+
}, z.core.$strip>;
|
|
611
|
+
declare const TransferPositionResponseSchema: z.ZodObject<{
|
|
612
|
+
transactionData: z.ZodObject<{
|
|
613
|
+
transactions: z.ZodArray<z.ZodObject<{
|
|
614
|
+
serializedTransaction: z.ZodString;
|
|
615
|
+
metadata: z.ZodOptional<z.ZodObject<{
|
|
616
|
+
type: z.ZodString;
|
|
617
|
+
description: z.ZodString;
|
|
618
|
+
}, z.core.$catchall<z.ZodUnknown>>>;
|
|
619
|
+
}, z.core.$strip>>;
|
|
620
|
+
parallel: z.ZodBoolean;
|
|
621
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
622
|
+
}, z.core.$strip>;
|
|
623
|
+
estimatedSolFee: z.ZodOptional<z.ZodObject<{
|
|
624
|
+
amount: z.ZodString;
|
|
625
|
+
decimals: z.ZodNumber;
|
|
626
|
+
uiAmount: z.ZodNullable<z.ZodNumber>;
|
|
627
|
+
uiAmountString: z.ZodString;
|
|
628
|
+
mint: z.ZodString;
|
|
629
|
+
}, z.core.$strip>>;
|
|
630
|
+
}, z.core.$strip>;
|
|
631
|
+
declare const ExtendDelegationResponseSchema: z.ZodObject<{
|
|
632
|
+
transactionData: z.ZodObject<{
|
|
633
|
+
transactions: z.ZodArray<z.ZodObject<{
|
|
634
|
+
serializedTransaction: z.ZodString;
|
|
635
|
+
metadata: z.ZodOptional<z.ZodObject<{
|
|
636
|
+
type: z.ZodString;
|
|
637
|
+
description: z.ZodString;
|
|
638
|
+
}, z.core.$catchall<z.ZodUnknown>>>;
|
|
639
|
+
}, z.core.$strip>>;
|
|
640
|
+
parallel: z.ZodBoolean;
|
|
641
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
642
|
+
}, z.core.$strip>;
|
|
643
|
+
estimatedSolFee: z.ZodOptional<z.ZodObject<{
|
|
644
|
+
amount: z.ZodString;
|
|
645
|
+
decimals: z.ZodNumber;
|
|
646
|
+
uiAmount: z.ZodNullable<z.ZodNumber>;
|
|
647
|
+
uiAmountString: z.ZodString;
|
|
648
|
+
mint: z.ZodString;
|
|
649
|
+
}, z.core.$strip>>;
|
|
650
|
+
}, z.core.$strip>;
|
|
651
|
+
declare const DelegatePositionsResponseSchema: z.ZodObject<{
|
|
652
|
+
transactionData: z.ZodObject<{
|
|
653
|
+
transactions: z.ZodArray<z.ZodObject<{
|
|
654
|
+
serializedTransaction: z.ZodString;
|
|
655
|
+
metadata: z.ZodOptional<z.ZodObject<{
|
|
656
|
+
type: z.ZodString;
|
|
657
|
+
description: z.ZodString;
|
|
658
|
+
}, z.core.$catchall<z.ZodUnknown>>>;
|
|
659
|
+
}, z.core.$strip>>;
|
|
660
|
+
parallel: z.ZodBoolean;
|
|
661
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
662
|
+
}, z.core.$strip>;
|
|
663
|
+
estimatedSolFee: z.ZodOptional<z.ZodObject<{
|
|
664
|
+
amount: z.ZodString;
|
|
665
|
+
decimals: z.ZodNumber;
|
|
666
|
+
uiAmount: z.ZodNullable<z.ZodNumber>;
|
|
667
|
+
uiAmountString: z.ZodString;
|
|
668
|
+
mint: z.ZodString;
|
|
669
|
+
}, z.core.$strip>>;
|
|
670
|
+
hasMore: z.ZodBoolean;
|
|
671
|
+
}, z.core.$strip>;
|
|
672
|
+
declare const ClaimDelegationRewardsResponseSchema: z.ZodObject<{
|
|
673
|
+
transactionData: z.ZodObject<{
|
|
674
|
+
transactions: z.ZodArray<z.ZodObject<{
|
|
675
|
+
serializedTransaction: z.ZodString;
|
|
676
|
+
metadata: z.ZodOptional<z.ZodObject<{
|
|
677
|
+
type: z.ZodString;
|
|
678
|
+
description: z.ZodString;
|
|
679
|
+
}, z.core.$catchall<z.ZodUnknown>>>;
|
|
680
|
+
}, z.core.$strip>>;
|
|
681
|
+
parallel: z.ZodBoolean;
|
|
682
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
683
|
+
}, z.core.$strip>;
|
|
684
|
+
estimatedSolFee: z.ZodOptional<z.ZodObject<{
|
|
685
|
+
amount: z.ZodString;
|
|
686
|
+
decimals: z.ZodNumber;
|
|
687
|
+
uiAmount: z.ZodNullable<z.ZodNumber>;
|
|
688
|
+
uiAmountString: z.ZodString;
|
|
689
|
+
mint: z.ZodString;
|
|
690
|
+
}, z.core.$strip>>;
|
|
691
|
+
hasMore: z.ZodBoolean;
|
|
692
|
+
}, z.core.$strip>;
|
|
693
|
+
declare const UndelegatePositionResponseSchema: z.ZodObject<{
|
|
694
|
+
transactionData: z.ZodObject<{
|
|
695
|
+
transactions: z.ZodArray<z.ZodObject<{
|
|
696
|
+
serializedTransaction: z.ZodString;
|
|
697
|
+
metadata: z.ZodOptional<z.ZodObject<{
|
|
698
|
+
type: z.ZodString;
|
|
699
|
+
description: z.ZodString;
|
|
700
|
+
}, z.core.$catchall<z.ZodUnknown>>>;
|
|
701
|
+
}, z.core.$strip>>;
|
|
702
|
+
parallel: z.ZodBoolean;
|
|
703
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
704
|
+
}, z.core.$strip>;
|
|
705
|
+
estimatedSolFee: z.ZodOptional<z.ZodObject<{
|
|
706
|
+
amount: z.ZodString;
|
|
707
|
+
decimals: z.ZodNumber;
|
|
708
|
+
uiAmount: z.ZodNullable<z.ZodNumber>;
|
|
709
|
+
uiAmountString: z.ZodString;
|
|
710
|
+
mint: z.ZodString;
|
|
711
|
+
}, z.core.$strip>>;
|
|
712
|
+
hasMore: z.ZodBoolean;
|
|
713
|
+
}, z.core.$strip>;
|
|
714
|
+
declare const VoteResponseSchema: z.ZodObject<{
|
|
715
|
+
transactionData: z.ZodObject<{
|
|
716
|
+
transactions: z.ZodArray<z.ZodObject<{
|
|
717
|
+
serializedTransaction: z.ZodString;
|
|
718
|
+
metadata: z.ZodOptional<z.ZodObject<{
|
|
719
|
+
type: z.ZodString;
|
|
720
|
+
description: z.ZodString;
|
|
721
|
+
}, z.core.$catchall<z.ZodUnknown>>>;
|
|
722
|
+
}, z.core.$strip>>;
|
|
723
|
+
parallel: z.ZodBoolean;
|
|
724
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
725
|
+
}, z.core.$strip>;
|
|
726
|
+
estimatedSolFee: z.ZodOptional<z.ZodObject<{
|
|
727
|
+
amount: z.ZodString;
|
|
728
|
+
decimals: z.ZodNumber;
|
|
729
|
+
uiAmount: z.ZodNullable<z.ZodNumber>;
|
|
730
|
+
uiAmountString: z.ZodString;
|
|
731
|
+
mint: z.ZodString;
|
|
732
|
+
}, z.core.$strip>>;
|
|
733
|
+
hasMore: z.ZodBoolean;
|
|
734
|
+
}, z.core.$strip>;
|
|
735
|
+
declare const RelinquishVoteResponseSchema: z.ZodObject<{
|
|
736
|
+
transactionData: z.ZodObject<{
|
|
737
|
+
transactions: z.ZodArray<z.ZodObject<{
|
|
738
|
+
serializedTransaction: z.ZodString;
|
|
739
|
+
metadata: z.ZodOptional<z.ZodObject<{
|
|
740
|
+
type: z.ZodString;
|
|
741
|
+
description: z.ZodString;
|
|
742
|
+
}, z.core.$catchall<z.ZodUnknown>>>;
|
|
743
|
+
}, z.core.$strip>>;
|
|
744
|
+
parallel: z.ZodBoolean;
|
|
745
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
746
|
+
}, z.core.$strip>;
|
|
747
|
+
estimatedSolFee: z.ZodOptional<z.ZodObject<{
|
|
748
|
+
amount: z.ZodString;
|
|
749
|
+
decimals: z.ZodNumber;
|
|
750
|
+
uiAmount: z.ZodNullable<z.ZodNumber>;
|
|
751
|
+
uiAmountString: z.ZodString;
|
|
752
|
+
mint: z.ZodString;
|
|
753
|
+
}, z.core.$strip>>;
|
|
754
|
+
hasMore: z.ZodBoolean;
|
|
755
|
+
}, z.core.$strip>;
|
|
756
|
+
declare const RelinquishPositionVotesResponseSchema: z.ZodObject<{
|
|
757
|
+
transactionData: z.ZodObject<{
|
|
758
|
+
transactions: z.ZodArray<z.ZodObject<{
|
|
759
|
+
serializedTransaction: z.ZodString;
|
|
760
|
+
metadata: z.ZodOptional<z.ZodObject<{
|
|
761
|
+
type: z.ZodString;
|
|
762
|
+
description: z.ZodString;
|
|
763
|
+
votesRelinquished: z.ZodOptional<z.ZodNumber>;
|
|
764
|
+
}, z.core.$strip>>;
|
|
765
|
+
}, z.core.$strip>>;
|
|
766
|
+
parallel: z.ZodBoolean;
|
|
767
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
768
|
+
}, z.core.$strip>;
|
|
769
|
+
estimatedSolFee: z.ZodOptional<z.ZodObject<{
|
|
770
|
+
amount: z.ZodString;
|
|
771
|
+
decimals: z.ZodNumber;
|
|
772
|
+
uiAmount: z.ZodNullable<z.ZodNumber>;
|
|
773
|
+
uiAmountString: z.ZodString;
|
|
774
|
+
mint: z.ZodString;
|
|
775
|
+
}, z.core.$strip>>;
|
|
776
|
+
hasMore: z.ZodBoolean;
|
|
777
|
+
}, z.core.$strip>;
|
|
778
|
+
declare const AssignProxiesResponseSchema: z.ZodObject<{
|
|
779
|
+
transactionData: z.ZodObject<{
|
|
780
|
+
transactions: z.ZodArray<z.ZodObject<{
|
|
781
|
+
serializedTransaction: z.ZodString;
|
|
782
|
+
metadata: z.ZodOptional<z.ZodObject<{
|
|
783
|
+
type: z.ZodString;
|
|
784
|
+
description: z.ZodString;
|
|
785
|
+
}, z.core.$catchall<z.ZodUnknown>>>;
|
|
786
|
+
}, z.core.$strip>>;
|
|
787
|
+
parallel: z.ZodBoolean;
|
|
788
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
789
|
+
}, z.core.$strip>;
|
|
790
|
+
estimatedSolFee: z.ZodOptional<z.ZodObject<{
|
|
791
|
+
amount: z.ZodString;
|
|
792
|
+
decimals: z.ZodNumber;
|
|
793
|
+
uiAmount: z.ZodNullable<z.ZodNumber>;
|
|
794
|
+
uiAmountString: z.ZodString;
|
|
795
|
+
mint: z.ZodString;
|
|
796
|
+
}, z.core.$strip>>;
|
|
797
|
+
hasMore: z.ZodBoolean;
|
|
798
|
+
}, z.core.$strip>;
|
|
799
|
+
declare const UnassignProxiesResponseSchema: z.ZodObject<{
|
|
800
|
+
transactionData: z.ZodObject<{
|
|
801
|
+
transactions: z.ZodArray<z.ZodObject<{
|
|
802
|
+
serializedTransaction: z.ZodString;
|
|
803
|
+
metadata: z.ZodOptional<z.ZodObject<{
|
|
804
|
+
type: z.ZodString;
|
|
805
|
+
description: z.ZodString;
|
|
806
|
+
}, z.core.$catchall<z.ZodUnknown>>>;
|
|
807
|
+
}, z.core.$strip>>;
|
|
808
|
+
parallel: z.ZodBoolean;
|
|
809
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
810
|
+
}, z.core.$strip>;
|
|
811
|
+
estimatedSolFee: z.ZodOptional<z.ZodObject<{
|
|
812
|
+
amount: z.ZodString;
|
|
813
|
+
decimals: z.ZodNumber;
|
|
814
|
+
uiAmount: z.ZodNullable<z.ZodNumber>;
|
|
815
|
+
uiAmountString: z.ZodString;
|
|
816
|
+
mint: z.ZodString;
|
|
817
|
+
}, z.core.$strip>>;
|
|
818
|
+
hasMore: z.ZodBoolean;
|
|
425
819
|
}, z.core.$strip>;
|
|
426
820
|
type LockupKind = z.infer<typeof LockupKindSchema>;
|
|
427
821
|
type CreatePositionInput = z.infer<typeof CreatePositionInputSchema>;
|
|
@@ -440,7 +834,22 @@ type RelinquishVoteInput = z.infer<typeof RelinquishVoteInputSchema>;
|
|
|
440
834
|
type RelinquishPositionVotesInput = z.infer<typeof RelinquishPositionVotesInputSchema>;
|
|
441
835
|
type AssignProxiesInput = z.infer<typeof AssignProxiesInputSchema>;
|
|
442
836
|
type UnassignProxiesInput = z.infer<typeof UnassignProxiesInputSchema>;
|
|
443
|
-
type
|
|
837
|
+
type CreatePositionResponse = z.infer<typeof CreatePositionResponseSchema>;
|
|
838
|
+
type ClosePositionResponse = z.infer<typeof ClosePositionResponseSchema>;
|
|
839
|
+
type ExtendPositionResponse = z.infer<typeof ExtendPositionResponseSchema>;
|
|
840
|
+
type FlipLockupKindResponse = z.infer<typeof FlipLockupKindResponseSchema>;
|
|
841
|
+
type ResetLockupResponse = z.infer<typeof ResetLockupResponseSchema>;
|
|
842
|
+
type SplitPositionResponse = z.infer<typeof SplitPositionResponseSchema>;
|
|
843
|
+
type TransferPositionResponse = z.infer<typeof TransferPositionResponseSchema>;
|
|
844
|
+
type DelegatePositionsResponse = z.infer<typeof DelegatePositionsResponseSchema>;
|
|
845
|
+
type ExtendDelegationResponse = z.infer<typeof ExtendDelegationResponseSchema>;
|
|
846
|
+
type UndelegatePositionResponse = z.infer<typeof UndelegatePositionResponseSchema>;
|
|
847
|
+
type ClaimDelegationRewardsResponse = z.infer<typeof ClaimDelegationRewardsResponseSchema>;
|
|
848
|
+
type VoteResponse = z.infer<typeof VoteResponseSchema>;
|
|
849
|
+
type RelinquishVoteResponse = z.infer<typeof RelinquishVoteResponseSchema>;
|
|
850
|
+
type RelinquishPositionVotesResponse = z.infer<typeof RelinquishPositionVotesResponseSchema>;
|
|
851
|
+
type AssignProxiesResponse = z.infer<typeof AssignProxiesResponseSchema>;
|
|
852
|
+
type UnassignProxiesResponse = z.infer<typeof UnassignProxiesResponseSchema>;
|
|
444
853
|
|
|
445
854
|
declare const HealthResponseSchema: z.ZodObject<{
|
|
446
855
|
ok: z.ZodBoolean;
|
|
@@ -503,13 +912,13 @@ declare const TransferOutputSchema: z.ZodObject<{
|
|
|
503
912
|
parallel: z.ZodBoolean;
|
|
504
913
|
tag: z.ZodOptional<z.ZodString>;
|
|
505
914
|
}, z.core.$strip>;
|
|
506
|
-
estimatedSolFee: z.ZodObject<{
|
|
915
|
+
estimatedSolFee: z.ZodOptional<z.ZodObject<{
|
|
507
916
|
amount: z.ZodString;
|
|
508
917
|
decimals: z.ZodNumber;
|
|
509
918
|
uiAmount: z.ZodNullable<z.ZodNumber>;
|
|
510
919
|
uiAmountString: z.ZodString;
|
|
511
920
|
mint: z.ZodString;
|
|
512
|
-
}, z.core.$strip
|
|
921
|
+
}, z.core.$strip>>;
|
|
513
922
|
}, z.core.$strip>;
|
|
514
923
|
declare const CreateHntAccountOutputSchema: z.ZodObject<{
|
|
515
924
|
transactionData: z.ZodObject<{
|
|
@@ -523,13 +932,13 @@ declare const CreateHntAccountOutputSchema: z.ZodObject<{
|
|
|
523
932
|
parallel: z.ZodBoolean;
|
|
524
933
|
tag: z.ZodOptional<z.ZodString>;
|
|
525
934
|
}, z.core.$strip>;
|
|
526
|
-
estimatedSolFee: z.ZodObject<{
|
|
935
|
+
estimatedSolFee: z.ZodOptional<z.ZodObject<{
|
|
527
936
|
amount: z.ZodString;
|
|
528
937
|
decimals: z.ZodNumber;
|
|
529
938
|
uiAmount: z.ZodNullable<z.ZodNumber>;
|
|
530
939
|
uiAmountString: z.ZodString;
|
|
531
940
|
mint: z.ZodString;
|
|
532
|
-
}, z.core.$strip
|
|
941
|
+
}, z.core.$strip>>;
|
|
533
942
|
}, z.core.$strip>;
|
|
534
943
|
type GetBalancesInput = z.infer<typeof GetBalancesInputSchema>;
|
|
535
944
|
type TransferInput = z.infer<typeof TransferInputSchema>;
|
|
@@ -777,13 +1186,13 @@ declare const ClaimRewardsOutputSchema: z.ZodObject<{
|
|
|
777
1186
|
parallel: z.ZodBoolean;
|
|
778
1187
|
tag: z.ZodOptional<z.ZodString>;
|
|
779
1188
|
}, z.core.$strip>;
|
|
780
|
-
estimatedSolFee: z.ZodObject<{
|
|
1189
|
+
estimatedSolFee: z.ZodOptional<z.ZodObject<{
|
|
781
1190
|
amount: z.ZodString;
|
|
782
1191
|
decimals: z.ZodNumber;
|
|
783
1192
|
uiAmount: z.ZodNullable<z.ZodNumber>;
|
|
784
1193
|
uiAmountString: z.ZodString;
|
|
785
1194
|
mint: z.ZodString;
|
|
786
|
-
}, z.core.$strip
|
|
1195
|
+
}, z.core.$strip>>;
|
|
787
1196
|
}, z.core.$strip>;
|
|
788
1197
|
declare const TransferHotspotOutputSchema: z.ZodObject<{
|
|
789
1198
|
transactionData: z.ZodObject<{
|
|
@@ -797,13 +1206,13 @@ declare const TransferHotspotOutputSchema: z.ZodObject<{
|
|
|
797
1206
|
parallel: z.ZodBoolean;
|
|
798
1207
|
tag: z.ZodOptional<z.ZodString>;
|
|
799
1208
|
}, z.core.$strip>;
|
|
800
|
-
estimatedSolFee: z.ZodObject<{
|
|
1209
|
+
estimatedSolFee: z.ZodOptional<z.ZodObject<{
|
|
801
1210
|
amount: z.ZodString;
|
|
802
1211
|
decimals: z.ZodNumber;
|
|
803
1212
|
uiAmount: z.ZodNullable<z.ZodNumber>;
|
|
804
1213
|
uiAmountString: z.ZodString;
|
|
805
1214
|
mint: z.ZodString;
|
|
806
|
-
}, z.core.$strip
|
|
1215
|
+
}, z.core.$strip>>;
|
|
807
1216
|
}, z.core.$strip>;
|
|
808
1217
|
declare const UpdateRewardsDestinationOutputSchema: z.ZodObject<{
|
|
809
1218
|
transactionData: z.ZodObject<{
|
|
@@ -817,41 +1226,12 @@ declare const UpdateRewardsDestinationOutputSchema: z.ZodObject<{
|
|
|
817
1226
|
parallel: z.ZodBoolean;
|
|
818
1227
|
tag: z.ZodOptional<z.ZodString>;
|
|
819
1228
|
}, z.core.$strip>;
|
|
820
|
-
estimatedSolFee: z.ZodObject<{
|
|
821
|
-
amount: z.ZodString;
|
|
822
|
-
decimals: z.ZodNumber;
|
|
823
|
-
uiAmount: z.ZodNullable<z.ZodNumber>;
|
|
824
|
-
uiAmountString: z.ZodString;
|
|
825
|
-
mint: z.ZodString;
|
|
826
|
-
}, z.core.$strip>;
|
|
827
|
-
}, z.core.$strip>;
|
|
828
|
-
declare const SplitShareSchema: z.ZodObject<{
|
|
829
|
-
wallet: z.ZodString;
|
|
830
|
-
delegate: z.ZodString;
|
|
831
|
-
fixed: z.ZodObject<{
|
|
1229
|
+
estimatedSolFee: z.ZodOptional<z.ZodObject<{
|
|
832
1230
|
amount: z.ZodString;
|
|
833
1231
|
decimals: z.ZodNumber;
|
|
834
1232
|
uiAmount: z.ZodNullable<z.ZodNumber>;
|
|
835
1233
|
uiAmountString: z.ZodString;
|
|
836
1234
|
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
1235
|
}, z.core.$strip>>;
|
|
856
1236
|
}, z.core.$strip>;
|
|
857
1237
|
declare const CreateSplitOutputSchema: z.ZodObject<{
|
|
@@ -866,13 +1246,13 @@ declare const CreateSplitOutputSchema: z.ZodObject<{
|
|
|
866
1246
|
parallel: z.ZodBoolean;
|
|
867
1247
|
tag: z.ZodOptional<z.ZodString>;
|
|
868
1248
|
}, z.core.$strip>;
|
|
869
|
-
estimatedSolFee: z.ZodObject<{
|
|
1249
|
+
estimatedSolFee: z.ZodOptional<z.ZodObject<{
|
|
870
1250
|
amount: z.ZodString;
|
|
871
1251
|
decimals: z.ZodNumber;
|
|
872
1252
|
uiAmount: z.ZodNullable<z.ZodNumber>;
|
|
873
1253
|
uiAmountString: z.ZodString;
|
|
874
1254
|
mint: z.ZodString;
|
|
875
|
-
}, z.core.$strip
|
|
1255
|
+
}, z.core.$strip>>;
|
|
876
1256
|
}, z.core.$strip>;
|
|
877
1257
|
declare const DeleteSplitOutputSchema: z.ZodObject<{
|
|
878
1258
|
transactionData: z.ZodObject<{
|
|
@@ -886,42 +1266,13 @@ declare const DeleteSplitOutputSchema: z.ZodObject<{
|
|
|
886
1266
|
parallel: z.ZodBoolean;
|
|
887
1267
|
tag: z.ZodOptional<z.ZodString>;
|
|
888
1268
|
}, z.core.$strip>;
|
|
889
|
-
estimatedSolFee: z.ZodObject<{
|
|
1269
|
+
estimatedSolFee: z.ZodOptional<z.ZodObject<{
|
|
890
1270
|
amount: z.ZodString;
|
|
891
1271
|
decimals: z.ZodNumber;
|
|
892
1272
|
uiAmount: z.ZodNullable<z.ZodNumber>;
|
|
893
1273
|
uiAmountString: z.ZodString;
|
|
894
1274
|
mint: z.ZodString;
|
|
895
|
-
}, z.core.$strip>;
|
|
896
|
-
}, 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
1275
|
}, 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
1276
|
}, z.core.$strip>;
|
|
926
1277
|
declare const SetupAutomationOutputSchema: z.ZodObject<{
|
|
927
1278
|
transactionData: z.ZodObject<{
|
|
@@ -935,13 +1286,13 @@ declare const SetupAutomationOutputSchema: z.ZodObject<{
|
|
|
935
1286
|
parallel: z.ZodBoolean;
|
|
936
1287
|
tag: z.ZodOptional<z.ZodString>;
|
|
937
1288
|
}, z.core.$strip>;
|
|
938
|
-
estimatedSolFee: z.ZodObject<{
|
|
1289
|
+
estimatedSolFee: z.ZodOptional<z.ZodObject<{
|
|
939
1290
|
amount: z.ZodString;
|
|
940
1291
|
decimals: z.ZodNumber;
|
|
941
1292
|
uiAmount: z.ZodNullable<z.ZodNumber>;
|
|
942
1293
|
uiAmountString: z.ZodString;
|
|
943
1294
|
mint: z.ZodString;
|
|
944
|
-
}, z.core.$strip
|
|
1295
|
+
}, z.core.$strip>>;
|
|
945
1296
|
}, z.core.$strip>;
|
|
946
1297
|
declare const FundAutomationOutputSchema: z.ZodObject<{
|
|
947
1298
|
transactionData: z.ZodObject<{
|
|
@@ -955,13 +1306,13 @@ declare const FundAutomationOutputSchema: z.ZodObject<{
|
|
|
955
1306
|
parallel: z.ZodBoolean;
|
|
956
1307
|
tag: z.ZodOptional<z.ZodString>;
|
|
957
1308
|
}, z.core.$strip>;
|
|
958
|
-
estimatedSolFee: z.ZodObject<{
|
|
1309
|
+
estimatedSolFee: z.ZodOptional<z.ZodObject<{
|
|
959
1310
|
amount: z.ZodString;
|
|
960
1311
|
decimals: z.ZodNumber;
|
|
961
1312
|
uiAmount: z.ZodNullable<z.ZodNumber>;
|
|
962
1313
|
uiAmountString: z.ZodString;
|
|
963
1314
|
mint: z.ZodString;
|
|
964
|
-
}, z.core.$strip
|
|
1315
|
+
}, z.core.$strip>>;
|
|
965
1316
|
}, z.core.$strip>;
|
|
966
1317
|
declare const CloseAutomationOutputSchema: z.ZodObject<{
|
|
967
1318
|
transactionData: z.ZodObject<{
|
|
@@ -975,13 +1326,71 @@ declare const CloseAutomationOutputSchema: z.ZodObject<{
|
|
|
975
1326
|
parallel: z.ZodBoolean;
|
|
976
1327
|
tag: z.ZodOptional<z.ZodString>;
|
|
977
1328
|
}, z.core.$strip>;
|
|
978
|
-
estimatedSolFee: z.ZodObject<{
|
|
1329
|
+
estimatedSolFee: z.ZodOptional<z.ZodObject<{
|
|
1330
|
+
amount: z.ZodString;
|
|
1331
|
+
decimals: z.ZodNumber;
|
|
1332
|
+
uiAmount: z.ZodNullable<z.ZodNumber>;
|
|
1333
|
+
uiAmountString: z.ZodString;
|
|
1334
|
+
mint: z.ZodString;
|
|
1335
|
+
}, z.core.$strip>>;
|
|
1336
|
+
}, z.core.$strip>;
|
|
1337
|
+
declare const SplitShareSchema: z.ZodObject<{
|
|
1338
|
+
wallet: z.ZodString;
|
|
1339
|
+
delegate: z.ZodString;
|
|
1340
|
+
fixed: z.ZodObject<{
|
|
979
1341
|
amount: z.ZodString;
|
|
980
1342
|
decimals: z.ZodNumber;
|
|
981
1343
|
uiAmount: z.ZodNullable<z.ZodNumber>;
|
|
982
1344
|
uiAmountString: z.ZodString;
|
|
983
1345
|
mint: z.ZodString;
|
|
984
1346
|
}, z.core.$strip>;
|
|
1347
|
+
shares: z.ZodNumber;
|
|
1348
|
+
}, z.core.$strip>;
|
|
1349
|
+
declare const SplitResponseSchema: z.ZodObject<{
|
|
1350
|
+
walletAddress: z.ZodString;
|
|
1351
|
+
hotspotPubkey: z.ZodString;
|
|
1352
|
+
splitAddress: z.ZodString;
|
|
1353
|
+
shares: z.ZodArray<z.ZodObject<{
|
|
1354
|
+
wallet: z.ZodString;
|
|
1355
|
+
delegate: z.ZodString;
|
|
1356
|
+
fixed: z.ZodObject<{
|
|
1357
|
+
amount: z.ZodString;
|
|
1358
|
+
decimals: z.ZodNumber;
|
|
1359
|
+
uiAmount: z.ZodNullable<z.ZodNumber>;
|
|
1360
|
+
uiAmountString: z.ZodString;
|
|
1361
|
+
mint: z.ZodString;
|
|
1362
|
+
}, z.core.$strip>;
|
|
1363
|
+
shares: z.ZodNumber;
|
|
1364
|
+
}, z.core.$strip>>;
|
|
1365
|
+
}, z.core.$strip>;
|
|
1366
|
+
declare const AutomationStatusOutputSchema: z.ZodObject<{
|
|
1367
|
+
hasExistingAutomation: z.ZodBoolean;
|
|
1368
|
+
isOutOfSol: z.ZodBoolean;
|
|
1369
|
+
currentSchedule: z.ZodOptional<z.ZodObject<{
|
|
1370
|
+
schedule: z.ZodEnum<{
|
|
1371
|
+
daily: "daily";
|
|
1372
|
+
weekly: "weekly";
|
|
1373
|
+
monthly: "monthly";
|
|
1374
|
+
}>;
|
|
1375
|
+
time: z.ZodString;
|
|
1376
|
+
nextRun: z.ZodString;
|
|
1377
|
+
}, z.core.$strip>>;
|
|
1378
|
+
rentFee: z.ZodNumber;
|
|
1379
|
+
recipientFee: z.ZodNumber;
|
|
1380
|
+
operationalSol: z.ZodNumber;
|
|
1381
|
+
remainingClaims: z.ZodOptional<z.ZodNumber>;
|
|
1382
|
+
fundingPeriodInfo: z.ZodOptional<z.ZodObject<{
|
|
1383
|
+
periodLength: z.ZodEnum<{
|
|
1384
|
+
daily: "daily";
|
|
1385
|
+
weekly: "weekly";
|
|
1386
|
+
monthly: "monthly";
|
|
1387
|
+
}>;
|
|
1388
|
+
periodsRemaining: z.ZodNumber;
|
|
1389
|
+
cronJobPeriodsRemaining: z.ZodNumber;
|
|
1390
|
+
pdaWalletPeriodsRemaining: z.ZodNumber;
|
|
1391
|
+
}, z.core.$strip>>;
|
|
1392
|
+
cronJobBalance: z.ZodString;
|
|
1393
|
+
pdaWalletBalance: z.ZodString;
|
|
985
1394
|
}, z.core.$strip>;
|
|
986
1395
|
declare const FundingEstimateOutputSchema: z.ZodObject<{
|
|
987
1396
|
rentFee: z.ZodNumber;
|
|
@@ -1040,13 +1449,13 @@ declare const UpdateHotspotInfoOutputSchema: z.ZodObject<{
|
|
|
1040
1449
|
parallel: z.ZodBoolean;
|
|
1041
1450
|
tag: z.ZodOptional<z.ZodString>;
|
|
1042
1451
|
}, z.core.$strip>;
|
|
1043
|
-
estimatedSolFee: z.ZodObject<{
|
|
1452
|
+
estimatedSolFee: z.ZodOptional<z.ZodObject<{
|
|
1044
1453
|
amount: z.ZodString;
|
|
1045
1454
|
decimals: z.ZodNumber;
|
|
1046
1455
|
uiAmount: z.ZodNullable<z.ZodNumber>;
|
|
1047
1456
|
uiAmountString: z.ZodString;
|
|
1048
1457
|
mint: z.ZodString;
|
|
1049
|
-
}, z.core.$strip
|
|
1458
|
+
}, z.core.$strip>>;
|
|
1050
1459
|
appliedTo: z.ZodObject<{
|
|
1051
1460
|
iot: z.ZodBoolean;
|
|
1052
1461
|
mobile: z.ZodBoolean;
|
|
@@ -1741,6 +2150,24 @@ declare const WelcomePackListOutputSchema: z.ZodArray<z.ZodObject<{
|
|
|
1741
2150
|
}, z.core.$strip>>;
|
|
1742
2151
|
}, z.core.$strip>>;
|
|
1743
2152
|
declare const WelcomePackCreateOutputSchema: z.ZodObject<{
|
|
2153
|
+
transactionData: z.ZodObject<{
|
|
2154
|
+
transactions: z.ZodArray<z.ZodObject<{
|
|
2155
|
+
serializedTransaction: z.ZodString;
|
|
2156
|
+
metadata: z.ZodOptional<z.ZodObject<{
|
|
2157
|
+
type: z.ZodString;
|
|
2158
|
+
description: z.ZodString;
|
|
2159
|
+
}, z.core.$catchall<z.ZodUnknown>>>;
|
|
2160
|
+
}, z.core.$strip>>;
|
|
2161
|
+
parallel: z.ZodBoolean;
|
|
2162
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
2163
|
+
}, z.core.$strip>;
|
|
2164
|
+
estimatedSolFee: z.ZodOptional<z.ZodObject<{
|
|
2165
|
+
amount: z.ZodString;
|
|
2166
|
+
decimals: z.ZodNumber;
|
|
2167
|
+
uiAmount: z.ZodNullable<z.ZodNumber>;
|
|
2168
|
+
uiAmountString: z.ZodString;
|
|
2169
|
+
mint: z.ZodString;
|
|
2170
|
+
}, z.core.$strip>>;
|
|
1744
2171
|
welcomePack: z.ZodObject<{
|
|
1745
2172
|
address: z.ZodString;
|
|
1746
2173
|
id: z.ZodNumber;
|
|
@@ -1796,24 +2223,6 @@ declare const WelcomePackCreateOutputSchema: z.ZodObject<{
|
|
|
1796
2223
|
ownershipType: z.ZodString;
|
|
1797
2224
|
}, z.core.$strip>>;
|
|
1798
2225
|
}, 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
2226
|
}, z.core.$strip>;
|
|
1818
2227
|
declare const WelcomePackDeleteOutputSchema: z.ZodObject<{
|
|
1819
2228
|
transactionData: z.ZodObject<{
|
|
@@ -1827,13 +2236,13 @@ declare const WelcomePackDeleteOutputSchema: z.ZodObject<{
|
|
|
1827
2236
|
parallel: z.ZodBoolean;
|
|
1828
2237
|
tag: z.ZodOptional<z.ZodString>;
|
|
1829
2238
|
}, z.core.$strip>;
|
|
1830
|
-
estimatedSolFee: z.ZodObject<{
|
|
2239
|
+
estimatedSolFee: z.ZodOptional<z.ZodObject<{
|
|
1831
2240
|
amount: z.ZodString;
|
|
1832
2241
|
decimals: z.ZodNumber;
|
|
1833
2242
|
uiAmount: z.ZodNullable<z.ZodNumber>;
|
|
1834
2243
|
uiAmountString: z.ZodString;
|
|
1835
2244
|
mint: z.ZodString;
|
|
1836
|
-
}, z.core.$strip
|
|
2245
|
+
}, z.core.$strip>>;
|
|
1837
2246
|
}, z.core.$strip>;
|
|
1838
2247
|
declare const WelcomePackClaimOutputSchema: z.ZodObject<{
|
|
1839
2248
|
transactionData: z.ZodObject<{
|
|
@@ -1847,13 +2256,13 @@ declare const WelcomePackClaimOutputSchema: z.ZodObject<{
|
|
|
1847
2256
|
parallel: z.ZodBoolean;
|
|
1848
2257
|
tag: z.ZodOptional<z.ZodString>;
|
|
1849
2258
|
}, z.core.$strip>;
|
|
1850
|
-
estimatedSolFee: z.ZodObject<{
|
|
2259
|
+
estimatedSolFee: z.ZodOptional<z.ZodObject<{
|
|
1851
2260
|
amount: z.ZodString;
|
|
1852
2261
|
decimals: z.ZodNumber;
|
|
1853
2262
|
uiAmount: z.ZodNullable<z.ZodNumber>;
|
|
1854
2263
|
uiAmountString: z.ZodString;
|
|
1855
2264
|
mint: z.ZodString;
|
|
1856
|
-
}, z.core.$strip
|
|
2265
|
+
}, z.core.$strip>>;
|
|
1857
2266
|
}, z.core.$strip>;
|
|
1858
2267
|
declare const WelcomePackInviteOutputSchema: z.ZodObject<{
|
|
1859
2268
|
message: z.ZodString;
|
|
@@ -1873,6 +2282,146 @@ type WelcomePackDeleteOutput = z.infer<typeof WelcomePackDeleteOutputSchema>;
|
|
|
1873
2282
|
type WelcomePackClaimOutput = z.infer<typeof WelcomePackClaimOutputSchema>;
|
|
1874
2283
|
type WelcomePackInviteOutput = z.infer<typeof WelcomePackInviteOutputSchema>;
|
|
1875
2284
|
|
|
2285
|
+
declare const MigrateInputSchema: z.ZodObject<{
|
|
2286
|
+
sourceWallet: z.ZodString;
|
|
2287
|
+
destinationWallet: z.ZodString;
|
|
2288
|
+
hotspots: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
2289
|
+
tokens: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
2290
|
+
mint: z.ZodString;
|
|
2291
|
+
amount: z.ZodString;
|
|
2292
|
+
}, z.core.$strip>>>;
|
|
2293
|
+
}, z.core.$strip>;
|
|
2294
|
+
declare const MigrateTransactionItemSchema: z.ZodObject<{
|
|
2295
|
+
serializedTransaction: z.ZodString;
|
|
2296
|
+
metadata: z.ZodOptional<z.ZodObject<{
|
|
2297
|
+
type: z.ZodString;
|
|
2298
|
+
description: z.ZodString;
|
|
2299
|
+
signers: z.ZodArray<z.ZodEnum<{
|
|
2300
|
+
destination: "destination";
|
|
2301
|
+
source: "source";
|
|
2302
|
+
}>>;
|
|
2303
|
+
}, z.core.$catchall<z.ZodUnknown>>>;
|
|
2304
|
+
}, z.core.$strip>;
|
|
2305
|
+
declare const MigrateTransactionDataSchema: z.ZodObject<{
|
|
2306
|
+
transactions: z.ZodArray<z.ZodObject<{
|
|
2307
|
+
serializedTransaction: z.ZodString;
|
|
2308
|
+
metadata: z.ZodOptional<z.ZodObject<{
|
|
2309
|
+
type: z.ZodString;
|
|
2310
|
+
description: z.ZodString;
|
|
2311
|
+
signers: z.ZodArray<z.ZodEnum<{
|
|
2312
|
+
destination: "destination";
|
|
2313
|
+
source: "source";
|
|
2314
|
+
}>>;
|
|
2315
|
+
}, z.core.$catchall<z.ZodUnknown>>>;
|
|
2316
|
+
}, z.core.$strip>>;
|
|
2317
|
+
parallel: z.ZodBoolean;
|
|
2318
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
2319
|
+
}, z.core.$strip>;
|
|
2320
|
+
declare const MigrateOutputSchema: z.ZodObject<{
|
|
2321
|
+
transactionData: z.ZodObject<{
|
|
2322
|
+
transactions: z.ZodArray<z.ZodObject<{
|
|
2323
|
+
serializedTransaction: z.ZodString;
|
|
2324
|
+
metadata: z.ZodOptional<z.ZodObject<{
|
|
2325
|
+
type: z.ZodString;
|
|
2326
|
+
description: z.ZodString;
|
|
2327
|
+
signers: z.ZodArray<z.ZodEnum<{
|
|
2328
|
+
destination: "destination";
|
|
2329
|
+
source: "source";
|
|
2330
|
+
}>>;
|
|
2331
|
+
}, z.core.$catchall<z.ZodUnknown>>>;
|
|
2332
|
+
}, z.core.$strip>>;
|
|
2333
|
+
parallel: z.ZodBoolean;
|
|
2334
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
2335
|
+
}, z.core.$strip>;
|
|
2336
|
+
estimatedSolFee: z.ZodObject<{
|
|
2337
|
+
amount: z.ZodString;
|
|
2338
|
+
decimals: z.ZodNumber;
|
|
2339
|
+
uiAmount: z.ZodNullable<z.ZodNumber>;
|
|
2340
|
+
uiAmountString: z.ZodString;
|
|
2341
|
+
mint: z.ZodString;
|
|
2342
|
+
}, z.core.$strip>;
|
|
2343
|
+
warnings: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2344
|
+
hasMore: z.ZodOptional<z.ZodBoolean>;
|
|
2345
|
+
nextParams: z.ZodOptional<z.ZodObject<{
|
|
2346
|
+
sourceWallet: z.ZodString;
|
|
2347
|
+
destinationWallet: z.ZodString;
|
|
2348
|
+
hotspots: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
2349
|
+
tokens: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
2350
|
+
mint: z.ZodString;
|
|
2351
|
+
amount: z.ZodString;
|
|
2352
|
+
}, z.core.$strip>>>;
|
|
2353
|
+
}, z.core.$strip>>;
|
|
2354
|
+
}, z.core.$strip>;
|
|
2355
|
+
declare const MigratableHotspotSchema: z.ZodObject<{
|
|
2356
|
+
address: z.ZodString;
|
|
2357
|
+
entityKey: z.ZodString;
|
|
2358
|
+
name: z.ZodString;
|
|
2359
|
+
type: z.ZodEnum<{
|
|
2360
|
+
iot: "iot";
|
|
2361
|
+
mobile: "mobile";
|
|
2362
|
+
all: "all";
|
|
2363
|
+
}>;
|
|
2364
|
+
deviceType: z.ZodEnum<{
|
|
2365
|
+
"iot-gateway": "iot-gateway";
|
|
2366
|
+
wifiIndoor: "wifiIndoor";
|
|
2367
|
+
wifiOutdoor: "wifiOutdoor";
|
|
2368
|
+
wifiDataOnly: "wifiDataOnly";
|
|
2369
|
+
cbrs: "cbrs";
|
|
2370
|
+
}>;
|
|
2371
|
+
city: z.ZodOptional<z.ZodString>;
|
|
2372
|
+
state: z.ZodOptional<z.ZodString>;
|
|
2373
|
+
country: z.ZodOptional<z.ZodString>;
|
|
2374
|
+
asset: z.ZodString;
|
|
2375
|
+
isOnline: z.ZodOptional<z.ZodBoolean>;
|
|
2376
|
+
owner: z.ZodOptional<z.ZodString>;
|
|
2377
|
+
shares: z.ZodOptional<z.ZodObject<{
|
|
2378
|
+
fixed: z.ZodOptional<z.ZodString>;
|
|
2379
|
+
percentage: z.ZodOptional<z.ZodNumber>;
|
|
2380
|
+
}, z.core.$strip>>;
|
|
2381
|
+
ownershipType: z.ZodString;
|
|
2382
|
+
inWelcomePack: z.ZodBoolean;
|
|
2383
|
+
splitWallets: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2384
|
+
}, z.core.$strip>;
|
|
2385
|
+
declare const MigratableHotspotsInputSchema: z.ZodObject<{
|
|
2386
|
+
walletAddress: z.ZodString;
|
|
2387
|
+
}, z.core.$strip>;
|
|
2388
|
+
declare const MigratableHotspotsOutputSchema: z.ZodObject<{
|
|
2389
|
+
hotspots: z.ZodArray<z.ZodObject<{
|
|
2390
|
+
address: z.ZodString;
|
|
2391
|
+
entityKey: z.ZodString;
|
|
2392
|
+
name: z.ZodString;
|
|
2393
|
+
type: z.ZodEnum<{
|
|
2394
|
+
iot: "iot";
|
|
2395
|
+
mobile: "mobile";
|
|
2396
|
+
all: "all";
|
|
2397
|
+
}>;
|
|
2398
|
+
deviceType: z.ZodEnum<{
|
|
2399
|
+
"iot-gateway": "iot-gateway";
|
|
2400
|
+
wifiIndoor: "wifiIndoor";
|
|
2401
|
+
wifiOutdoor: "wifiOutdoor";
|
|
2402
|
+
wifiDataOnly: "wifiDataOnly";
|
|
2403
|
+
cbrs: "cbrs";
|
|
2404
|
+
}>;
|
|
2405
|
+
city: z.ZodOptional<z.ZodString>;
|
|
2406
|
+
state: z.ZodOptional<z.ZodString>;
|
|
2407
|
+
country: z.ZodOptional<z.ZodString>;
|
|
2408
|
+
asset: z.ZodString;
|
|
2409
|
+
isOnline: z.ZodOptional<z.ZodBoolean>;
|
|
2410
|
+
owner: z.ZodOptional<z.ZodString>;
|
|
2411
|
+
shares: z.ZodOptional<z.ZodObject<{
|
|
2412
|
+
fixed: z.ZodOptional<z.ZodString>;
|
|
2413
|
+
percentage: z.ZodOptional<z.ZodNumber>;
|
|
2414
|
+
}, z.core.$strip>>;
|
|
2415
|
+
ownershipType: z.ZodString;
|
|
2416
|
+
inWelcomePack: z.ZodBoolean;
|
|
2417
|
+
splitWallets: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2418
|
+
}, z.core.$strip>>;
|
|
2419
|
+
}, z.core.$strip>;
|
|
2420
|
+
type MigrateInput = z.infer<typeof MigrateInputSchema>;
|
|
2421
|
+
type MigrateOutput = z.infer<typeof MigrateOutputSchema>;
|
|
2422
|
+
type MigratableHotspotsInput = z.infer<typeof MigratableHotspotsInputSchema>;
|
|
2423
|
+
type MigratableHotspotsOutput = z.infer<typeof MigratableHotspotsOutputSchema>;
|
|
2424
|
+
|
|
1876
2425
|
/** Authentication required error */
|
|
1877
2426
|
declare const UNAUTHENTICATED: {
|
|
1878
2427
|
readonly status: 401;
|
|
@@ -1965,7 +2514,8 @@ declare const apiContract: {
|
|
|
1965
2514
|
metadata: zod.ZodOptional<zod.ZodObject<{
|
|
1966
2515
|
type: zod.ZodString;
|
|
1967
2516
|
description: zod.ZodString;
|
|
1968
|
-
|
|
2517
|
+
positionMint: zod.ZodOptional<zod.ZodString>;
|
|
2518
|
+
}, zod_v4_core.$strip>>;
|
|
1969
2519
|
}, zod_v4_core.$strip>>;
|
|
1970
2520
|
parallel: zod.ZodBoolean;
|
|
1971
2521
|
tag: zod.ZodOptional<zod.ZodString>;
|
|
@@ -1977,7 +2527,6 @@ declare const apiContract: {
|
|
|
1977
2527
|
uiAmountString: zod.ZodString;
|
|
1978
2528
|
mint: zod.ZodString;
|
|
1979
2529
|
}, zod_v4_core.$strip>>;
|
|
1980
|
-
hasMore: zod.ZodOptional<zod.ZodBoolean>;
|
|
1981
2530
|
}, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
|
|
1982
2531
|
BAD_REQUEST: {
|
|
1983
2532
|
readonly status: 400;
|
|
@@ -2017,7 +2566,6 @@ declare const apiContract: {
|
|
|
2017
2566
|
uiAmountString: zod.ZodString;
|
|
2018
2567
|
mint: zod.ZodString;
|
|
2019
2568
|
}, zod_v4_core.$strip>>;
|
|
2020
|
-
hasMore: zod.ZodOptional<zod.ZodBoolean>;
|
|
2021
2569
|
}, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
|
|
2022
2570
|
BAD_REQUEST: {
|
|
2023
2571
|
readonly status: 400;
|
|
@@ -2066,7 +2614,6 @@ declare const apiContract: {
|
|
|
2066
2614
|
uiAmountString: zod.ZodString;
|
|
2067
2615
|
mint: zod.ZodString;
|
|
2068
2616
|
}, zod_v4_core.$strip>>;
|
|
2069
|
-
hasMore: zod.ZodOptional<zod.ZodBoolean>;
|
|
2070
2617
|
}, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
|
|
2071
2618
|
BAD_REQUEST: {
|
|
2072
2619
|
readonly status: 400;
|
|
@@ -2110,7 +2657,6 @@ declare const apiContract: {
|
|
|
2110
2657
|
uiAmountString: zod.ZodString;
|
|
2111
2658
|
mint: zod.ZodString;
|
|
2112
2659
|
}, zod_v4_core.$strip>>;
|
|
2113
|
-
hasMore: zod.ZodOptional<zod.ZodBoolean>;
|
|
2114
2660
|
}, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
|
|
2115
2661
|
BAD_REQUEST: {
|
|
2116
2662
|
readonly status: 400;
|
|
@@ -2159,7 +2705,6 @@ declare const apiContract: {
|
|
|
2159
2705
|
uiAmountString: zod.ZodString;
|
|
2160
2706
|
mint: zod.ZodString;
|
|
2161
2707
|
}, zod_v4_core.$strip>>;
|
|
2162
|
-
hasMore: zod.ZodOptional<zod.ZodBoolean>;
|
|
2163
2708
|
}, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
|
|
2164
2709
|
BAD_REQUEST: {
|
|
2165
2710
|
readonly status: 400;
|
|
@@ -2197,7 +2742,8 @@ declare const apiContract: {
|
|
|
2197
2742
|
metadata: zod.ZodOptional<zod.ZodObject<{
|
|
2198
2743
|
type: zod.ZodString;
|
|
2199
2744
|
description: zod.ZodString;
|
|
2200
|
-
|
|
2745
|
+
newPositionMint: zod.ZodOptional<zod.ZodString>;
|
|
2746
|
+
}, zod_v4_core.$strip>>;
|
|
2201
2747
|
}, zod_v4_core.$strip>>;
|
|
2202
2748
|
parallel: zod.ZodBoolean;
|
|
2203
2749
|
tag: zod.ZodOptional<zod.ZodString>;
|
|
@@ -2209,7 +2755,6 @@ declare const apiContract: {
|
|
|
2209
2755
|
uiAmountString: zod.ZodString;
|
|
2210
2756
|
mint: zod.ZodString;
|
|
2211
2757
|
}, zod_v4_core.$strip>>;
|
|
2212
|
-
hasMore: zod.ZodOptional<zod.ZodBoolean>;
|
|
2213
2758
|
}, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
|
|
2214
2759
|
BAD_REQUEST: {
|
|
2215
2760
|
readonly status: 400;
|
|
@@ -2255,7 +2800,6 @@ declare const apiContract: {
|
|
|
2255
2800
|
uiAmountString: zod.ZodString;
|
|
2256
2801
|
mint: zod.ZodString;
|
|
2257
2802
|
}, zod_v4_core.$strip>>;
|
|
2258
|
-
hasMore: zod.ZodOptional<zod.ZodBoolean>;
|
|
2259
2803
|
}, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
|
|
2260
2804
|
BAD_REQUEST: {
|
|
2261
2805
|
readonly status: 400;
|
|
@@ -2301,7 +2845,7 @@ declare const apiContract: {
|
|
|
2301
2845
|
uiAmountString: zod.ZodString;
|
|
2302
2846
|
mint: zod.ZodString;
|
|
2303
2847
|
}, zod_v4_core.$strip>>;
|
|
2304
|
-
hasMore: zod.
|
|
2848
|
+
hasMore: zod.ZodBoolean;
|
|
2305
2849
|
}, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
|
|
2306
2850
|
BAD_REQUEST: {
|
|
2307
2851
|
readonly status: 400;
|
|
@@ -2345,7 +2889,7 @@ declare const apiContract: {
|
|
|
2345
2889
|
uiAmountString: zod.ZodString;
|
|
2346
2890
|
mint: zod.ZodString;
|
|
2347
2891
|
}, zod_v4_core.$strip>>;
|
|
2348
|
-
hasMore: zod.
|
|
2892
|
+
hasMore: zod.ZodBoolean;
|
|
2349
2893
|
}, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
|
|
2350
2894
|
BAD_REQUEST: {
|
|
2351
2895
|
readonly status: 400;
|
|
@@ -2389,7 +2933,7 @@ declare const apiContract: {
|
|
|
2389
2933
|
uiAmountString: zod.ZodString;
|
|
2390
2934
|
mint: zod.ZodString;
|
|
2391
2935
|
}, zod_v4_core.$strip>>;
|
|
2392
|
-
hasMore: zod.
|
|
2936
|
+
hasMore: zod.ZodBoolean;
|
|
2393
2937
|
}, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
|
|
2394
2938
|
BAD_REQUEST: {
|
|
2395
2939
|
readonly status: 400;
|
|
@@ -2433,7 +2977,6 @@ declare const apiContract: {
|
|
|
2433
2977
|
uiAmountString: zod.ZodString;
|
|
2434
2978
|
mint: zod.ZodString;
|
|
2435
2979
|
}, zod_v4_core.$strip>>;
|
|
2436
|
-
hasMore: zod.ZodOptional<zod.ZodBoolean>;
|
|
2437
2980
|
}, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
|
|
2438
2981
|
BAD_REQUEST: {
|
|
2439
2982
|
readonly status: 400;
|
|
@@ -2479,7 +3022,7 @@ declare const apiContract: {
|
|
|
2479
3022
|
uiAmountString: zod.ZodString;
|
|
2480
3023
|
mint: zod.ZodString;
|
|
2481
3024
|
}, zod_v4_core.$strip>>;
|
|
2482
|
-
hasMore: zod.
|
|
3025
|
+
hasMore: zod.ZodBoolean;
|
|
2483
3026
|
}, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
|
|
2484
3027
|
BAD_REQUEST: {
|
|
2485
3028
|
readonly status: 400;
|
|
@@ -2525,7 +3068,7 @@ declare const apiContract: {
|
|
|
2525
3068
|
uiAmountString: zod.ZodString;
|
|
2526
3069
|
mint: zod.ZodString;
|
|
2527
3070
|
}, zod_v4_core.$strip>>;
|
|
2528
|
-
hasMore: zod.
|
|
3071
|
+
hasMore: zod.ZodBoolean;
|
|
2529
3072
|
}, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
|
|
2530
3073
|
BAD_REQUEST: {
|
|
2531
3074
|
readonly status: 400;
|
|
@@ -2558,7 +3101,8 @@ declare const apiContract: {
|
|
|
2558
3101
|
metadata: zod.ZodOptional<zod.ZodObject<{
|
|
2559
3102
|
type: zod.ZodString;
|
|
2560
3103
|
description: zod.ZodString;
|
|
2561
|
-
|
|
3104
|
+
votesRelinquished: zod.ZodOptional<zod.ZodNumber>;
|
|
3105
|
+
}, zod_v4_core.$strip>>;
|
|
2562
3106
|
}, zod_v4_core.$strip>>;
|
|
2563
3107
|
parallel: zod.ZodBoolean;
|
|
2564
3108
|
tag: zod.ZodOptional<zod.ZodString>;
|
|
@@ -2570,7 +3114,7 @@ declare const apiContract: {
|
|
|
2570
3114
|
uiAmountString: zod.ZodString;
|
|
2571
3115
|
mint: zod.ZodString;
|
|
2572
3116
|
}, zod_v4_core.$strip>>;
|
|
2573
|
-
hasMore: zod.
|
|
3117
|
+
hasMore: zod.ZodBoolean;
|
|
2574
3118
|
}, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
|
|
2575
3119
|
BAD_REQUEST: {
|
|
2576
3120
|
readonly status: 400;
|
|
@@ -2616,7 +3160,7 @@ declare const apiContract: {
|
|
|
2616
3160
|
uiAmountString: zod.ZodString;
|
|
2617
3161
|
mint: zod.ZodString;
|
|
2618
3162
|
}, zod_v4_core.$strip>>;
|
|
2619
|
-
hasMore: zod.
|
|
3163
|
+
hasMore: zod.ZodBoolean;
|
|
2620
3164
|
}, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
|
|
2621
3165
|
BAD_REQUEST: {
|
|
2622
3166
|
readonly status: 400;
|
|
@@ -2661,7 +3205,7 @@ declare const apiContract: {
|
|
|
2661
3205
|
uiAmountString: zod.ZodString;
|
|
2662
3206
|
mint: zod.ZodString;
|
|
2663
3207
|
}, zod_v4_core.$strip>>;
|
|
2664
|
-
hasMore: zod.
|
|
3208
|
+
hasMore: zod.ZodBoolean;
|
|
2665
3209
|
}, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
|
|
2666
3210
|
BAD_REQUEST: {
|
|
2667
3211
|
readonly status: 400;
|
|
@@ -2738,13 +3282,13 @@ declare const apiContract: {
|
|
|
2738
3282
|
parallel: zod.ZodBoolean;
|
|
2739
3283
|
tag: zod.ZodOptional<zod.ZodString>;
|
|
2740
3284
|
}, zod_v4_core.$strip>;
|
|
2741
|
-
estimatedSolFee: zod.ZodObject<{
|
|
3285
|
+
estimatedSolFee: zod.ZodOptional<zod.ZodObject<{
|
|
2742
3286
|
amount: zod.ZodString;
|
|
2743
3287
|
decimals: zod.ZodNumber;
|
|
2744
3288
|
uiAmount: zod.ZodNullable<zod.ZodNumber>;
|
|
2745
3289
|
uiAmountString: zod.ZodString;
|
|
2746
3290
|
mint: zod.ZodString;
|
|
2747
|
-
}, zod_v4_core.$strip
|
|
3291
|
+
}, zod_v4_core.$strip>>;
|
|
2748
3292
|
}, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
|
|
2749
3293
|
BAD_REQUEST: {
|
|
2750
3294
|
readonly status: 400;
|
|
@@ -2776,13 +3320,13 @@ declare const apiContract: {
|
|
|
2776
3320
|
parallel: zod.ZodBoolean;
|
|
2777
3321
|
tag: zod.ZodOptional<zod.ZodString>;
|
|
2778
3322
|
}, zod_v4_core.$strip>;
|
|
2779
|
-
estimatedSolFee: zod.ZodObject<{
|
|
3323
|
+
estimatedSolFee: zod.ZodOptional<zod.ZodObject<{
|
|
2780
3324
|
amount: zod.ZodString;
|
|
2781
3325
|
decimals: zod.ZodNumber;
|
|
2782
3326
|
uiAmount: zod.ZodNullable<zod.ZodNumber>;
|
|
2783
3327
|
uiAmountString: zod.ZodString;
|
|
2784
3328
|
mint: zod.ZodString;
|
|
2785
|
-
}, zod_v4_core.$strip
|
|
3329
|
+
}, zod_v4_core.$strip>>;
|
|
2786
3330
|
}, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
|
|
2787
3331
|
INVALID_WALLET_ADDRESS: {
|
|
2788
3332
|
status: number;
|
|
@@ -2860,13 +3404,13 @@ declare const apiContract: {
|
|
|
2860
3404
|
parallel: zod.ZodBoolean;
|
|
2861
3405
|
tag: zod.ZodOptional<zod.ZodString>;
|
|
2862
3406
|
}, zod_v4_core.$strip>;
|
|
2863
|
-
estimatedSolFee: zod.ZodObject<{
|
|
3407
|
+
estimatedSolFee: zod.ZodOptional<zod.ZodObject<{
|
|
2864
3408
|
amount: zod.ZodString;
|
|
2865
3409
|
decimals: zod.ZodNumber;
|
|
2866
3410
|
uiAmount: zod.ZodNullable<zod.ZodNumber>;
|
|
2867
3411
|
uiAmountString: zod.ZodString;
|
|
2868
3412
|
mint: zod.ZodString;
|
|
2869
|
-
}, zod_v4_core.$strip
|
|
3413
|
+
}, zod_v4_core.$strip>>;
|
|
2870
3414
|
}, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
|
|
2871
3415
|
INSUFFICIENT_FUNDS: {
|
|
2872
3416
|
readonly status: 400;
|
|
@@ -2955,13 +3499,13 @@ declare const apiContract: {
|
|
|
2955
3499
|
parallel: zod.ZodBoolean;
|
|
2956
3500
|
tag: zod.ZodOptional<zod.ZodString>;
|
|
2957
3501
|
}, zod_v4_core.$strip>;
|
|
2958
|
-
estimatedSolFee: zod.ZodObject<{
|
|
3502
|
+
estimatedSolFee: zod.ZodOptional<zod.ZodObject<{
|
|
2959
3503
|
amount: zod.ZodString;
|
|
2960
3504
|
decimals: zod.ZodNumber;
|
|
2961
3505
|
uiAmount: zod.ZodNullable<zod.ZodNumber>;
|
|
2962
3506
|
uiAmountString: zod.ZodString;
|
|
2963
3507
|
mint: zod.ZodString;
|
|
2964
|
-
}, zod_v4_core.$strip
|
|
3508
|
+
}, zod_v4_core.$strip>>;
|
|
2965
3509
|
}, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
|
|
2966
3510
|
UNAUTHORIZED: {
|
|
2967
3511
|
readonly status: 403;
|
|
@@ -3005,13 +3549,13 @@ declare const apiContract: {
|
|
|
3005
3549
|
parallel: zod.ZodBoolean;
|
|
3006
3550
|
tag: zod.ZodOptional<zod.ZodString>;
|
|
3007
3551
|
}, zod_v4_core.$strip>;
|
|
3008
|
-
estimatedSolFee: zod.ZodObject<{
|
|
3552
|
+
estimatedSolFee: zod.ZodOptional<zod.ZodObject<{
|
|
3009
3553
|
amount: zod.ZodString;
|
|
3010
3554
|
decimals: zod.ZodNumber;
|
|
3011
3555
|
uiAmount: zod.ZodNullable<zod.ZodNumber>;
|
|
3012
3556
|
uiAmountString: zod.ZodString;
|
|
3013
3557
|
mint: zod.ZodString;
|
|
3014
|
-
}, zod_v4_core.$strip
|
|
3558
|
+
}, zod_v4_core.$strip>>;
|
|
3015
3559
|
}, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
|
|
3016
3560
|
BAD_REQUEST: {
|
|
3017
3561
|
message: string;
|
|
@@ -3098,13 +3642,13 @@ declare const apiContract: {
|
|
|
3098
3642
|
parallel: zod.ZodBoolean;
|
|
3099
3643
|
tag: zod.ZodOptional<zod.ZodString>;
|
|
3100
3644
|
}, zod_v4_core.$strip>;
|
|
3101
|
-
estimatedSolFee: zod.ZodObject<{
|
|
3645
|
+
estimatedSolFee: zod.ZodOptional<zod.ZodObject<{
|
|
3102
3646
|
amount: zod.ZodString;
|
|
3103
3647
|
decimals: zod.ZodNumber;
|
|
3104
3648
|
uiAmount: zod.ZodNullable<zod.ZodNumber>;
|
|
3105
3649
|
uiAmountString: zod.ZodString;
|
|
3106
3650
|
mint: zod.ZodString;
|
|
3107
|
-
}, zod_v4_core.$strip
|
|
3651
|
+
}, zod_v4_core.$strip>>;
|
|
3108
3652
|
}, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
|
|
3109
3653
|
NOT_FOUND: {
|
|
3110
3654
|
readonly status: 404;
|
|
@@ -3138,13 +3682,13 @@ declare const apiContract: {
|
|
|
3138
3682
|
parallel: zod.ZodBoolean;
|
|
3139
3683
|
tag: zod.ZodOptional<zod.ZodString>;
|
|
3140
3684
|
}, zod_v4_core.$strip>;
|
|
3141
|
-
estimatedSolFee: zod.ZodObject<{
|
|
3685
|
+
estimatedSolFee: zod.ZodOptional<zod.ZodObject<{
|
|
3142
3686
|
amount: zod.ZodString;
|
|
3143
3687
|
decimals: zod.ZodNumber;
|
|
3144
3688
|
uiAmount: zod.ZodNullable<zod.ZodNumber>;
|
|
3145
3689
|
uiAmountString: zod.ZodString;
|
|
3146
3690
|
mint: zod.ZodString;
|
|
3147
|
-
}, zod_v4_core.$strip
|
|
3691
|
+
}, zod_v4_core.$strip>>;
|
|
3148
3692
|
}, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
|
|
3149
3693
|
NOT_FOUND: {
|
|
3150
3694
|
readonly status: 404;
|
|
@@ -3173,13 +3717,13 @@ declare const apiContract: {
|
|
|
3173
3717
|
parallel: zod.ZodBoolean;
|
|
3174
3718
|
tag: zod.ZodOptional<zod.ZodString>;
|
|
3175
3719
|
}, zod_v4_core.$strip>;
|
|
3176
|
-
estimatedSolFee: zod.ZodObject<{
|
|
3720
|
+
estimatedSolFee: zod.ZodOptional<zod.ZodObject<{
|
|
3177
3721
|
amount: zod.ZodString;
|
|
3178
3722
|
decimals: zod.ZodNumber;
|
|
3179
3723
|
uiAmount: zod.ZodNullable<zod.ZodNumber>;
|
|
3180
3724
|
uiAmountString: zod.ZodString;
|
|
3181
3725
|
mint: zod.ZodString;
|
|
3182
|
-
}, zod_v4_core.$strip
|
|
3726
|
+
}, zod_v4_core.$strip>>;
|
|
3183
3727
|
}, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
|
|
3184
3728
|
NOT_FOUND: {
|
|
3185
3729
|
readonly status: 404;
|
|
@@ -3251,13 +3795,13 @@ declare const apiContract: {
|
|
|
3251
3795
|
parallel: zod.ZodBoolean;
|
|
3252
3796
|
tag: zod.ZodOptional<zod.ZodString>;
|
|
3253
3797
|
}, zod_v4_core.$strip>;
|
|
3254
|
-
estimatedSolFee: zod.ZodObject<{
|
|
3798
|
+
estimatedSolFee: zod.ZodOptional<zod.ZodObject<{
|
|
3255
3799
|
amount: zod.ZodString;
|
|
3256
3800
|
decimals: zod.ZodNumber;
|
|
3257
3801
|
uiAmount: zod.ZodNullable<zod.ZodNumber>;
|
|
3258
3802
|
uiAmountString: zod.ZodString;
|
|
3259
3803
|
mint: zod.ZodString;
|
|
3260
|
-
}, zod_v4_core.$strip
|
|
3804
|
+
}, zod_v4_core.$strip>>;
|
|
3261
3805
|
}, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
|
|
3262
3806
|
NOT_FOUND: {
|
|
3263
3807
|
readonly status: 404;
|
|
@@ -3287,13 +3831,13 @@ declare const apiContract: {
|
|
|
3287
3831
|
parallel: zod.ZodBoolean;
|
|
3288
3832
|
tag: zod.ZodOptional<zod.ZodString>;
|
|
3289
3833
|
}, zod_v4_core.$strip>;
|
|
3290
|
-
estimatedSolFee: zod.ZodObject<{
|
|
3834
|
+
estimatedSolFee: zod.ZodOptional<zod.ZodObject<{
|
|
3291
3835
|
amount: zod.ZodString;
|
|
3292
3836
|
decimals: zod.ZodNumber;
|
|
3293
3837
|
uiAmount: zod.ZodNullable<zod.ZodNumber>;
|
|
3294
3838
|
uiAmountString: zod.ZodString;
|
|
3295
3839
|
mint: zod.ZodString;
|
|
3296
|
-
}, zod_v4_core.$strip
|
|
3840
|
+
}, zod_v4_core.$strip>>;
|
|
3297
3841
|
}, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
|
|
3298
3842
|
NOT_FOUND: {
|
|
3299
3843
|
readonly status: 404;
|
|
@@ -3367,13 +3911,13 @@ declare const apiContract: {
|
|
|
3367
3911
|
parallel: zod.ZodBoolean;
|
|
3368
3912
|
tag: zod.ZodOptional<zod.ZodString>;
|
|
3369
3913
|
}, zod_v4_core.$strip>;
|
|
3370
|
-
estimatedSolFee: zod.ZodObject<{
|
|
3914
|
+
estimatedSolFee: zod.ZodOptional<zod.ZodObject<{
|
|
3371
3915
|
amount: zod.ZodString;
|
|
3372
3916
|
decimals: zod.ZodNumber;
|
|
3373
3917
|
uiAmount: zod.ZodNullable<zod.ZodNumber>;
|
|
3374
3918
|
uiAmountString: zod.ZodString;
|
|
3375
3919
|
mint: zod.ZodString;
|
|
3376
|
-
}, zod_v4_core.$strip
|
|
3920
|
+
}, zod_v4_core.$strip>>;
|
|
3377
3921
|
appliedTo: zod.ZodObject<{
|
|
3378
3922
|
iot: zod.ZodBoolean;
|
|
3379
3923
|
mobile: zod.ZodBoolean;
|
|
@@ -4214,6 +4758,24 @@ declare const apiContract: {
|
|
|
4214
4758
|
}, zod_v4_core.$strip>;
|
|
4215
4759
|
lazyDistributor: zod.ZodString;
|
|
4216
4760
|
}, zod_v4_core.$strip>, zod.ZodObject<{
|
|
4761
|
+
transactionData: zod.ZodObject<{
|
|
4762
|
+
transactions: zod.ZodArray<zod.ZodObject<{
|
|
4763
|
+
serializedTransaction: zod.ZodString;
|
|
4764
|
+
metadata: zod.ZodOptional<zod.ZodObject<{
|
|
4765
|
+
type: zod.ZodString;
|
|
4766
|
+
description: zod.ZodString;
|
|
4767
|
+
}, zod_v4_core.$catchall<zod.ZodUnknown>>>;
|
|
4768
|
+
}, zod_v4_core.$strip>>;
|
|
4769
|
+
parallel: zod.ZodBoolean;
|
|
4770
|
+
tag: zod.ZodOptional<zod.ZodString>;
|
|
4771
|
+
}, zod_v4_core.$strip>;
|
|
4772
|
+
estimatedSolFee: zod.ZodOptional<zod.ZodObject<{
|
|
4773
|
+
amount: zod.ZodString;
|
|
4774
|
+
decimals: zod.ZodNumber;
|
|
4775
|
+
uiAmount: zod.ZodNullable<zod.ZodNumber>;
|
|
4776
|
+
uiAmountString: zod.ZodString;
|
|
4777
|
+
mint: zod.ZodString;
|
|
4778
|
+
}, zod_v4_core.$strip>>;
|
|
4217
4779
|
welcomePack: zod.ZodObject<{
|
|
4218
4780
|
address: zod.ZodString;
|
|
4219
4781
|
id: zod.ZodNumber;
|
|
@@ -4269,24 +4831,6 @@ declare const apiContract: {
|
|
|
4269
4831
|
ownershipType: zod.ZodString;
|
|
4270
4832
|
}, zod_v4_core.$strip>>;
|
|
4271
4833
|
}, zod_v4_core.$strip>;
|
|
4272
|
-
transactionData: zod.ZodObject<{
|
|
4273
|
-
transactions: zod.ZodArray<zod.ZodObject<{
|
|
4274
|
-
serializedTransaction: zod.ZodString;
|
|
4275
|
-
metadata: zod.ZodOptional<zod.ZodObject<{
|
|
4276
|
-
type: zod.ZodString;
|
|
4277
|
-
description: zod.ZodString;
|
|
4278
|
-
}, zod_v4_core.$catchall<zod.ZodUnknown>>>;
|
|
4279
|
-
}, zod_v4_core.$strip>>;
|
|
4280
|
-
parallel: zod.ZodBoolean;
|
|
4281
|
-
tag: zod.ZodOptional<zod.ZodString>;
|
|
4282
|
-
}, zod_v4_core.$strip>;
|
|
4283
|
-
estimatedSolFee: zod.ZodObject<{
|
|
4284
|
-
amount: zod.ZodString;
|
|
4285
|
-
decimals: zod.ZodNumber;
|
|
4286
|
-
uiAmount: zod.ZodNullable<zod.ZodNumber>;
|
|
4287
|
-
uiAmountString: zod.ZodString;
|
|
4288
|
-
mint: zod.ZodString;
|
|
4289
|
-
}, zod_v4_core.$strip>;
|
|
4290
4834
|
}, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
|
|
4291
4835
|
BAD_REQUEST: {
|
|
4292
4836
|
readonly status: 400;
|
|
@@ -4390,13 +4934,13 @@ declare const apiContract: {
|
|
|
4390
4934
|
parallel: zod.ZodBoolean;
|
|
4391
4935
|
tag: zod.ZodOptional<zod.ZodString>;
|
|
4392
4936
|
}, zod_v4_core.$strip>;
|
|
4393
|
-
estimatedSolFee: zod.ZodObject<{
|
|
4937
|
+
estimatedSolFee: zod.ZodOptional<zod.ZodObject<{
|
|
4394
4938
|
amount: zod.ZodString;
|
|
4395
4939
|
decimals: zod.ZodNumber;
|
|
4396
4940
|
uiAmount: zod.ZodNullable<zod.ZodNumber>;
|
|
4397
4941
|
uiAmountString: zod.ZodString;
|
|
4398
4942
|
mint: zod.ZodString;
|
|
4399
|
-
}, zod_v4_core.$strip
|
|
4943
|
+
}, zod_v4_core.$strip>>;
|
|
4400
4944
|
}, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
|
|
4401
4945
|
BAD_REQUEST: {
|
|
4402
4946
|
readonly status: 400;
|
|
@@ -4497,13 +5041,13 @@ declare const apiContract: {
|
|
|
4497
5041
|
parallel: zod.ZodBoolean;
|
|
4498
5042
|
tag: zod.ZodOptional<zod.ZodString>;
|
|
4499
5043
|
}, zod_v4_core.$strip>;
|
|
4500
|
-
estimatedSolFee: zod.ZodObject<{
|
|
5044
|
+
estimatedSolFee: zod.ZodOptional<zod.ZodObject<{
|
|
4501
5045
|
amount: zod.ZodString;
|
|
4502
5046
|
decimals: zod.ZodNumber;
|
|
4503
5047
|
uiAmount: zod.ZodNullable<zod.ZodNumber>;
|
|
4504
5048
|
uiAmountString: zod.ZodString;
|
|
4505
5049
|
mint: zod.ZodString;
|
|
4506
|
-
}, zod_v4_core.$strip
|
|
5050
|
+
}, zod_v4_core.$strip>>;
|
|
4507
5051
|
}, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
|
|
4508
5052
|
BAD_REQUEST: {
|
|
4509
5053
|
readonly status: 400;
|
|
@@ -4861,6 +5405,117 @@ declare const fullApiContract: {
|
|
|
4861
5405
|
};
|
|
4862
5406
|
}>>>, Record<never, never>>;
|
|
4863
5407
|
};
|
|
5408
|
+
migration: {
|
|
5409
|
+
getHotspots: _orpc_contract.ContractProcedure<zod.ZodObject<{
|
|
5410
|
+
walletAddress: zod.ZodString;
|
|
5411
|
+
}, zod_v4_core.$strip>, zod.ZodObject<{
|
|
5412
|
+
hotspots: zod.ZodArray<zod.ZodObject<{
|
|
5413
|
+
address: zod.ZodString;
|
|
5414
|
+
entityKey: zod.ZodString;
|
|
5415
|
+
name: zod.ZodString;
|
|
5416
|
+
type: zod.ZodEnum<{
|
|
5417
|
+
iot: "iot";
|
|
5418
|
+
mobile: "mobile";
|
|
5419
|
+
all: "all";
|
|
5420
|
+
}>;
|
|
5421
|
+
deviceType: zod.ZodEnum<{
|
|
5422
|
+
"iot-gateway": "iot-gateway";
|
|
5423
|
+
wifiIndoor: "wifiIndoor";
|
|
5424
|
+
wifiOutdoor: "wifiOutdoor";
|
|
5425
|
+
wifiDataOnly: "wifiDataOnly";
|
|
5426
|
+
cbrs: "cbrs";
|
|
5427
|
+
}>;
|
|
5428
|
+
city: zod.ZodOptional<zod.ZodString>;
|
|
5429
|
+
state: zod.ZodOptional<zod.ZodString>;
|
|
5430
|
+
country: zod.ZodOptional<zod.ZodString>;
|
|
5431
|
+
asset: zod.ZodString;
|
|
5432
|
+
isOnline: zod.ZodOptional<zod.ZodBoolean>;
|
|
5433
|
+
owner: zod.ZodOptional<zod.ZodString>;
|
|
5434
|
+
shares: zod.ZodOptional<zod.ZodObject<{
|
|
5435
|
+
fixed: zod.ZodOptional<zod.ZodString>;
|
|
5436
|
+
percentage: zod.ZodOptional<zod.ZodNumber>;
|
|
5437
|
+
}, zod_v4_core.$strip>>;
|
|
5438
|
+
ownershipType: zod.ZodString;
|
|
5439
|
+
inWelcomePack: zod.ZodBoolean;
|
|
5440
|
+
splitWallets: zod.ZodOptional<zod.ZodArray<zod.ZodString>>;
|
|
5441
|
+
}, zod_v4_core.$strip>>;
|
|
5442
|
+
}, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
|
|
5443
|
+
BAD_REQUEST: {
|
|
5444
|
+
readonly status: 400;
|
|
5445
|
+
readonly message: "Invalid input data provided.";
|
|
5446
|
+
readonly data: zod.ZodOptional<zod.ZodObject<{
|
|
5447
|
+
fields: zod.ZodOptional<zod.ZodArray<zod.ZodString>>;
|
|
5448
|
+
}, zod_v4_core.$strip>>;
|
|
5449
|
+
};
|
|
5450
|
+
}>>>, Record<never, never>>;
|
|
5451
|
+
migrate: _orpc_contract.ContractProcedure<zod.ZodObject<{
|
|
5452
|
+
sourceWallet: zod.ZodString;
|
|
5453
|
+
destinationWallet: zod.ZodString;
|
|
5454
|
+
hotspots: zod.ZodDefault<zod.ZodArray<zod.ZodString>>;
|
|
5455
|
+
tokens: zod.ZodDefault<zod.ZodArray<zod.ZodObject<{
|
|
5456
|
+
mint: zod.ZodString;
|
|
5457
|
+
amount: zod.ZodString;
|
|
5458
|
+
}, zod_v4_core.$strip>>>;
|
|
5459
|
+
}, zod_v4_core.$strip>, zod.ZodObject<{
|
|
5460
|
+
transactionData: zod.ZodObject<{
|
|
5461
|
+
transactions: zod.ZodArray<zod.ZodObject<{
|
|
5462
|
+
serializedTransaction: zod.ZodString;
|
|
5463
|
+
metadata: zod.ZodOptional<zod.ZodObject<{
|
|
5464
|
+
type: zod.ZodString;
|
|
5465
|
+
description: zod.ZodString;
|
|
5466
|
+
signers: zod.ZodArray<zod.ZodEnum<{
|
|
5467
|
+
destination: "destination";
|
|
5468
|
+
source: "source";
|
|
5469
|
+
}>>;
|
|
5470
|
+
}, zod_v4_core.$catchall<zod.ZodUnknown>>>;
|
|
5471
|
+
}, zod_v4_core.$strip>>;
|
|
5472
|
+
parallel: zod.ZodBoolean;
|
|
5473
|
+
tag: zod.ZodOptional<zod.ZodString>;
|
|
5474
|
+
}, zod_v4_core.$strip>;
|
|
5475
|
+
estimatedSolFee: zod.ZodObject<{
|
|
5476
|
+
amount: zod.ZodString;
|
|
5477
|
+
decimals: zod.ZodNumber;
|
|
5478
|
+
uiAmount: zod.ZodNullable<zod.ZodNumber>;
|
|
5479
|
+
uiAmountString: zod.ZodString;
|
|
5480
|
+
mint: zod.ZodString;
|
|
5481
|
+
}, zod_v4_core.$strip>;
|
|
5482
|
+
warnings: zod.ZodOptional<zod.ZodArray<zod.ZodString>>;
|
|
5483
|
+
hasMore: zod.ZodOptional<zod.ZodBoolean>;
|
|
5484
|
+
nextParams: zod.ZodOptional<zod.ZodObject<{
|
|
5485
|
+
sourceWallet: zod.ZodString;
|
|
5486
|
+
destinationWallet: zod.ZodString;
|
|
5487
|
+
hotspots: zod.ZodDefault<zod.ZodArray<zod.ZodString>>;
|
|
5488
|
+
tokens: zod.ZodDefault<zod.ZodArray<zod.ZodObject<{
|
|
5489
|
+
mint: zod.ZodString;
|
|
5490
|
+
amount: zod.ZodString;
|
|
5491
|
+
}, zod_v4_core.$strip>>>;
|
|
5492
|
+
}, zod_v4_core.$strip>>;
|
|
5493
|
+
}, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
|
|
5494
|
+
UNAUTHORIZED: {
|
|
5495
|
+
readonly status: 403;
|
|
5496
|
+
readonly message: "You do not have permission to access this resource.";
|
|
5497
|
+
};
|
|
5498
|
+
BAD_REQUEST: {
|
|
5499
|
+
readonly status: 400;
|
|
5500
|
+
readonly message: "Invalid input data provided.";
|
|
5501
|
+
readonly data: zod.ZodOptional<zod.ZodObject<{
|
|
5502
|
+
fields: zod.ZodOptional<zod.ZodArray<zod.ZodString>>;
|
|
5503
|
+
}, zod_v4_core.$strip>>;
|
|
5504
|
+
};
|
|
5505
|
+
NOT_FOUND: {
|
|
5506
|
+
readonly status: 404;
|
|
5507
|
+
readonly message: "The requested resource was not found.";
|
|
5508
|
+
};
|
|
5509
|
+
INSUFFICIENT_FUNDS: {
|
|
5510
|
+
readonly status: 400;
|
|
5511
|
+
readonly message: "Insufficient SOL balance to complete this transaction.";
|
|
5512
|
+
readonly data: zod.ZodObject<{
|
|
5513
|
+
required: zod.ZodNumber;
|
|
5514
|
+
available: zod.ZodNumber;
|
|
5515
|
+
}, zod_v4_core.$strip>;
|
|
5516
|
+
};
|
|
5517
|
+
}>>>, Record<never, never>>;
|
|
5518
|
+
};
|
|
4864
5519
|
governance: {
|
|
4865
5520
|
createPosition: _orpc_contract.ContractProcedure<zod.ZodObject<{
|
|
4866
5521
|
walletAddress: zod.ZodString;
|
|
@@ -4882,7 +5537,8 @@ declare const fullApiContract: {
|
|
|
4882
5537
|
metadata: zod.ZodOptional<zod.ZodObject<{
|
|
4883
5538
|
type: zod.ZodString;
|
|
4884
5539
|
description: zod.ZodString;
|
|
4885
|
-
|
|
5540
|
+
positionMint: zod.ZodOptional<zod.ZodString>;
|
|
5541
|
+
}, zod_v4_core.$strip>>;
|
|
4886
5542
|
}, zod_v4_core.$strip>>;
|
|
4887
5543
|
parallel: zod.ZodBoolean;
|
|
4888
5544
|
tag: zod.ZodOptional<zod.ZodString>;
|
|
@@ -4894,7 +5550,6 @@ declare const fullApiContract: {
|
|
|
4894
5550
|
uiAmountString: zod.ZodString;
|
|
4895
5551
|
mint: zod.ZodString;
|
|
4896
5552
|
}, zod_v4_core.$strip>>;
|
|
4897
|
-
hasMore: zod.ZodOptional<zod.ZodBoolean>;
|
|
4898
5553
|
}, 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>, {
|
|
4899
5554
|
BAD_REQUEST: {
|
|
4900
5555
|
readonly status: 400;
|
|
@@ -4934,7 +5589,6 @@ declare const fullApiContract: {
|
|
|
4934
5589
|
uiAmountString: zod.ZodString;
|
|
4935
5590
|
mint: zod.ZodString;
|
|
4936
5591
|
}, zod_v4_core.$strip>>;
|
|
4937
|
-
hasMore: zod.ZodOptional<zod.ZodBoolean>;
|
|
4938
5592
|
}, 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>, {
|
|
4939
5593
|
BAD_REQUEST: {
|
|
4940
5594
|
readonly status: 400;
|
|
@@ -4983,7 +5637,6 @@ declare const fullApiContract: {
|
|
|
4983
5637
|
uiAmountString: zod.ZodString;
|
|
4984
5638
|
mint: zod.ZodString;
|
|
4985
5639
|
}, zod_v4_core.$strip>>;
|
|
4986
|
-
hasMore: zod.ZodOptional<zod.ZodBoolean>;
|
|
4987
5640
|
}, 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>, {
|
|
4988
5641
|
BAD_REQUEST: {
|
|
4989
5642
|
readonly status: 400;
|
|
@@ -5027,7 +5680,6 @@ declare const fullApiContract: {
|
|
|
5027
5680
|
uiAmountString: zod.ZodString;
|
|
5028
5681
|
mint: zod.ZodString;
|
|
5029
5682
|
}, zod_v4_core.$strip>>;
|
|
5030
|
-
hasMore: zod.ZodOptional<zod.ZodBoolean>;
|
|
5031
5683
|
}, 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>, {
|
|
5032
5684
|
BAD_REQUEST: {
|
|
5033
5685
|
readonly status: 400;
|
|
@@ -5076,7 +5728,6 @@ declare const fullApiContract: {
|
|
|
5076
5728
|
uiAmountString: zod.ZodString;
|
|
5077
5729
|
mint: zod.ZodString;
|
|
5078
5730
|
}, zod_v4_core.$strip>>;
|
|
5079
|
-
hasMore: zod.ZodOptional<zod.ZodBoolean>;
|
|
5080
5731
|
}, 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>, {
|
|
5081
5732
|
BAD_REQUEST: {
|
|
5082
5733
|
readonly status: 400;
|
|
@@ -5114,7 +5765,8 @@ declare const fullApiContract: {
|
|
|
5114
5765
|
metadata: zod.ZodOptional<zod.ZodObject<{
|
|
5115
5766
|
type: zod.ZodString;
|
|
5116
5767
|
description: zod.ZodString;
|
|
5117
|
-
|
|
5768
|
+
newPositionMint: zod.ZodOptional<zod.ZodString>;
|
|
5769
|
+
}, zod_v4_core.$strip>>;
|
|
5118
5770
|
}, zod_v4_core.$strip>>;
|
|
5119
5771
|
parallel: zod.ZodBoolean;
|
|
5120
5772
|
tag: zod.ZodOptional<zod.ZodString>;
|
|
@@ -5126,7 +5778,6 @@ declare const fullApiContract: {
|
|
|
5126
5778
|
uiAmountString: zod.ZodString;
|
|
5127
5779
|
mint: zod.ZodString;
|
|
5128
5780
|
}, zod_v4_core.$strip>>;
|
|
5129
|
-
hasMore: zod.ZodOptional<zod.ZodBoolean>;
|
|
5130
5781
|
}, 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>, {
|
|
5131
5782
|
BAD_REQUEST: {
|
|
5132
5783
|
readonly status: 400;
|
|
@@ -5172,7 +5823,6 @@ declare const fullApiContract: {
|
|
|
5172
5823
|
uiAmountString: zod.ZodString;
|
|
5173
5824
|
mint: zod.ZodString;
|
|
5174
5825
|
}, zod_v4_core.$strip>>;
|
|
5175
|
-
hasMore: zod.ZodOptional<zod.ZodBoolean>;
|
|
5176
5826
|
}, 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>, {
|
|
5177
5827
|
BAD_REQUEST: {
|
|
5178
5828
|
readonly status: 400;
|
|
@@ -5218,7 +5868,7 @@ declare const fullApiContract: {
|
|
|
5218
5868
|
uiAmountString: zod.ZodString;
|
|
5219
5869
|
mint: zod.ZodString;
|
|
5220
5870
|
}, zod_v4_core.$strip>>;
|
|
5221
|
-
hasMore: zod.
|
|
5871
|
+
hasMore: zod.ZodBoolean;
|
|
5222
5872
|
}, 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>, {
|
|
5223
5873
|
BAD_REQUEST: {
|
|
5224
5874
|
readonly status: 400;
|
|
@@ -5262,7 +5912,7 @@ declare const fullApiContract: {
|
|
|
5262
5912
|
uiAmountString: zod.ZodString;
|
|
5263
5913
|
mint: zod.ZodString;
|
|
5264
5914
|
}, zod_v4_core.$strip>>;
|
|
5265
|
-
hasMore: zod.
|
|
5915
|
+
hasMore: zod.ZodBoolean;
|
|
5266
5916
|
}, 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>, {
|
|
5267
5917
|
BAD_REQUEST: {
|
|
5268
5918
|
readonly status: 400;
|
|
@@ -5306,7 +5956,7 @@ declare const fullApiContract: {
|
|
|
5306
5956
|
uiAmountString: zod.ZodString;
|
|
5307
5957
|
mint: zod.ZodString;
|
|
5308
5958
|
}, zod_v4_core.$strip>>;
|
|
5309
|
-
hasMore: zod.
|
|
5959
|
+
hasMore: zod.ZodBoolean;
|
|
5310
5960
|
}, 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>, {
|
|
5311
5961
|
BAD_REQUEST: {
|
|
5312
5962
|
readonly status: 400;
|
|
@@ -5350,7 +6000,6 @@ declare const fullApiContract: {
|
|
|
5350
6000
|
uiAmountString: zod.ZodString;
|
|
5351
6001
|
mint: zod.ZodString;
|
|
5352
6002
|
}, zod_v4_core.$strip>>;
|
|
5353
|
-
hasMore: zod.ZodOptional<zod.ZodBoolean>;
|
|
5354
6003
|
}, 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>, {
|
|
5355
6004
|
BAD_REQUEST: {
|
|
5356
6005
|
readonly status: 400;
|
|
@@ -5396,7 +6045,7 @@ declare const fullApiContract: {
|
|
|
5396
6045
|
uiAmountString: zod.ZodString;
|
|
5397
6046
|
mint: zod.ZodString;
|
|
5398
6047
|
}, zod_v4_core.$strip>>;
|
|
5399
|
-
hasMore: zod.
|
|
6048
|
+
hasMore: zod.ZodBoolean;
|
|
5400
6049
|
}, 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>, {
|
|
5401
6050
|
BAD_REQUEST: {
|
|
5402
6051
|
readonly status: 400;
|
|
@@ -5442,7 +6091,7 @@ declare const fullApiContract: {
|
|
|
5442
6091
|
uiAmountString: zod.ZodString;
|
|
5443
6092
|
mint: zod.ZodString;
|
|
5444
6093
|
}, zod_v4_core.$strip>>;
|
|
5445
|
-
hasMore: zod.
|
|
6094
|
+
hasMore: zod.ZodBoolean;
|
|
5446
6095
|
}, 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>, {
|
|
5447
6096
|
BAD_REQUEST: {
|
|
5448
6097
|
readonly status: 400;
|
|
@@ -5475,7 +6124,8 @@ declare const fullApiContract: {
|
|
|
5475
6124
|
metadata: zod.ZodOptional<zod.ZodObject<{
|
|
5476
6125
|
type: zod.ZodString;
|
|
5477
6126
|
description: zod.ZodString;
|
|
5478
|
-
|
|
6127
|
+
votesRelinquished: zod.ZodOptional<zod.ZodNumber>;
|
|
6128
|
+
}, zod_v4_core.$strip>>;
|
|
5479
6129
|
}, zod_v4_core.$strip>>;
|
|
5480
6130
|
parallel: zod.ZodBoolean;
|
|
5481
6131
|
tag: zod.ZodOptional<zod.ZodString>;
|
|
@@ -5487,7 +6137,7 @@ declare const fullApiContract: {
|
|
|
5487
6137
|
uiAmountString: zod.ZodString;
|
|
5488
6138
|
mint: zod.ZodString;
|
|
5489
6139
|
}, zod_v4_core.$strip>>;
|
|
5490
|
-
hasMore: zod.
|
|
6140
|
+
hasMore: zod.ZodBoolean;
|
|
5491
6141
|
}, 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>, {
|
|
5492
6142
|
BAD_REQUEST: {
|
|
5493
6143
|
readonly status: 400;
|
|
@@ -5533,7 +6183,7 @@ declare const fullApiContract: {
|
|
|
5533
6183
|
uiAmountString: zod.ZodString;
|
|
5534
6184
|
mint: zod.ZodString;
|
|
5535
6185
|
}, zod_v4_core.$strip>>;
|
|
5536
|
-
hasMore: zod.
|
|
6186
|
+
hasMore: zod.ZodBoolean;
|
|
5537
6187
|
}, 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>, {
|
|
5538
6188
|
BAD_REQUEST: {
|
|
5539
6189
|
readonly status: 400;
|
|
@@ -5578,7 +6228,7 @@ declare const fullApiContract: {
|
|
|
5578
6228
|
uiAmountString: zod.ZodString;
|
|
5579
6229
|
mint: zod.ZodString;
|
|
5580
6230
|
}, zod_v4_core.$strip>>;
|
|
5581
|
-
hasMore: zod.
|
|
6231
|
+
hasMore: zod.ZodBoolean;
|
|
5582
6232
|
}, 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>, {
|
|
5583
6233
|
BAD_REQUEST: {
|
|
5584
6234
|
readonly status: 400;
|
|
@@ -5655,13 +6305,13 @@ declare const fullApiContract: {
|
|
|
5655
6305
|
parallel: zod.ZodBoolean;
|
|
5656
6306
|
tag: zod.ZodOptional<zod.ZodString>;
|
|
5657
6307
|
}, zod_v4_core.$strip>;
|
|
5658
|
-
estimatedSolFee: zod.ZodObject<{
|
|
6308
|
+
estimatedSolFee: zod.ZodOptional<zod.ZodObject<{
|
|
5659
6309
|
amount: zod.ZodString;
|
|
5660
6310
|
decimals: zod.ZodNumber;
|
|
5661
6311
|
uiAmount: zod.ZodNullable<zod.ZodNumber>;
|
|
5662
6312
|
uiAmountString: zod.ZodString;
|
|
5663
6313
|
mint: zod.ZodString;
|
|
5664
|
-
}, zod_v4_core.$strip
|
|
6314
|
+
}, zod_v4_core.$strip>>;
|
|
5665
6315
|
}, 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>, {
|
|
5666
6316
|
BAD_REQUEST: {
|
|
5667
6317
|
readonly status: 400;
|
|
@@ -5693,13 +6343,13 @@ declare const fullApiContract: {
|
|
|
5693
6343
|
parallel: zod.ZodBoolean;
|
|
5694
6344
|
tag: zod.ZodOptional<zod.ZodString>;
|
|
5695
6345
|
}, zod_v4_core.$strip>;
|
|
5696
|
-
estimatedSolFee: zod.ZodObject<{
|
|
6346
|
+
estimatedSolFee: zod.ZodOptional<zod.ZodObject<{
|
|
5697
6347
|
amount: zod.ZodString;
|
|
5698
6348
|
decimals: zod.ZodNumber;
|
|
5699
6349
|
uiAmount: zod.ZodNullable<zod.ZodNumber>;
|
|
5700
6350
|
uiAmountString: zod.ZodString;
|
|
5701
6351
|
mint: zod.ZodString;
|
|
5702
|
-
}, zod_v4_core.$strip
|
|
6352
|
+
}, zod_v4_core.$strip>>;
|
|
5703
6353
|
}, 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>, {
|
|
5704
6354
|
INVALID_WALLET_ADDRESS: {
|
|
5705
6355
|
status: number;
|
|
@@ -5777,13 +6427,13 @@ declare const fullApiContract: {
|
|
|
5777
6427
|
parallel: zod.ZodBoolean;
|
|
5778
6428
|
tag: zod.ZodOptional<zod.ZodString>;
|
|
5779
6429
|
}, zod_v4_core.$strip>;
|
|
5780
|
-
estimatedSolFee: zod.ZodObject<{
|
|
6430
|
+
estimatedSolFee: zod.ZodOptional<zod.ZodObject<{
|
|
5781
6431
|
amount: zod.ZodString;
|
|
5782
6432
|
decimals: zod.ZodNumber;
|
|
5783
6433
|
uiAmount: zod.ZodNullable<zod.ZodNumber>;
|
|
5784
6434
|
uiAmountString: zod.ZodString;
|
|
5785
6435
|
mint: zod.ZodString;
|
|
5786
|
-
}, zod_v4_core.$strip
|
|
6436
|
+
}, zod_v4_core.$strip>>;
|
|
5787
6437
|
}, 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>, {
|
|
5788
6438
|
INSUFFICIENT_FUNDS: {
|
|
5789
6439
|
readonly status: 400;
|
|
@@ -5872,13 +6522,13 @@ declare const fullApiContract: {
|
|
|
5872
6522
|
parallel: zod.ZodBoolean;
|
|
5873
6523
|
tag: zod.ZodOptional<zod.ZodString>;
|
|
5874
6524
|
}, zod_v4_core.$strip>;
|
|
5875
|
-
estimatedSolFee: zod.ZodObject<{
|
|
6525
|
+
estimatedSolFee: zod.ZodOptional<zod.ZodObject<{
|
|
5876
6526
|
amount: zod.ZodString;
|
|
5877
6527
|
decimals: zod.ZodNumber;
|
|
5878
6528
|
uiAmount: zod.ZodNullable<zod.ZodNumber>;
|
|
5879
6529
|
uiAmountString: zod.ZodString;
|
|
5880
6530
|
mint: zod.ZodString;
|
|
5881
|
-
}, zod_v4_core.$strip
|
|
6531
|
+
}, zod_v4_core.$strip>>;
|
|
5882
6532
|
}, 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>, {
|
|
5883
6533
|
UNAUTHORIZED: {
|
|
5884
6534
|
readonly status: 403;
|
|
@@ -5922,13 +6572,13 @@ declare const fullApiContract: {
|
|
|
5922
6572
|
parallel: zod.ZodBoolean;
|
|
5923
6573
|
tag: zod.ZodOptional<zod.ZodString>;
|
|
5924
6574
|
}, zod_v4_core.$strip>;
|
|
5925
|
-
estimatedSolFee: zod.ZodObject<{
|
|
6575
|
+
estimatedSolFee: zod.ZodOptional<zod.ZodObject<{
|
|
5926
6576
|
amount: zod.ZodString;
|
|
5927
6577
|
decimals: zod.ZodNumber;
|
|
5928
6578
|
uiAmount: zod.ZodNullable<zod.ZodNumber>;
|
|
5929
6579
|
uiAmountString: zod.ZodString;
|
|
5930
6580
|
mint: zod.ZodString;
|
|
5931
|
-
}, zod_v4_core.$strip
|
|
6581
|
+
}, zod_v4_core.$strip>>;
|
|
5932
6582
|
}, 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>, {
|
|
5933
6583
|
BAD_REQUEST: {
|
|
5934
6584
|
message: string;
|
|
@@ -6015,13 +6665,13 @@ declare const fullApiContract: {
|
|
|
6015
6665
|
parallel: zod.ZodBoolean;
|
|
6016
6666
|
tag: zod.ZodOptional<zod.ZodString>;
|
|
6017
6667
|
}, zod_v4_core.$strip>;
|
|
6018
|
-
estimatedSolFee: zod.ZodObject<{
|
|
6668
|
+
estimatedSolFee: zod.ZodOptional<zod.ZodObject<{
|
|
6019
6669
|
amount: zod.ZodString;
|
|
6020
6670
|
decimals: zod.ZodNumber;
|
|
6021
6671
|
uiAmount: zod.ZodNullable<zod.ZodNumber>;
|
|
6022
6672
|
uiAmountString: zod.ZodString;
|
|
6023
6673
|
mint: zod.ZodString;
|
|
6024
|
-
}, zod_v4_core.$strip
|
|
6674
|
+
}, zod_v4_core.$strip>>;
|
|
6025
6675
|
}, 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>, {
|
|
6026
6676
|
NOT_FOUND: {
|
|
6027
6677
|
readonly status: 404;
|
|
@@ -6055,13 +6705,13 @@ declare const fullApiContract: {
|
|
|
6055
6705
|
parallel: zod.ZodBoolean;
|
|
6056
6706
|
tag: zod.ZodOptional<zod.ZodString>;
|
|
6057
6707
|
}, zod_v4_core.$strip>;
|
|
6058
|
-
estimatedSolFee: zod.ZodObject<{
|
|
6708
|
+
estimatedSolFee: zod.ZodOptional<zod.ZodObject<{
|
|
6059
6709
|
amount: zod.ZodString;
|
|
6060
6710
|
decimals: zod.ZodNumber;
|
|
6061
6711
|
uiAmount: zod.ZodNullable<zod.ZodNumber>;
|
|
6062
6712
|
uiAmountString: zod.ZodString;
|
|
6063
6713
|
mint: zod.ZodString;
|
|
6064
|
-
}, zod_v4_core.$strip
|
|
6714
|
+
}, zod_v4_core.$strip>>;
|
|
6065
6715
|
}, 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>, {
|
|
6066
6716
|
NOT_FOUND: {
|
|
6067
6717
|
readonly status: 404;
|
|
@@ -6090,13 +6740,13 @@ declare const fullApiContract: {
|
|
|
6090
6740
|
parallel: zod.ZodBoolean;
|
|
6091
6741
|
tag: zod.ZodOptional<zod.ZodString>;
|
|
6092
6742
|
}, zod_v4_core.$strip>;
|
|
6093
|
-
estimatedSolFee: zod.ZodObject<{
|
|
6743
|
+
estimatedSolFee: zod.ZodOptional<zod.ZodObject<{
|
|
6094
6744
|
amount: zod.ZodString;
|
|
6095
6745
|
decimals: zod.ZodNumber;
|
|
6096
6746
|
uiAmount: zod.ZodNullable<zod.ZodNumber>;
|
|
6097
6747
|
uiAmountString: zod.ZodString;
|
|
6098
6748
|
mint: zod.ZodString;
|
|
6099
|
-
}, zod_v4_core.$strip
|
|
6749
|
+
}, zod_v4_core.$strip>>;
|
|
6100
6750
|
}, 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>, {
|
|
6101
6751
|
NOT_FOUND: {
|
|
6102
6752
|
readonly status: 404;
|
|
@@ -6168,13 +6818,13 @@ declare const fullApiContract: {
|
|
|
6168
6818
|
parallel: zod.ZodBoolean;
|
|
6169
6819
|
tag: zod.ZodOptional<zod.ZodString>;
|
|
6170
6820
|
}, zod_v4_core.$strip>;
|
|
6171
|
-
estimatedSolFee: zod.ZodObject<{
|
|
6821
|
+
estimatedSolFee: zod.ZodOptional<zod.ZodObject<{
|
|
6172
6822
|
amount: zod.ZodString;
|
|
6173
6823
|
decimals: zod.ZodNumber;
|
|
6174
6824
|
uiAmount: zod.ZodNullable<zod.ZodNumber>;
|
|
6175
6825
|
uiAmountString: zod.ZodString;
|
|
6176
6826
|
mint: zod.ZodString;
|
|
6177
|
-
}, zod_v4_core.$strip
|
|
6827
|
+
}, zod_v4_core.$strip>>;
|
|
6178
6828
|
}, 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>, {
|
|
6179
6829
|
NOT_FOUND: {
|
|
6180
6830
|
readonly status: 404;
|
|
@@ -6204,13 +6854,13 @@ declare const fullApiContract: {
|
|
|
6204
6854
|
parallel: zod.ZodBoolean;
|
|
6205
6855
|
tag: zod.ZodOptional<zod.ZodString>;
|
|
6206
6856
|
}, zod_v4_core.$strip>;
|
|
6207
|
-
estimatedSolFee: zod.ZodObject<{
|
|
6857
|
+
estimatedSolFee: zod.ZodOptional<zod.ZodObject<{
|
|
6208
6858
|
amount: zod.ZodString;
|
|
6209
6859
|
decimals: zod.ZodNumber;
|
|
6210
6860
|
uiAmount: zod.ZodNullable<zod.ZodNumber>;
|
|
6211
6861
|
uiAmountString: zod.ZodString;
|
|
6212
6862
|
mint: zod.ZodString;
|
|
6213
|
-
}, zod_v4_core.$strip
|
|
6863
|
+
}, zod_v4_core.$strip>>;
|
|
6214
6864
|
}, 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>, {
|
|
6215
6865
|
NOT_FOUND: {
|
|
6216
6866
|
readonly status: 404;
|
|
@@ -6284,13 +6934,13 @@ declare const fullApiContract: {
|
|
|
6284
6934
|
parallel: zod.ZodBoolean;
|
|
6285
6935
|
tag: zod.ZodOptional<zod.ZodString>;
|
|
6286
6936
|
}, zod_v4_core.$strip>;
|
|
6287
|
-
estimatedSolFee: zod.ZodObject<{
|
|
6937
|
+
estimatedSolFee: zod.ZodOptional<zod.ZodObject<{
|
|
6288
6938
|
amount: zod.ZodString;
|
|
6289
6939
|
decimals: zod.ZodNumber;
|
|
6290
6940
|
uiAmount: zod.ZodNullable<zod.ZodNumber>;
|
|
6291
6941
|
uiAmountString: zod.ZodString;
|
|
6292
6942
|
mint: zod.ZodString;
|
|
6293
|
-
}, zod_v4_core.$strip
|
|
6943
|
+
}, zod_v4_core.$strip>>;
|
|
6294
6944
|
appliedTo: zod.ZodObject<{
|
|
6295
6945
|
iot: zod.ZodBoolean;
|
|
6296
6946
|
mobile: zod.ZodBoolean;
|
|
@@ -7131,6 +7781,24 @@ declare const fullApiContract: {
|
|
|
7131
7781
|
}, zod_v4_core.$strip>;
|
|
7132
7782
|
lazyDistributor: zod.ZodString;
|
|
7133
7783
|
}, zod_v4_core.$strip>, zod.ZodObject<{
|
|
7784
|
+
transactionData: zod.ZodObject<{
|
|
7785
|
+
transactions: zod.ZodArray<zod.ZodObject<{
|
|
7786
|
+
serializedTransaction: zod.ZodString;
|
|
7787
|
+
metadata: zod.ZodOptional<zod.ZodObject<{
|
|
7788
|
+
type: zod.ZodString;
|
|
7789
|
+
description: zod.ZodString;
|
|
7790
|
+
}, zod_v4_core.$catchall<zod.ZodUnknown>>>;
|
|
7791
|
+
}, zod_v4_core.$strip>>;
|
|
7792
|
+
parallel: zod.ZodBoolean;
|
|
7793
|
+
tag: zod.ZodOptional<zod.ZodString>;
|
|
7794
|
+
}, zod_v4_core.$strip>;
|
|
7795
|
+
estimatedSolFee: zod.ZodOptional<zod.ZodObject<{
|
|
7796
|
+
amount: zod.ZodString;
|
|
7797
|
+
decimals: zod.ZodNumber;
|
|
7798
|
+
uiAmount: zod.ZodNullable<zod.ZodNumber>;
|
|
7799
|
+
uiAmountString: zod.ZodString;
|
|
7800
|
+
mint: zod.ZodString;
|
|
7801
|
+
}, zod_v4_core.$strip>>;
|
|
7134
7802
|
welcomePack: zod.ZodObject<{
|
|
7135
7803
|
address: zod.ZodString;
|
|
7136
7804
|
id: zod.ZodNumber;
|
|
@@ -7186,24 +7854,6 @@ declare const fullApiContract: {
|
|
|
7186
7854
|
ownershipType: zod.ZodString;
|
|
7187
7855
|
}, zod_v4_core.$strip>>;
|
|
7188
7856
|
}, zod_v4_core.$strip>;
|
|
7189
|
-
transactionData: zod.ZodObject<{
|
|
7190
|
-
transactions: zod.ZodArray<zod.ZodObject<{
|
|
7191
|
-
serializedTransaction: zod.ZodString;
|
|
7192
|
-
metadata: zod.ZodOptional<zod.ZodObject<{
|
|
7193
|
-
type: zod.ZodString;
|
|
7194
|
-
description: zod.ZodString;
|
|
7195
|
-
}, zod_v4_core.$catchall<zod.ZodUnknown>>>;
|
|
7196
|
-
}, zod_v4_core.$strip>>;
|
|
7197
|
-
parallel: zod.ZodBoolean;
|
|
7198
|
-
tag: zod.ZodOptional<zod.ZodString>;
|
|
7199
|
-
}, zod_v4_core.$strip>;
|
|
7200
|
-
estimatedSolFee: zod.ZodObject<{
|
|
7201
|
-
amount: zod.ZodString;
|
|
7202
|
-
decimals: zod.ZodNumber;
|
|
7203
|
-
uiAmount: zod.ZodNullable<zod.ZodNumber>;
|
|
7204
|
-
uiAmountString: zod.ZodString;
|
|
7205
|
-
mint: zod.ZodString;
|
|
7206
|
-
}, zod_v4_core.$strip>;
|
|
7207
7857
|
}, 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>, {
|
|
7208
7858
|
BAD_REQUEST: {
|
|
7209
7859
|
readonly status: 400;
|
|
@@ -7307,13 +7957,13 @@ declare const fullApiContract: {
|
|
|
7307
7957
|
parallel: zod.ZodBoolean;
|
|
7308
7958
|
tag: zod.ZodOptional<zod.ZodString>;
|
|
7309
7959
|
}, zod_v4_core.$strip>;
|
|
7310
|
-
estimatedSolFee: zod.ZodObject<{
|
|
7960
|
+
estimatedSolFee: zod.ZodOptional<zod.ZodObject<{
|
|
7311
7961
|
amount: zod.ZodString;
|
|
7312
7962
|
decimals: zod.ZodNumber;
|
|
7313
7963
|
uiAmount: zod.ZodNullable<zod.ZodNumber>;
|
|
7314
7964
|
uiAmountString: zod.ZodString;
|
|
7315
7965
|
mint: zod.ZodString;
|
|
7316
|
-
}, zod_v4_core.$strip
|
|
7966
|
+
}, zod_v4_core.$strip>>;
|
|
7317
7967
|
}, 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>, {
|
|
7318
7968
|
BAD_REQUEST: {
|
|
7319
7969
|
readonly status: 400;
|
|
@@ -7414,13 +8064,13 @@ declare const fullApiContract: {
|
|
|
7414
8064
|
parallel: zod.ZodBoolean;
|
|
7415
8065
|
tag: zod.ZodOptional<zod.ZodString>;
|
|
7416
8066
|
}, zod_v4_core.$strip>;
|
|
7417
|
-
estimatedSolFee: zod.ZodObject<{
|
|
8067
|
+
estimatedSolFee: zod.ZodOptional<zod.ZodObject<{
|
|
7418
8068
|
amount: zod.ZodString;
|
|
7419
8069
|
decimals: zod.ZodNumber;
|
|
7420
8070
|
uiAmount: zod.ZodNullable<zod.ZodNumber>;
|
|
7421
8071
|
uiAmountString: zod.ZodString;
|
|
7422
8072
|
mint: zod.ZodString;
|
|
7423
|
-
}, zod_v4_core.$strip
|
|
8073
|
+
}, zod_v4_core.$strip>>;
|
|
7424
8074
|
}, 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>, {
|
|
7425
8075
|
BAD_REQUEST: {
|
|
7426
8076
|
readonly status: 400;
|
|
@@ -7457,4 +8107,4 @@ declare const fullApiContract: {
|
|
|
7457
8107
|
};
|
|
7458
8108
|
};
|
|
7459
8109
|
|
|
7460
|
-
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
|
|
8110
|
+
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 };
|