@helium/blockchain-api 0.3.10 → 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 +643 -244
- package/dist/index.js +113 -85
- 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<{
|
|
@@ -386,23 +470,312 @@ declare const RelinquishVoteInputSchema: z.ZodObject<{
|
|
|
386
470
|
positionMints: z.ZodArray<z.ZodString>;
|
|
387
471
|
choice: z.ZodNumber;
|
|
388
472
|
}, z.core.$strip>;
|
|
389
|
-
declare const RelinquishPositionVotesInputSchema: z.ZodObject<{
|
|
390
|
-
walletAddress: z.ZodString;
|
|
391
|
-
positionMint: z.ZodString;
|
|
392
|
-
organization: z.ZodString;
|
|
473
|
+
declare const RelinquishPositionVotesInputSchema: z.ZodObject<{
|
|
474
|
+
walletAddress: z.ZodString;
|
|
475
|
+
positionMint: z.ZodString;
|
|
476
|
+
organization: z.ZodString;
|
|
477
|
+
}, z.core.$strip>;
|
|
478
|
+
declare const AssignProxiesInputSchema: z.ZodObject<{
|
|
479
|
+
walletAddress: z.ZodString;
|
|
480
|
+
positionMints: z.ZodArray<z.ZodString>;
|
|
481
|
+
proxyKey: z.ZodString;
|
|
482
|
+
expirationTime: z.ZodNumber;
|
|
483
|
+
}, z.core.$strip>;
|
|
484
|
+
declare const UnassignProxiesInputSchema: z.ZodObject<{
|
|
485
|
+
walletAddress: z.ZodString;
|
|
486
|
+
proxyKey: z.ZodString;
|
|
487
|
+
positionMints: z.ZodArray<z.ZodString>;
|
|
488
|
+
}, z.core.$strip>;
|
|
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<{
|
|
571
|
+
transactionData: z.ZodObject<{
|
|
572
|
+
transactions: z.ZodArray<z.ZodObject<{
|
|
573
|
+
serializedTransaction: z.ZodString;
|
|
574
|
+
metadata: z.ZodOptional<z.ZodObject<{
|
|
575
|
+
type: z.ZodString;
|
|
576
|
+
description: z.ZodString;
|
|
577
|
+
}, z.core.$catchall<z.ZodUnknown>>>;
|
|
578
|
+
}, z.core.$strip>>;
|
|
579
|
+
parallel: z.ZodBoolean;
|
|
580
|
+
tag: z.ZodOptional<z.ZodString>;
|
|
581
|
+
}, z.core.$strip>;
|
|
582
|
+
estimatedSolFee: z.ZodOptional<z.ZodObject<{
|
|
583
|
+
amount: z.ZodString;
|
|
584
|
+
decimals: z.ZodNumber;
|
|
585
|
+
uiAmount: z.ZodNullable<z.ZodNumber>;
|
|
586
|
+
uiAmountString: z.ZodString;
|
|
587
|
+
mint: z.ZodString;
|
|
588
|
+
}, z.core.$strip>>;
|
|
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;
|
|
393
734
|
}, z.core.$strip>;
|
|
394
|
-
declare const
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
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;
|
|
399
755
|
}, z.core.$strip>;
|
|
400
|
-
declare const
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
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;
|
|
404
777
|
}, z.core.$strip>;
|
|
405
|
-
declare const
|
|
778
|
+
declare const AssignProxiesResponseSchema: z.ZodObject<{
|
|
406
779
|
transactionData: z.ZodObject<{
|
|
407
780
|
transactions: z.ZodArray<z.ZodObject<{
|
|
408
781
|
serializedTransaction: z.ZodString;
|
|
@@ -421,7 +794,28 @@ declare const GovernanceTransactionResponseSchema: z.ZodObject<{
|
|
|
421
794
|
uiAmountString: z.ZodString;
|
|
422
795
|
mint: z.ZodString;
|
|
423
796
|
}, z.core.$strip>>;
|
|
424
|
-
hasMore: z.
|
|
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
|
-
}, 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
1275
|
}, 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;
|
|
@@ -1739,8 +2148,26 @@ declare const WelcomePackListOutputSchema: z.ZodArray<z.ZodObject<{
|
|
|
1739
2148
|
}, z.core.$strip>>;
|
|
1740
2149
|
ownershipType: z.ZodString;
|
|
1741
2150
|
}, z.core.$strip>>;
|
|
1742
|
-
}, z.core.$strip>>;
|
|
1743
|
-
declare const WelcomePackCreateOutputSchema: z.ZodObject<{
|
|
2151
|
+
}, z.core.$strip>>;
|
|
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;
|
|
@@ -2105,7 +2514,8 @@ declare const apiContract: {
|
|
|
2105
2514
|
metadata: zod.ZodOptional<zod.ZodObject<{
|
|
2106
2515
|
type: zod.ZodString;
|
|
2107
2516
|
description: zod.ZodString;
|
|
2108
|
-
|
|
2517
|
+
positionMint: zod.ZodOptional<zod.ZodString>;
|
|
2518
|
+
}, zod_v4_core.$strip>>;
|
|
2109
2519
|
}, zod_v4_core.$strip>>;
|
|
2110
2520
|
parallel: zod.ZodBoolean;
|
|
2111
2521
|
tag: zod.ZodOptional<zod.ZodString>;
|
|
@@ -2117,7 +2527,6 @@ declare const apiContract: {
|
|
|
2117
2527
|
uiAmountString: zod.ZodString;
|
|
2118
2528
|
mint: zod.ZodString;
|
|
2119
2529
|
}, zod_v4_core.$strip>>;
|
|
2120
|
-
hasMore: zod.ZodOptional<zod.ZodBoolean>;
|
|
2121
2530
|
}, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
|
|
2122
2531
|
BAD_REQUEST: {
|
|
2123
2532
|
readonly status: 400;
|
|
@@ -2157,7 +2566,6 @@ declare const apiContract: {
|
|
|
2157
2566
|
uiAmountString: zod.ZodString;
|
|
2158
2567
|
mint: zod.ZodString;
|
|
2159
2568
|
}, zod_v4_core.$strip>>;
|
|
2160
|
-
hasMore: zod.ZodOptional<zod.ZodBoolean>;
|
|
2161
2569
|
}, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
|
|
2162
2570
|
BAD_REQUEST: {
|
|
2163
2571
|
readonly status: 400;
|
|
@@ -2206,7 +2614,6 @@ declare const apiContract: {
|
|
|
2206
2614
|
uiAmountString: zod.ZodString;
|
|
2207
2615
|
mint: zod.ZodString;
|
|
2208
2616
|
}, zod_v4_core.$strip>>;
|
|
2209
|
-
hasMore: zod.ZodOptional<zod.ZodBoolean>;
|
|
2210
2617
|
}, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
|
|
2211
2618
|
BAD_REQUEST: {
|
|
2212
2619
|
readonly status: 400;
|
|
@@ -2250,7 +2657,6 @@ declare const apiContract: {
|
|
|
2250
2657
|
uiAmountString: zod.ZodString;
|
|
2251
2658
|
mint: zod.ZodString;
|
|
2252
2659
|
}, zod_v4_core.$strip>>;
|
|
2253
|
-
hasMore: zod.ZodOptional<zod.ZodBoolean>;
|
|
2254
2660
|
}, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
|
|
2255
2661
|
BAD_REQUEST: {
|
|
2256
2662
|
readonly status: 400;
|
|
@@ -2299,7 +2705,6 @@ declare const apiContract: {
|
|
|
2299
2705
|
uiAmountString: zod.ZodString;
|
|
2300
2706
|
mint: zod.ZodString;
|
|
2301
2707
|
}, zod_v4_core.$strip>>;
|
|
2302
|
-
hasMore: zod.ZodOptional<zod.ZodBoolean>;
|
|
2303
2708
|
}, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
|
|
2304
2709
|
BAD_REQUEST: {
|
|
2305
2710
|
readonly status: 400;
|
|
@@ -2337,7 +2742,8 @@ declare const apiContract: {
|
|
|
2337
2742
|
metadata: zod.ZodOptional<zod.ZodObject<{
|
|
2338
2743
|
type: zod.ZodString;
|
|
2339
2744
|
description: zod.ZodString;
|
|
2340
|
-
|
|
2745
|
+
newPositionMint: zod.ZodOptional<zod.ZodString>;
|
|
2746
|
+
}, zod_v4_core.$strip>>;
|
|
2341
2747
|
}, zod_v4_core.$strip>>;
|
|
2342
2748
|
parallel: zod.ZodBoolean;
|
|
2343
2749
|
tag: zod.ZodOptional<zod.ZodString>;
|
|
@@ -2349,7 +2755,6 @@ declare const apiContract: {
|
|
|
2349
2755
|
uiAmountString: zod.ZodString;
|
|
2350
2756
|
mint: zod.ZodString;
|
|
2351
2757
|
}, zod_v4_core.$strip>>;
|
|
2352
|
-
hasMore: zod.ZodOptional<zod.ZodBoolean>;
|
|
2353
2758
|
}, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
|
|
2354
2759
|
BAD_REQUEST: {
|
|
2355
2760
|
readonly status: 400;
|
|
@@ -2395,7 +2800,6 @@ declare const apiContract: {
|
|
|
2395
2800
|
uiAmountString: zod.ZodString;
|
|
2396
2801
|
mint: zod.ZodString;
|
|
2397
2802
|
}, zod_v4_core.$strip>>;
|
|
2398
|
-
hasMore: zod.ZodOptional<zod.ZodBoolean>;
|
|
2399
2803
|
}, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
|
|
2400
2804
|
BAD_REQUEST: {
|
|
2401
2805
|
readonly status: 400;
|
|
@@ -2441,7 +2845,7 @@ declare const apiContract: {
|
|
|
2441
2845
|
uiAmountString: zod.ZodString;
|
|
2442
2846
|
mint: zod.ZodString;
|
|
2443
2847
|
}, zod_v4_core.$strip>>;
|
|
2444
|
-
hasMore: zod.
|
|
2848
|
+
hasMore: zod.ZodBoolean;
|
|
2445
2849
|
}, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
|
|
2446
2850
|
BAD_REQUEST: {
|
|
2447
2851
|
readonly status: 400;
|
|
@@ -2485,7 +2889,7 @@ declare const apiContract: {
|
|
|
2485
2889
|
uiAmountString: zod.ZodString;
|
|
2486
2890
|
mint: zod.ZodString;
|
|
2487
2891
|
}, zod_v4_core.$strip>>;
|
|
2488
|
-
hasMore: zod.
|
|
2892
|
+
hasMore: zod.ZodBoolean;
|
|
2489
2893
|
}, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
|
|
2490
2894
|
BAD_REQUEST: {
|
|
2491
2895
|
readonly status: 400;
|
|
@@ -2529,7 +2933,7 @@ declare const apiContract: {
|
|
|
2529
2933
|
uiAmountString: zod.ZodString;
|
|
2530
2934
|
mint: zod.ZodString;
|
|
2531
2935
|
}, zod_v4_core.$strip>>;
|
|
2532
|
-
hasMore: zod.
|
|
2936
|
+
hasMore: zod.ZodBoolean;
|
|
2533
2937
|
}, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
|
|
2534
2938
|
BAD_REQUEST: {
|
|
2535
2939
|
readonly status: 400;
|
|
@@ -2573,7 +2977,6 @@ declare const apiContract: {
|
|
|
2573
2977
|
uiAmountString: zod.ZodString;
|
|
2574
2978
|
mint: zod.ZodString;
|
|
2575
2979
|
}, zod_v4_core.$strip>>;
|
|
2576
|
-
hasMore: zod.ZodOptional<zod.ZodBoolean>;
|
|
2577
2980
|
}, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
|
|
2578
2981
|
BAD_REQUEST: {
|
|
2579
2982
|
readonly status: 400;
|
|
@@ -2619,7 +3022,7 @@ declare const apiContract: {
|
|
|
2619
3022
|
uiAmountString: zod.ZodString;
|
|
2620
3023
|
mint: zod.ZodString;
|
|
2621
3024
|
}, zod_v4_core.$strip>>;
|
|
2622
|
-
hasMore: zod.
|
|
3025
|
+
hasMore: zod.ZodBoolean;
|
|
2623
3026
|
}, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
|
|
2624
3027
|
BAD_REQUEST: {
|
|
2625
3028
|
readonly status: 400;
|
|
@@ -2665,7 +3068,7 @@ declare const apiContract: {
|
|
|
2665
3068
|
uiAmountString: zod.ZodString;
|
|
2666
3069
|
mint: zod.ZodString;
|
|
2667
3070
|
}, zod_v4_core.$strip>>;
|
|
2668
|
-
hasMore: zod.
|
|
3071
|
+
hasMore: zod.ZodBoolean;
|
|
2669
3072
|
}, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
|
|
2670
3073
|
BAD_REQUEST: {
|
|
2671
3074
|
readonly status: 400;
|
|
@@ -2698,7 +3101,8 @@ declare const apiContract: {
|
|
|
2698
3101
|
metadata: zod.ZodOptional<zod.ZodObject<{
|
|
2699
3102
|
type: zod.ZodString;
|
|
2700
3103
|
description: zod.ZodString;
|
|
2701
|
-
|
|
3104
|
+
votesRelinquished: zod.ZodOptional<zod.ZodNumber>;
|
|
3105
|
+
}, zod_v4_core.$strip>>;
|
|
2702
3106
|
}, zod_v4_core.$strip>>;
|
|
2703
3107
|
parallel: zod.ZodBoolean;
|
|
2704
3108
|
tag: zod.ZodOptional<zod.ZodString>;
|
|
@@ -2710,7 +3114,7 @@ declare const apiContract: {
|
|
|
2710
3114
|
uiAmountString: zod.ZodString;
|
|
2711
3115
|
mint: zod.ZodString;
|
|
2712
3116
|
}, zod_v4_core.$strip>>;
|
|
2713
|
-
hasMore: zod.
|
|
3117
|
+
hasMore: zod.ZodBoolean;
|
|
2714
3118
|
}, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
|
|
2715
3119
|
BAD_REQUEST: {
|
|
2716
3120
|
readonly status: 400;
|
|
@@ -2756,7 +3160,7 @@ declare const apiContract: {
|
|
|
2756
3160
|
uiAmountString: zod.ZodString;
|
|
2757
3161
|
mint: zod.ZodString;
|
|
2758
3162
|
}, zod_v4_core.$strip>>;
|
|
2759
|
-
hasMore: zod.
|
|
3163
|
+
hasMore: zod.ZodBoolean;
|
|
2760
3164
|
}, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
|
|
2761
3165
|
BAD_REQUEST: {
|
|
2762
3166
|
readonly status: 400;
|
|
@@ -2801,7 +3205,7 @@ declare const apiContract: {
|
|
|
2801
3205
|
uiAmountString: zod.ZodString;
|
|
2802
3206
|
mint: zod.ZodString;
|
|
2803
3207
|
}, zod_v4_core.$strip>>;
|
|
2804
|
-
hasMore: zod.
|
|
3208
|
+
hasMore: zod.ZodBoolean;
|
|
2805
3209
|
}, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
|
|
2806
3210
|
BAD_REQUEST: {
|
|
2807
3211
|
readonly status: 400;
|
|
@@ -2878,13 +3282,13 @@ declare const apiContract: {
|
|
|
2878
3282
|
parallel: zod.ZodBoolean;
|
|
2879
3283
|
tag: zod.ZodOptional<zod.ZodString>;
|
|
2880
3284
|
}, zod_v4_core.$strip>;
|
|
2881
|
-
estimatedSolFee: zod.ZodObject<{
|
|
3285
|
+
estimatedSolFee: zod.ZodOptional<zod.ZodObject<{
|
|
2882
3286
|
amount: zod.ZodString;
|
|
2883
3287
|
decimals: zod.ZodNumber;
|
|
2884
3288
|
uiAmount: zod.ZodNullable<zod.ZodNumber>;
|
|
2885
3289
|
uiAmountString: zod.ZodString;
|
|
2886
3290
|
mint: zod.ZodString;
|
|
2887
|
-
}, zod_v4_core.$strip
|
|
3291
|
+
}, zod_v4_core.$strip>>;
|
|
2888
3292
|
}, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
|
|
2889
3293
|
BAD_REQUEST: {
|
|
2890
3294
|
readonly status: 400;
|
|
@@ -2916,13 +3320,13 @@ declare const apiContract: {
|
|
|
2916
3320
|
parallel: zod.ZodBoolean;
|
|
2917
3321
|
tag: zod.ZodOptional<zod.ZodString>;
|
|
2918
3322
|
}, zod_v4_core.$strip>;
|
|
2919
|
-
estimatedSolFee: zod.ZodObject<{
|
|
3323
|
+
estimatedSolFee: zod.ZodOptional<zod.ZodObject<{
|
|
2920
3324
|
amount: zod.ZodString;
|
|
2921
3325
|
decimals: zod.ZodNumber;
|
|
2922
3326
|
uiAmount: zod.ZodNullable<zod.ZodNumber>;
|
|
2923
3327
|
uiAmountString: zod.ZodString;
|
|
2924
3328
|
mint: zod.ZodString;
|
|
2925
|
-
}, zod_v4_core.$strip
|
|
3329
|
+
}, zod_v4_core.$strip>>;
|
|
2926
3330
|
}, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
|
|
2927
3331
|
INVALID_WALLET_ADDRESS: {
|
|
2928
3332
|
status: number;
|
|
@@ -3000,13 +3404,13 @@ declare const apiContract: {
|
|
|
3000
3404
|
parallel: zod.ZodBoolean;
|
|
3001
3405
|
tag: zod.ZodOptional<zod.ZodString>;
|
|
3002
3406
|
}, zod_v4_core.$strip>;
|
|
3003
|
-
estimatedSolFee: zod.ZodObject<{
|
|
3407
|
+
estimatedSolFee: zod.ZodOptional<zod.ZodObject<{
|
|
3004
3408
|
amount: zod.ZodString;
|
|
3005
3409
|
decimals: zod.ZodNumber;
|
|
3006
3410
|
uiAmount: zod.ZodNullable<zod.ZodNumber>;
|
|
3007
3411
|
uiAmountString: zod.ZodString;
|
|
3008
3412
|
mint: zod.ZodString;
|
|
3009
|
-
}, zod_v4_core.$strip
|
|
3413
|
+
}, zod_v4_core.$strip>>;
|
|
3010
3414
|
}, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
|
|
3011
3415
|
INSUFFICIENT_FUNDS: {
|
|
3012
3416
|
readonly status: 400;
|
|
@@ -3095,13 +3499,13 @@ declare const apiContract: {
|
|
|
3095
3499
|
parallel: zod.ZodBoolean;
|
|
3096
3500
|
tag: zod.ZodOptional<zod.ZodString>;
|
|
3097
3501
|
}, zod_v4_core.$strip>;
|
|
3098
|
-
estimatedSolFee: zod.ZodObject<{
|
|
3502
|
+
estimatedSolFee: zod.ZodOptional<zod.ZodObject<{
|
|
3099
3503
|
amount: zod.ZodString;
|
|
3100
3504
|
decimals: zod.ZodNumber;
|
|
3101
3505
|
uiAmount: zod.ZodNullable<zod.ZodNumber>;
|
|
3102
3506
|
uiAmountString: zod.ZodString;
|
|
3103
3507
|
mint: zod.ZodString;
|
|
3104
|
-
}, zod_v4_core.$strip
|
|
3508
|
+
}, zod_v4_core.$strip>>;
|
|
3105
3509
|
}, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
|
|
3106
3510
|
UNAUTHORIZED: {
|
|
3107
3511
|
readonly status: 403;
|
|
@@ -3145,13 +3549,13 @@ declare const apiContract: {
|
|
|
3145
3549
|
parallel: zod.ZodBoolean;
|
|
3146
3550
|
tag: zod.ZodOptional<zod.ZodString>;
|
|
3147
3551
|
}, zod_v4_core.$strip>;
|
|
3148
|
-
estimatedSolFee: zod.ZodObject<{
|
|
3552
|
+
estimatedSolFee: zod.ZodOptional<zod.ZodObject<{
|
|
3149
3553
|
amount: zod.ZodString;
|
|
3150
3554
|
decimals: zod.ZodNumber;
|
|
3151
3555
|
uiAmount: zod.ZodNullable<zod.ZodNumber>;
|
|
3152
3556
|
uiAmountString: zod.ZodString;
|
|
3153
3557
|
mint: zod.ZodString;
|
|
3154
|
-
}, zod_v4_core.$strip
|
|
3558
|
+
}, zod_v4_core.$strip>>;
|
|
3155
3559
|
}, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
|
|
3156
3560
|
BAD_REQUEST: {
|
|
3157
3561
|
message: string;
|
|
@@ -3238,13 +3642,13 @@ declare const apiContract: {
|
|
|
3238
3642
|
parallel: zod.ZodBoolean;
|
|
3239
3643
|
tag: zod.ZodOptional<zod.ZodString>;
|
|
3240
3644
|
}, zod_v4_core.$strip>;
|
|
3241
|
-
estimatedSolFee: zod.ZodObject<{
|
|
3645
|
+
estimatedSolFee: zod.ZodOptional<zod.ZodObject<{
|
|
3242
3646
|
amount: zod.ZodString;
|
|
3243
3647
|
decimals: zod.ZodNumber;
|
|
3244
3648
|
uiAmount: zod.ZodNullable<zod.ZodNumber>;
|
|
3245
3649
|
uiAmountString: zod.ZodString;
|
|
3246
3650
|
mint: zod.ZodString;
|
|
3247
|
-
}, zod_v4_core.$strip
|
|
3651
|
+
}, zod_v4_core.$strip>>;
|
|
3248
3652
|
}, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
|
|
3249
3653
|
NOT_FOUND: {
|
|
3250
3654
|
readonly status: 404;
|
|
@@ -3278,13 +3682,13 @@ declare const apiContract: {
|
|
|
3278
3682
|
parallel: zod.ZodBoolean;
|
|
3279
3683
|
tag: zod.ZodOptional<zod.ZodString>;
|
|
3280
3684
|
}, zod_v4_core.$strip>;
|
|
3281
|
-
estimatedSolFee: zod.ZodObject<{
|
|
3685
|
+
estimatedSolFee: zod.ZodOptional<zod.ZodObject<{
|
|
3282
3686
|
amount: zod.ZodString;
|
|
3283
3687
|
decimals: zod.ZodNumber;
|
|
3284
3688
|
uiAmount: zod.ZodNullable<zod.ZodNumber>;
|
|
3285
3689
|
uiAmountString: zod.ZodString;
|
|
3286
3690
|
mint: zod.ZodString;
|
|
3287
|
-
}, zod_v4_core.$strip
|
|
3691
|
+
}, zod_v4_core.$strip>>;
|
|
3288
3692
|
}, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
|
|
3289
3693
|
NOT_FOUND: {
|
|
3290
3694
|
readonly status: 404;
|
|
@@ -3313,13 +3717,13 @@ declare const apiContract: {
|
|
|
3313
3717
|
parallel: zod.ZodBoolean;
|
|
3314
3718
|
tag: zod.ZodOptional<zod.ZodString>;
|
|
3315
3719
|
}, zod_v4_core.$strip>;
|
|
3316
|
-
estimatedSolFee: zod.ZodObject<{
|
|
3720
|
+
estimatedSolFee: zod.ZodOptional<zod.ZodObject<{
|
|
3317
3721
|
amount: zod.ZodString;
|
|
3318
3722
|
decimals: zod.ZodNumber;
|
|
3319
3723
|
uiAmount: zod.ZodNullable<zod.ZodNumber>;
|
|
3320
3724
|
uiAmountString: zod.ZodString;
|
|
3321
3725
|
mint: zod.ZodString;
|
|
3322
|
-
}, zod_v4_core.$strip
|
|
3726
|
+
}, zod_v4_core.$strip>>;
|
|
3323
3727
|
}, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
|
|
3324
3728
|
NOT_FOUND: {
|
|
3325
3729
|
readonly status: 404;
|
|
@@ -3391,13 +3795,13 @@ declare const apiContract: {
|
|
|
3391
3795
|
parallel: zod.ZodBoolean;
|
|
3392
3796
|
tag: zod.ZodOptional<zod.ZodString>;
|
|
3393
3797
|
}, zod_v4_core.$strip>;
|
|
3394
|
-
estimatedSolFee: zod.ZodObject<{
|
|
3798
|
+
estimatedSolFee: zod.ZodOptional<zod.ZodObject<{
|
|
3395
3799
|
amount: zod.ZodString;
|
|
3396
3800
|
decimals: zod.ZodNumber;
|
|
3397
3801
|
uiAmount: zod.ZodNullable<zod.ZodNumber>;
|
|
3398
3802
|
uiAmountString: zod.ZodString;
|
|
3399
3803
|
mint: zod.ZodString;
|
|
3400
|
-
}, zod_v4_core.$strip
|
|
3804
|
+
}, zod_v4_core.$strip>>;
|
|
3401
3805
|
}, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
|
|
3402
3806
|
NOT_FOUND: {
|
|
3403
3807
|
readonly status: 404;
|
|
@@ -3427,13 +3831,13 @@ declare const apiContract: {
|
|
|
3427
3831
|
parallel: zod.ZodBoolean;
|
|
3428
3832
|
tag: zod.ZodOptional<zod.ZodString>;
|
|
3429
3833
|
}, zod_v4_core.$strip>;
|
|
3430
|
-
estimatedSolFee: zod.ZodObject<{
|
|
3834
|
+
estimatedSolFee: zod.ZodOptional<zod.ZodObject<{
|
|
3431
3835
|
amount: zod.ZodString;
|
|
3432
3836
|
decimals: zod.ZodNumber;
|
|
3433
3837
|
uiAmount: zod.ZodNullable<zod.ZodNumber>;
|
|
3434
3838
|
uiAmountString: zod.ZodString;
|
|
3435
3839
|
mint: zod.ZodString;
|
|
3436
|
-
}, zod_v4_core.$strip
|
|
3840
|
+
}, zod_v4_core.$strip>>;
|
|
3437
3841
|
}, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
|
|
3438
3842
|
NOT_FOUND: {
|
|
3439
3843
|
readonly status: 404;
|
|
@@ -3507,13 +3911,13 @@ declare const apiContract: {
|
|
|
3507
3911
|
parallel: zod.ZodBoolean;
|
|
3508
3912
|
tag: zod.ZodOptional<zod.ZodString>;
|
|
3509
3913
|
}, zod_v4_core.$strip>;
|
|
3510
|
-
estimatedSolFee: zod.ZodObject<{
|
|
3914
|
+
estimatedSolFee: zod.ZodOptional<zod.ZodObject<{
|
|
3511
3915
|
amount: zod.ZodString;
|
|
3512
3916
|
decimals: zod.ZodNumber;
|
|
3513
3917
|
uiAmount: zod.ZodNullable<zod.ZodNumber>;
|
|
3514
3918
|
uiAmountString: zod.ZodString;
|
|
3515
3919
|
mint: zod.ZodString;
|
|
3516
|
-
}, zod_v4_core.$strip
|
|
3920
|
+
}, zod_v4_core.$strip>>;
|
|
3517
3921
|
appliedTo: zod.ZodObject<{
|
|
3518
3922
|
iot: zod.ZodBoolean;
|
|
3519
3923
|
mobile: zod.ZodBoolean;
|
|
@@ -4354,6 +4758,24 @@ declare const apiContract: {
|
|
|
4354
4758
|
}, zod_v4_core.$strip>;
|
|
4355
4759
|
lazyDistributor: zod.ZodString;
|
|
4356
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>>;
|
|
4357
4779
|
welcomePack: zod.ZodObject<{
|
|
4358
4780
|
address: zod.ZodString;
|
|
4359
4781
|
id: zod.ZodNumber;
|
|
@@ -4409,24 +4831,6 @@ declare const apiContract: {
|
|
|
4409
4831
|
ownershipType: zod.ZodString;
|
|
4410
4832
|
}, zod_v4_core.$strip>>;
|
|
4411
4833
|
}, zod_v4_core.$strip>;
|
|
4412
|
-
transactionData: zod.ZodObject<{
|
|
4413
|
-
transactions: zod.ZodArray<zod.ZodObject<{
|
|
4414
|
-
serializedTransaction: zod.ZodString;
|
|
4415
|
-
metadata: zod.ZodOptional<zod.ZodObject<{
|
|
4416
|
-
type: zod.ZodString;
|
|
4417
|
-
description: zod.ZodString;
|
|
4418
|
-
}, zod_v4_core.$catchall<zod.ZodUnknown>>>;
|
|
4419
|
-
}, zod_v4_core.$strip>>;
|
|
4420
|
-
parallel: zod.ZodBoolean;
|
|
4421
|
-
tag: zod.ZodOptional<zod.ZodString>;
|
|
4422
|
-
}, zod_v4_core.$strip>;
|
|
4423
|
-
estimatedSolFee: zod.ZodObject<{
|
|
4424
|
-
amount: zod.ZodString;
|
|
4425
|
-
decimals: zod.ZodNumber;
|
|
4426
|
-
uiAmount: zod.ZodNullable<zod.ZodNumber>;
|
|
4427
|
-
uiAmountString: zod.ZodString;
|
|
4428
|
-
mint: zod.ZodString;
|
|
4429
|
-
}, zod_v4_core.$strip>;
|
|
4430
4834
|
}, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
|
|
4431
4835
|
BAD_REQUEST: {
|
|
4432
4836
|
readonly status: 400;
|
|
@@ -4530,13 +4934,13 @@ declare const apiContract: {
|
|
|
4530
4934
|
parallel: zod.ZodBoolean;
|
|
4531
4935
|
tag: zod.ZodOptional<zod.ZodString>;
|
|
4532
4936
|
}, zod_v4_core.$strip>;
|
|
4533
|
-
estimatedSolFee: zod.ZodObject<{
|
|
4937
|
+
estimatedSolFee: zod.ZodOptional<zod.ZodObject<{
|
|
4534
4938
|
amount: zod.ZodString;
|
|
4535
4939
|
decimals: zod.ZodNumber;
|
|
4536
4940
|
uiAmount: zod.ZodNullable<zod.ZodNumber>;
|
|
4537
4941
|
uiAmountString: zod.ZodString;
|
|
4538
4942
|
mint: zod.ZodString;
|
|
4539
|
-
}, zod_v4_core.$strip
|
|
4943
|
+
}, zod_v4_core.$strip>>;
|
|
4540
4944
|
}, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
|
|
4541
4945
|
BAD_REQUEST: {
|
|
4542
4946
|
readonly status: 400;
|
|
@@ -4637,13 +5041,13 @@ declare const apiContract: {
|
|
|
4637
5041
|
parallel: zod.ZodBoolean;
|
|
4638
5042
|
tag: zod.ZodOptional<zod.ZodString>;
|
|
4639
5043
|
}, zod_v4_core.$strip>;
|
|
4640
|
-
estimatedSolFee: zod.ZodObject<{
|
|
5044
|
+
estimatedSolFee: zod.ZodOptional<zod.ZodObject<{
|
|
4641
5045
|
amount: zod.ZodString;
|
|
4642
5046
|
decimals: zod.ZodNumber;
|
|
4643
5047
|
uiAmount: zod.ZodNullable<zod.ZodNumber>;
|
|
4644
5048
|
uiAmountString: zod.ZodString;
|
|
4645
5049
|
mint: zod.ZodString;
|
|
4646
|
-
}, zod_v4_core.$strip
|
|
5050
|
+
}, zod_v4_core.$strip>>;
|
|
4647
5051
|
}, zod_v4_core.$strip>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, _orpc_contract.MergedErrorMap<Record<never, never>, {
|
|
4648
5052
|
BAD_REQUEST: {
|
|
4649
5053
|
readonly status: 400;
|
|
@@ -5133,7 +5537,8 @@ declare const fullApiContract: {
|
|
|
5133
5537
|
metadata: zod.ZodOptional<zod.ZodObject<{
|
|
5134
5538
|
type: zod.ZodString;
|
|
5135
5539
|
description: zod.ZodString;
|
|
5136
|
-
|
|
5540
|
+
positionMint: zod.ZodOptional<zod.ZodString>;
|
|
5541
|
+
}, zod_v4_core.$strip>>;
|
|
5137
5542
|
}, zod_v4_core.$strip>>;
|
|
5138
5543
|
parallel: zod.ZodBoolean;
|
|
5139
5544
|
tag: zod.ZodOptional<zod.ZodString>;
|
|
@@ -5145,7 +5550,6 @@ declare const fullApiContract: {
|
|
|
5145
5550
|
uiAmountString: zod.ZodString;
|
|
5146
5551
|
mint: zod.ZodString;
|
|
5147
5552
|
}, zod_v4_core.$strip>>;
|
|
5148
|
-
hasMore: zod.ZodOptional<zod.ZodBoolean>;
|
|
5149
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>, {
|
|
5150
5554
|
BAD_REQUEST: {
|
|
5151
5555
|
readonly status: 400;
|
|
@@ -5185,7 +5589,6 @@ declare const fullApiContract: {
|
|
|
5185
5589
|
uiAmountString: zod.ZodString;
|
|
5186
5590
|
mint: zod.ZodString;
|
|
5187
5591
|
}, zod_v4_core.$strip>>;
|
|
5188
|
-
hasMore: zod.ZodOptional<zod.ZodBoolean>;
|
|
5189
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>, {
|
|
5190
5593
|
BAD_REQUEST: {
|
|
5191
5594
|
readonly status: 400;
|
|
@@ -5234,7 +5637,6 @@ declare const fullApiContract: {
|
|
|
5234
5637
|
uiAmountString: zod.ZodString;
|
|
5235
5638
|
mint: zod.ZodString;
|
|
5236
5639
|
}, zod_v4_core.$strip>>;
|
|
5237
|
-
hasMore: zod.ZodOptional<zod.ZodBoolean>;
|
|
5238
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>, {
|
|
5239
5641
|
BAD_REQUEST: {
|
|
5240
5642
|
readonly status: 400;
|
|
@@ -5278,7 +5680,6 @@ declare const fullApiContract: {
|
|
|
5278
5680
|
uiAmountString: zod.ZodString;
|
|
5279
5681
|
mint: zod.ZodString;
|
|
5280
5682
|
}, zod_v4_core.$strip>>;
|
|
5281
|
-
hasMore: zod.ZodOptional<zod.ZodBoolean>;
|
|
5282
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>, {
|
|
5283
5684
|
BAD_REQUEST: {
|
|
5284
5685
|
readonly status: 400;
|
|
@@ -5327,7 +5728,6 @@ declare const fullApiContract: {
|
|
|
5327
5728
|
uiAmountString: zod.ZodString;
|
|
5328
5729
|
mint: zod.ZodString;
|
|
5329
5730
|
}, zod_v4_core.$strip>>;
|
|
5330
|
-
hasMore: zod.ZodOptional<zod.ZodBoolean>;
|
|
5331
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>, {
|
|
5332
5732
|
BAD_REQUEST: {
|
|
5333
5733
|
readonly status: 400;
|
|
@@ -5365,7 +5765,8 @@ declare const fullApiContract: {
|
|
|
5365
5765
|
metadata: zod.ZodOptional<zod.ZodObject<{
|
|
5366
5766
|
type: zod.ZodString;
|
|
5367
5767
|
description: zod.ZodString;
|
|
5368
|
-
|
|
5768
|
+
newPositionMint: zod.ZodOptional<zod.ZodString>;
|
|
5769
|
+
}, zod_v4_core.$strip>>;
|
|
5369
5770
|
}, zod_v4_core.$strip>>;
|
|
5370
5771
|
parallel: zod.ZodBoolean;
|
|
5371
5772
|
tag: zod.ZodOptional<zod.ZodString>;
|
|
@@ -5377,7 +5778,6 @@ declare const fullApiContract: {
|
|
|
5377
5778
|
uiAmountString: zod.ZodString;
|
|
5378
5779
|
mint: zod.ZodString;
|
|
5379
5780
|
}, zod_v4_core.$strip>>;
|
|
5380
|
-
hasMore: zod.ZodOptional<zod.ZodBoolean>;
|
|
5381
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>, {
|
|
5382
5782
|
BAD_REQUEST: {
|
|
5383
5783
|
readonly status: 400;
|
|
@@ -5423,7 +5823,6 @@ declare const fullApiContract: {
|
|
|
5423
5823
|
uiAmountString: zod.ZodString;
|
|
5424
5824
|
mint: zod.ZodString;
|
|
5425
5825
|
}, zod_v4_core.$strip>>;
|
|
5426
|
-
hasMore: zod.ZodOptional<zod.ZodBoolean>;
|
|
5427
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>, {
|
|
5428
5827
|
BAD_REQUEST: {
|
|
5429
5828
|
readonly status: 400;
|
|
@@ -5469,7 +5868,7 @@ declare const fullApiContract: {
|
|
|
5469
5868
|
uiAmountString: zod.ZodString;
|
|
5470
5869
|
mint: zod.ZodString;
|
|
5471
5870
|
}, zod_v4_core.$strip>>;
|
|
5472
|
-
hasMore: zod.
|
|
5871
|
+
hasMore: zod.ZodBoolean;
|
|
5473
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>, {
|
|
5474
5873
|
BAD_REQUEST: {
|
|
5475
5874
|
readonly status: 400;
|
|
@@ -5513,7 +5912,7 @@ declare const fullApiContract: {
|
|
|
5513
5912
|
uiAmountString: zod.ZodString;
|
|
5514
5913
|
mint: zod.ZodString;
|
|
5515
5914
|
}, zod_v4_core.$strip>>;
|
|
5516
|
-
hasMore: zod.
|
|
5915
|
+
hasMore: zod.ZodBoolean;
|
|
5517
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>, {
|
|
5518
5917
|
BAD_REQUEST: {
|
|
5519
5918
|
readonly status: 400;
|
|
@@ -5557,7 +5956,7 @@ declare const fullApiContract: {
|
|
|
5557
5956
|
uiAmountString: zod.ZodString;
|
|
5558
5957
|
mint: zod.ZodString;
|
|
5559
5958
|
}, zod_v4_core.$strip>>;
|
|
5560
|
-
hasMore: zod.
|
|
5959
|
+
hasMore: zod.ZodBoolean;
|
|
5561
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>, {
|
|
5562
5961
|
BAD_REQUEST: {
|
|
5563
5962
|
readonly status: 400;
|
|
@@ -5601,7 +6000,6 @@ declare const fullApiContract: {
|
|
|
5601
6000
|
uiAmountString: zod.ZodString;
|
|
5602
6001
|
mint: zod.ZodString;
|
|
5603
6002
|
}, zod_v4_core.$strip>>;
|
|
5604
|
-
hasMore: zod.ZodOptional<zod.ZodBoolean>;
|
|
5605
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>, {
|
|
5606
6004
|
BAD_REQUEST: {
|
|
5607
6005
|
readonly status: 400;
|
|
@@ -5647,7 +6045,7 @@ declare const fullApiContract: {
|
|
|
5647
6045
|
uiAmountString: zod.ZodString;
|
|
5648
6046
|
mint: zod.ZodString;
|
|
5649
6047
|
}, zod_v4_core.$strip>>;
|
|
5650
|
-
hasMore: zod.
|
|
6048
|
+
hasMore: zod.ZodBoolean;
|
|
5651
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>, {
|
|
5652
6050
|
BAD_REQUEST: {
|
|
5653
6051
|
readonly status: 400;
|
|
@@ -5693,7 +6091,7 @@ declare const fullApiContract: {
|
|
|
5693
6091
|
uiAmountString: zod.ZodString;
|
|
5694
6092
|
mint: zod.ZodString;
|
|
5695
6093
|
}, zod_v4_core.$strip>>;
|
|
5696
|
-
hasMore: zod.
|
|
6094
|
+
hasMore: zod.ZodBoolean;
|
|
5697
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>, {
|
|
5698
6096
|
BAD_REQUEST: {
|
|
5699
6097
|
readonly status: 400;
|
|
@@ -5726,7 +6124,8 @@ declare const fullApiContract: {
|
|
|
5726
6124
|
metadata: zod.ZodOptional<zod.ZodObject<{
|
|
5727
6125
|
type: zod.ZodString;
|
|
5728
6126
|
description: zod.ZodString;
|
|
5729
|
-
|
|
6127
|
+
votesRelinquished: zod.ZodOptional<zod.ZodNumber>;
|
|
6128
|
+
}, zod_v4_core.$strip>>;
|
|
5730
6129
|
}, zod_v4_core.$strip>>;
|
|
5731
6130
|
parallel: zod.ZodBoolean;
|
|
5732
6131
|
tag: zod.ZodOptional<zod.ZodString>;
|
|
@@ -5738,7 +6137,7 @@ declare const fullApiContract: {
|
|
|
5738
6137
|
uiAmountString: zod.ZodString;
|
|
5739
6138
|
mint: zod.ZodString;
|
|
5740
6139
|
}, zod_v4_core.$strip>>;
|
|
5741
|
-
hasMore: zod.
|
|
6140
|
+
hasMore: zod.ZodBoolean;
|
|
5742
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>, {
|
|
5743
6142
|
BAD_REQUEST: {
|
|
5744
6143
|
readonly status: 400;
|
|
@@ -5784,7 +6183,7 @@ declare const fullApiContract: {
|
|
|
5784
6183
|
uiAmountString: zod.ZodString;
|
|
5785
6184
|
mint: zod.ZodString;
|
|
5786
6185
|
}, zod_v4_core.$strip>>;
|
|
5787
|
-
hasMore: zod.
|
|
6186
|
+
hasMore: zod.ZodBoolean;
|
|
5788
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>, {
|
|
5789
6188
|
BAD_REQUEST: {
|
|
5790
6189
|
readonly status: 400;
|
|
@@ -5829,7 +6228,7 @@ declare const fullApiContract: {
|
|
|
5829
6228
|
uiAmountString: zod.ZodString;
|
|
5830
6229
|
mint: zod.ZodString;
|
|
5831
6230
|
}, zod_v4_core.$strip>>;
|
|
5832
|
-
hasMore: zod.
|
|
6231
|
+
hasMore: zod.ZodBoolean;
|
|
5833
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>, {
|
|
5834
6233
|
BAD_REQUEST: {
|
|
5835
6234
|
readonly status: 400;
|
|
@@ -5906,13 +6305,13 @@ declare const fullApiContract: {
|
|
|
5906
6305
|
parallel: zod.ZodBoolean;
|
|
5907
6306
|
tag: zod.ZodOptional<zod.ZodString>;
|
|
5908
6307
|
}, zod_v4_core.$strip>;
|
|
5909
|
-
estimatedSolFee: zod.ZodObject<{
|
|
6308
|
+
estimatedSolFee: zod.ZodOptional<zod.ZodObject<{
|
|
5910
6309
|
amount: zod.ZodString;
|
|
5911
6310
|
decimals: zod.ZodNumber;
|
|
5912
6311
|
uiAmount: zod.ZodNullable<zod.ZodNumber>;
|
|
5913
6312
|
uiAmountString: zod.ZodString;
|
|
5914
6313
|
mint: zod.ZodString;
|
|
5915
|
-
}, zod_v4_core.$strip
|
|
6314
|
+
}, zod_v4_core.$strip>>;
|
|
5916
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>, {
|
|
5917
6316
|
BAD_REQUEST: {
|
|
5918
6317
|
readonly status: 400;
|
|
@@ -5944,13 +6343,13 @@ declare const fullApiContract: {
|
|
|
5944
6343
|
parallel: zod.ZodBoolean;
|
|
5945
6344
|
tag: zod.ZodOptional<zod.ZodString>;
|
|
5946
6345
|
}, zod_v4_core.$strip>;
|
|
5947
|
-
estimatedSolFee: zod.ZodObject<{
|
|
6346
|
+
estimatedSolFee: zod.ZodOptional<zod.ZodObject<{
|
|
5948
6347
|
amount: zod.ZodString;
|
|
5949
6348
|
decimals: zod.ZodNumber;
|
|
5950
6349
|
uiAmount: zod.ZodNullable<zod.ZodNumber>;
|
|
5951
6350
|
uiAmountString: zod.ZodString;
|
|
5952
6351
|
mint: zod.ZodString;
|
|
5953
|
-
}, zod_v4_core.$strip
|
|
6352
|
+
}, zod_v4_core.$strip>>;
|
|
5954
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>, {
|
|
5955
6354
|
INVALID_WALLET_ADDRESS: {
|
|
5956
6355
|
status: number;
|
|
@@ -6028,13 +6427,13 @@ declare const fullApiContract: {
|
|
|
6028
6427
|
parallel: zod.ZodBoolean;
|
|
6029
6428
|
tag: zod.ZodOptional<zod.ZodString>;
|
|
6030
6429
|
}, zod_v4_core.$strip>;
|
|
6031
|
-
estimatedSolFee: zod.ZodObject<{
|
|
6430
|
+
estimatedSolFee: zod.ZodOptional<zod.ZodObject<{
|
|
6032
6431
|
amount: zod.ZodString;
|
|
6033
6432
|
decimals: zod.ZodNumber;
|
|
6034
6433
|
uiAmount: zod.ZodNullable<zod.ZodNumber>;
|
|
6035
6434
|
uiAmountString: zod.ZodString;
|
|
6036
6435
|
mint: zod.ZodString;
|
|
6037
|
-
}, zod_v4_core.$strip
|
|
6436
|
+
}, zod_v4_core.$strip>>;
|
|
6038
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>, {
|
|
6039
6438
|
INSUFFICIENT_FUNDS: {
|
|
6040
6439
|
readonly status: 400;
|
|
@@ -6123,13 +6522,13 @@ declare const fullApiContract: {
|
|
|
6123
6522
|
parallel: zod.ZodBoolean;
|
|
6124
6523
|
tag: zod.ZodOptional<zod.ZodString>;
|
|
6125
6524
|
}, zod_v4_core.$strip>;
|
|
6126
|
-
estimatedSolFee: zod.ZodObject<{
|
|
6525
|
+
estimatedSolFee: zod.ZodOptional<zod.ZodObject<{
|
|
6127
6526
|
amount: zod.ZodString;
|
|
6128
6527
|
decimals: zod.ZodNumber;
|
|
6129
6528
|
uiAmount: zod.ZodNullable<zod.ZodNumber>;
|
|
6130
6529
|
uiAmountString: zod.ZodString;
|
|
6131
6530
|
mint: zod.ZodString;
|
|
6132
|
-
}, zod_v4_core.$strip
|
|
6531
|
+
}, zod_v4_core.$strip>>;
|
|
6133
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>, {
|
|
6134
6533
|
UNAUTHORIZED: {
|
|
6135
6534
|
readonly status: 403;
|
|
@@ -6173,13 +6572,13 @@ declare const fullApiContract: {
|
|
|
6173
6572
|
parallel: zod.ZodBoolean;
|
|
6174
6573
|
tag: zod.ZodOptional<zod.ZodString>;
|
|
6175
6574
|
}, zod_v4_core.$strip>;
|
|
6176
|
-
estimatedSolFee: zod.ZodObject<{
|
|
6575
|
+
estimatedSolFee: zod.ZodOptional<zod.ZodObject<{
|
|
6177
6576
|
amount: zod.ZodString;
|
|
6178
6577
|
decimals: zod.ZodNumber;
|
|
6179
6578
|
uiAmount: zod.ZodNullable<zod.ZodNumber>;
|
|
6180
6579
|
uiAmountString: zod.ZodString;
|
|
6181
6580
|
mint: zod.ZodString;
|
|
6182
|
-
}, zod_v4_core.$strip
|
|
6581
|
+
}, zod_v4_core.$strip>>;
|
|
6183
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>, {
|
|
6184
6583
|
BAD_REQUEST: {
|
|
6185
6584
|
message: string;
|
|
@@ -6266,13 +6665,13 @@ declare const fullApiContract: {
|
|
|
6266
6665
|
parallel: zod.ZodBoolean;
|
|
6267
6666
|
tag: zod.ZodOptional<zod.ZodString>;
|
|
6268
6667
|
}, zod_v4_core.$strip>;
|
|
6269
|
-
estimatedSolFee: zod.ZodObject<{
|
|
6668
|
+
estimatedSolFee: zod.ZodOptional<zod.ZodObject<{
|
|
6270
6669
|
amount: zod.ZodString;
|
|
6271
6670
|
decimals: zod.ZodNumber;
|
|
6272
6671
|
uiAmount: zod.ZodNullable<zod.ZodNumber>;
|
|
6273
6672
|
uiAmountString: zod.ZodString;
|
|
6274
6673
|
mint: zod.ZodString;
|
|
6275
|
-
}, zod_v4_core.$strip
|
|
6674
|
+
}, zod_v4_core.$strip>>;
|
|
6276
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>, {
|
|
6277
6676
|
NOT_FOUND: {
|
|
6278
6677
|
readonly status: 404;
|
|
@@ -6306,13 +6705,13 @@ declare const fullApiContract: {
|
|
|
6306
6705
|
parallel: zod.ZodBoolean;
|
|
6307
6706
|
tag: zod.ZodOptional<zod.ZodString>;
|
|
6308
6707
|
}, zod_v4_core.$strip>;
|
|
6309
|
-
estimatedSolFee: zod.ZodObject<{
|
|
6708
|
+
estimatedSolFee: zod.ZodOptional<zod.ZodObject<{
|
|
6310
6709
|
amount: zod.ZodString;
|
|
6311
6710
|
decimals: zod.ZodNumber;
|
|
6312
6711
|
uiAmount: zod.ZodNullable<zod.ZodNumber>;
|
|
6313
6712
|
uiAmountString: zod.ZodString;
|
|
6314
6713
|
mint: zod.ZodString;
|
|
6315
|
-
}, zod_v4_core.$strip
|
|
6714
|
+
}, zod_v4_core.$strip>>;
|
|
6316
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>, {
|
|
6317
6716
|
NOT_FOUND: {
|
|
6318
6717
|
readonly status: 404;
|
|
@@ -6341,13 +6740,13 @@ declare const fullApiContract: {
|
|
|
6341
6740
|
parallel: zod.ZodBoolean;
|
|
6342
6741
|
tag: zod.ZodOptional<zod.ZodString>;
|
|
6343
6742
|
}, zod_v4_core.$strip>;
|
|
6344
|
-
estimatedSolFee: zod.ZodObject<{
|
|
6743
|
+
estimatedSolFee: zod.ZodOptional<zod.ZodObject<{
|
|
6345
6744
|
amount: zod.ZodString;
|
|
6346
6745
|
decimals: zod.ZodNumber;
|
|
6347
6746
|
uiAmount: zod.ZodNullable<zod.ZodNumber>;
|
|
6348
6747
|
uiAmountString: zod.ZodString;
|
|
6349
6748
|
mint: zod.ZodString;
|
|
6350
|
-
}, zod_v4_core.$strip
|
|
6749
|
+
}, zod_v4_core.$strip>>;
|
|
6351
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>, {
|
|
6352
6751
|
NOT_FOUND: {
|
|
6353
6752
|
readonly status: 404;
|
|
@@ -6419,13 +6818,13 @@ declare const fullApiContract: {
|
|
|
6419
6818
|
parallel: zod.ZodBoolean;
|
|
6420
6819
|
tag: zod.ZodOptional<zod.ZodString>;
|
|
6421
6820
|
}, zod_v4_core.$strip>;
|
|
6422
|
-
estimatedSolFee: zod.ZodObject<{
|
|
6821
|
+
estimatedSolFee: zod.ZodOptional<zod.ZodObject<{
|
|
6423
6822
|
amount: zod.ZodString;
|
|
6424
6823
|
decimals: zod.ZodNumber;
|
|
6425
6824
|
uiAmount: zod.ZodNullable<zod.ZodNumber>;
|
|
6426
6825
|
uiAmountString: zod.ZodString;
|
|
6427
6826
|
mint: zod.ZodString;
|
|
6428
|
-
}, zod_v4_core.$strip
|
|
6827
|
+
}, zod_v4_core.$strip>>;
|
|
6429
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>, {
|
|
6430
6829
|
NOT_FOUND: {
|
|
6431
6830
|
readonly status: 404;
|
|
@@ -6455,13 +6854,13 @@ declare const fullApiContract: {
|
|
|
6455
6854
|
parallel: zod.ZodBoolean;
|
|
6456
6855
|
tag: zod.ZodOptional<zod.ZodString>;
|
|
6457
6856
|
}, zod_v4_core.$strip>;
|
|
6458
|
-
estimatedSolFee: zod.ZodObject<{
|
|
6857
|
+
estimatedSolFee: zod.ZodOptional<zod.ZodObject<{
|
|
6459
6858
|
amount: zod.ZodString;
|
|
6460
6859
|
decimals: zod.ZodNumber;
|
|
6461
6860
|
uiAmount: zod.ZodNullable<zod.ZodNumber>;
|
|
6462
6861
|
uiAmountString: zod.ZodString;
|
|
6463
6862
|
mint: zod.ZodString;
|
|
6464
|
-
}, zod_v4_core.$strip
|
|
6863
|
+
}, zod_v4_core.$strip>>;
|
|
6465
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>, {
|
|
6466
6865
|
NOT_FOUND: {
|
|
6467
6866
|
readonly status: 404;
|
|
@@ -6535,13 +6934,13 @@ declare const fullApiContract: {
|
|
|
6535
6934
|
parallel: zod.ZodBoolean;
|
|
6536
6935
|
tag: zod.ZodOptional<zod.ZodString>;
|
|
6537
6936
|
}, zod_v4_core.$strip>;
|
|
6538
|
-
estimatedSolFee: zod.ZodObject<{
|
|
6937
|
+
estimatedSolFee: zod.ZodOptional<zod.ZodObject<{
|
|
6539
6938
|
amount: zod.ZodString;
|
|
6540
6939
|
decimals: zod.ZodNumber;
|
|
6541
6940
|
uiAmount: zod.ZodNullable<zod.ZodNumber>;
|
|
6542
6941
|
uiAmountString: zod.ZodString;
|
|
6543
6942
|
mint: zod.ZodString;
|
|
6544
|
-
}, zod_v4_core.$strip
|
|
6943
|
+
}, zod_v4_core.$strip>>;
|
|
6545
6944
|
appliedTo: zod.ZodObject<{
|
|
6546
6945
|
iot: zod.ZodBoolean;
|
|
6547
6946
|
mobile: zod.ZodBoolean;
|
|
@@ -7382,6 +7781,24 @@ declare const fullApiContract: {
|
|
|
7382
7781
|
}, zod_v4_core.$strip>;
|
|
7383
7782
|
lazyDistributor: zod.ZodString;
|
|
7384
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>>;
|
|
7385
7802
|
welcomePack: zod.ZodObject<{
|
|
7386
7803
|
address: zod.ZodString;
|
|
7387
7804
|
id: zod.ZodNumber;
|
|
@@ -7437,24 +7854,6 @@ declare const fullApiContract: {
|
|
|
7437
7854
|
ownershipType: zod.ZodString;
|
|
7438
7855
|
}, zod_v4_core.$strip>>;
|
|
7439
7856
|
}, zod_v4_core.$strip>;
|
|
7440
|
-
transactionData: zod.ZodObject<{
|
|
7441
|
-
transactions: zod.ZodArray<zod.ZodObject<{
|
|
7442
|
-
serializedTransaction: zod.ZodString;
|
|
7443
|
-
metadata: zod.ZodOptional<zod.ZodObject<{
|
|
7444
|
-
type: zod.ZodString;
|
|
7445
|
-
description: zod.ZodString;
|
|
7446
|
-
}, zod_v4_core.$catchall<zod.ZodUnknown>>>;
|
|
7447
|
-
}, zod_v4_core.$strip>>;
|
|
7448
|
-
parallel: zod.ZodBoolean;
|
|
7449
|
-
tag: zod.ZodOptional<zod.ZodString>;
|
|
7450
|
-
}, zod_v4_core.$strip>;
|
|
7451
|
-
estimatedSolFee: zod.ZodObject<{
|
|
7452
|
-
amount: zod.ZodString;
|
|
7453
|
-
decimals: zod.ZodNumber;
|
|
7454
|
-
uiAmount: zod.ZodNullable<zod.ZodNumber>;
|
|
7455
|
-
uiAmountString: zod.ZodString;
|
|
7456
|
-
mint: zod.ZodString;
|
|
7457
|
-
}, zod_v4_core.$strip>;
|
|
7458
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>, {
|
|
7459
7858
|
BAD_REQUEST: {
|
|
7460
7859
|
readonly status: 400;
|
|
@@ -7558,13 +7957,13 @@ declare const fullApiContract: {
|
|
|
7558
7957
|
parallel: zod.ZodBoolean;
|
|
7559
7958
|
tag: zod.ZodOptional<zod.ZodString>;
|
|
7560
7959
|
}, zod_v4_core.$strip>;
|
|
7561
|
-
estimatedSolFee: zod.ZodObject<{
|
|
7960
|
+
estimatedSolFee: zod.ZodOptional<zod.ZodObject<{
|
|
7562
7961
|
amount: zod.ZodString;
|
|
7563
7962
|
decimals: zod.ZodNumber;
|
|
7564
7963
|
uiAmount: zod.ZodNullable<zod.ZodNumber>;
|
|
7565
7964
|
uiAmountString: zod.ZodString;
|
|
7566
7965
|
mint: zod.ZodString;
|
|
7567
|
-
}, zod_v4_core.$strip
|
|
7966
|
+
}, zod_v4_core.$strip>>;
|
|
7568
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>, {
|
|
7569
7968
|
BAD_REQUEST: {
|
|
7570
7969
|
readonly status: 400;
|
|
@@ -7665,13 +8064,13 @@ declare const fullApiContract: {
|
|
|
7665
8064
|
parallel: zod.ZodBoolean;
|
|
7666
8065
|
tag: zod.ZodOptional<zod.ZodString>;
|
|
7667
8066
|
}, zod_v4_core.$strip>;
|
|
7668
|
-
estimatedSolFee: zod.ZodObject<{
|
|
8067
|
+
estimatedSolFee: zod.ZodOptional<zod.ZodObject<{
|
|
7669
8068
|
amount: zod.ZodString;
|
|
7670
8069
|
decimals: zod.ZodNumber;
|
|
7671
8070
|
uiAmount: zod.ZodNullable<zod.ZodNumber>;
|
|
7672
8071
|
uiAmountString: zod.ZodString;
|
|
7673
8072
|
mint: zod.ZodString;
|
|
7674
|
-
}, zod_v4_core.$strip
|
|
8073
|
+
}, zod_v4_core.$strip>>;
|
|
7675
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>, {
|
|
7676
8075
|
BAD_REQUEST: {
|
|
7677
8076
|
readonly status: 400;
|
|
@@ -7708,4 +8107,4 @@ declare const fullApiContract: {
|
|
|
7708
8107
|
};
|
|
7709
8108
|
};
|
|
7710
8109
|
|
|
7711
|
-
export { type AssignProxiesInput, AssignProxiesInputSchema, AutomationScheduleSchema, type AutomationStatus, AutomationStatusOutputSchema, BAD_REQUEST, type BankAccount, type BankAccountListOutput, BankAccountListOutputSchema, BankAccountSchema, type BatchStatusOutput, BatchStatusOutputSchema, type BridgeTransfer, BridgeTransferSchema, CONFLICT, type ClaimDelegationRewardsInput, ClaimDelegationRewardsInputSchema, ClaimInviteRequestSchema, ClaimInviteResponseSchema, type ClaimRewardsInput, ClaimRewardsInputSchema, ClaimRewardsOutputSchema, type CloseAutomationInput, CloseAutomationInputSchema, CloseAutomationOutputSchema, type ClosePositionInput, ClosePositionInputSchema, type CreateBankAccountInput, CreateBankAccountInputSchema, type CreateHntAccountInput, CreateHntAccountInputSchema, type CreateHntAccountOutput, CreateHntAccountOutputSchema, CreateInviteResponseSchema, type CreatePositionInput, CreatePositionInputSchema, CreateRewardContractTransactionInputSchema, CreateRewardContractTransactionResponseSchema, type CreateSplitInput, CreateSplitInputSchema, CreateSplitOutputSchema, type DelegatePositionInput, DelegatePositionInputSchema, type DeleteBankAccountInput, DeleteBankAccountInputSchema, type DeleteBankAccountOutput, DeleteBankAccountOutputSchema, DeleteRewardContractTransactionResponseSchema, type DeleteSplitInput, DeleteSplitInputSchema, DeleteSplitOutputSchema, type DeviceType, DeviceTypeSchema, type ErrorResponse, ErrorResponseSchema, EstimateCostToCreateRewardContractResponseSchema, type EstimateInput, EstimateInputSchema, type EstimateOutput, EstimateOutputSchema, type ExtendDelegationInput, ExtendDelegationInputSchema, type ExtendPositionInput, ExtendPositionInputSchema, type FeesOutput, FeesOutputSchema, FindRewardContractResponseSchema, type FlipLockupKindInput, FlipLockupKindInputSchema, type FundAutomationInput, FundAutomationInputSchema, FundAutomationOutputSchema, type FundingEstimate, FundingEstimateOutputSchema, type GetAutomationStatusInput, GetAutomationStatusInputSchema, type GetBalancesInput, GetBalancesInputSchema, type GetBankAccountInput, GetBankAccountInputSchema, type GetByPayerAndTagInput, GetByPayerAndTagInputSchema, type GetByPayerInput, GetByPayerInputSchema, type GetFundingEstimateInput, GetFundingEstimateInputSchema, type GetHotspotsInput, GetHotspotsInputSchema, type GetInput, GetInputSchema, type GetInstructionsInput, GetInstructionsInputSchema, type GetPendingRewardsInput, GetPendingRewardsInputSchema, type GetPendingRewardsOutput, GetPendingRewardsOutputSchema, type GetQuoteInput, GetQuoteInputSchema, type GetSendQuoteInput, GetSendQuoteInputSchema, type GetSplitInput, GetSplitInputSchema, type GetTokensInput, GetTokensInputSchema, type GetTransferInput, GetTransferInputSchema, type
|
|
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 };
|