@chainflip/rpc 1.9.9 → 1.9.10
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/common.d.cts +1943 -68
- package/dist/common.d.ts +1943 -68
- package/dist/parsers.cjs +88 -43
- package/dist/parsers.d.cts +1973 -98
- package/dist/parsers.d.ts +1973 -98
- package/dist/parsers.mjs +88 -43
- package/package.json +2 -2
package/dist/common.d.cts
CHANGED
|
@@ -3599,6 +3599,528 @@ declare const rpcResult: {
|
|
|
3599
3599
|
DOT: string | number | null;
|
|
3600
3600
|
} | undefined;
|
|
3601
3601
|
}>>;
|
|
3602
|
+
network_fees: z.ZodOptional<z.ZodObject<{
|
|
3603
|
+
regular_network_fee: z.ZodObject<{
|
|
3604
|
+
standard_rate_and_minimum: z.ZodObject<{
|
|
3605
|
+
rate: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
3606
|
+
minimum: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
3607
|
+
}, "strip", z.ZodTypeAny, {
|
|
3608
|
+
minimum: bigint;
|
|
3609
|
+
rate: bigint;
|
|
3610
|
+
}, {
|
|
3611
|
+
minimum: string | number;
|
|
3612
|
+
rate: string | number;
|
|
3613
|
+
}>;
|
|
3614
|
+
rates: z.ZodObject<{
|
|
3615
|
+
Bitcoin: z.ZodObject<{
|
|
3616
|
+
BTC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
3617
|
+
}, "strip", z.ZodTypeAny, {
|
|
3618
|
+
BTC: bigint;
|
|
3619
|
+
}, {
|
|
3620
|
+
BTC: string | number;
|
|
3621
|
+
}>;
|
|
3622
|
+
Ethereum: z.ZodObject<{
|
|
3623
|
+
ETH: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
3624
|
+
USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
3625
|
+
FLIP: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
3626
|
+
USDT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
3627
|
+
}, "strip", z.ZodTypeAny, {
|
|
3628
|
+
ETH: bigint;
|
|
3629
|
+
USDC: bigint;
|
|
3630
|
+
FLIP: bigint;
|
|
3631
|
+
USDT: bigint;
|
|
3632
|
+
}, {
|
|
3633
|
+
ETH: string | number;
|
|
3634
|
+
USDC: string | number;
|
|
3635
|
+
FLIP: string | number;
|
|
3636
|
+
USDT: string | number;
|
|
3637
|
+
}>;
|
|
3638
|
+
Polkadot: z.ZodObject<{
|
|
3639
|
+
DOT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
3640
|
+
}, "strip", z.ZodTypeAny, {
|
|
3641
|
+
DOT: bigint;
|
|
3642
|
+
}, {
|
|
3643
|
+
DOT: string | number;
|
|
3644
|
+
}>;
|
|
3645
|
+
Arbitrum: z.ZodObject<{
|
|
3646
|
+
ETH: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
3647
|
+
USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
3648
|
+
}, "strip", z.ZodTypeAny, {
|
|
3649
|
+
ETH: bigint;
|
|
3650
|
+
USDC: bigint;
|
|
3651
|
+
}, {
|
|
3652
|
+
ETH: string | number;
|
|
3653
|
+
USDC: string | number;
|
|
3654
|
+
}>;
|
|
3655
|
+
Solana: z.ZodObject<{
|
|
3656
|
+
SOL: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
3657
|
+
USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
3658
|
+
}, "strip", z.ZodTypeAny, {
|
|
3659
|
+
USDC: bigint;
|
|
3660
|
+
SOL: bigint;
|
|
3661
|
+
}, {
|
|
3662
|
+
USDC: string | number;
|
|
3663
|
+
SOL: string | number;
|
|
3664
|
+
}>;
|
|
3665
|
+
Assethub: z.ZodDefault<z.ZodObject<{
|
|
3666
|
+
DOT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
3667
|
+
USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
3668
|
+
USDT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
3669
|
+
}, "strip", z.ZodTypeAny, {
|
|
3670
|
+
USDC: bigint;
|
|
3671
|
+
USDT: bigint;
|
|
3672
|
+
DOT: bigint;
|
|
3673
|
+
}, {
|
|
3674
|
+
USDC: string | number;
|
|
3675
|
+
USDT: string | number;
|
|
3676
|
+
DOT: string | number;
|
|
3677
|
+
}>>;
|
|
3678
|
+
}, "strip", z.ZodTypeAny, {
|
|
3679
|
+
Bitcoin: {
|
|
3680
|
+
BTC: bigint;
|
|
3681
|
+
};
|
|
3682
|
+
Ethereum: {
|
|
3683
|
+
ETH: bigint;
|
|
3684
|
+
USDC: bigint;
|
|
3685
|
+
FLIP: bigint;
|
|
3686
|
+
USDT: bigint;
|
|
3687
|
+
};
|
|
3688
|
+
Arbitrum: {
|
|
3689
|
+
ETH: bigint;
|
|
3690
|
+
USDC: bigint;
|
|
3691
|
+
};
|
|
3692
|
+
Solana: {
|
|
3693
|
+
USDC: bigint;
|
|
3694
|
+
SOL: bigint;
|
|
3695
|
+
};
|
|
3696
|
+
Polkadot: {
|
|
3697
|
+
DOT: bigint;
|
|
3698
|
+
};
|
|
3699
|
+
Assethub: {
|
|
3700
|
+
USDC: bigint;
|
|
3701
|
+
USDT: bigint;
|
|
3702
|
+
DOT: bigint;
|
|
3703
|
+
};
|
|
3704
|
+
}, {
|
|
3705
|
+
Bitcoin: {
|
|
3706
|
+
BTC: string | number;
|
|
3707
|
+
};
|
|
3708
|
+
Ethereum: {
|
|
3709
|
+
ETH: string | number;
|
|
3710
|
+
USDC: string | number;
|
|
3711
|
+
FLIP: string | number;
|
|
3712
|
+
USDT: string | number;
|
|
3713
|
+
};
|
|
3714
|
+
Arbitrum: {
|
|
3715
|
+
ETH: string | number;
|
|
3716
|
+
USDC: string | number;
|
|
3717
|
+
};
|
|
3718
|
+
Solana: {
|
|
3719
|
+
USDC: string | number;
|
|
3720
|
+
SOL: string | number;
|
|
3721
|
+
};
|
|
3722
|
+
Polkadot: {
|
|
3723
|
+
DOT: string | number;
|
|
3724
|
+
};
|
|
3725
|
+
Assethub?: {
|
|
3726
|
+
USDC: string | number;
|
|
3727
|
+
USDT: string | number;
|
|
3728
|
+
DOT: string | number;
|
|
3729
|
+
} | undefined;
|
|
3730
|
+
}>;
|
|
3731
|
+
}, "strip", z.ZodTypeAny, {
|
|
3732
|
+
standard_rate_and_minimum: {
|
|
3733
|
+
minimum: bigint;
|
|
3734
|
+
rate: bigint;
|
|
3735
|
+
};
|
|
3736
|
+
rates: {
|
|
3737
|
+
Bitcoin: {
|
|
3738
|
+
BTC: bigint;
|
|
3739
|
+
};
|
|
3740
|
+
Ethereum: {
|
|
3741
|
+
ETH: bigint;
|
|
3742
|
+
USDC: bigint;
|
|
3743
|
+
FLIP: bigint;
|
|
3744
|
+
USDT: bigint;
|
|
3745
|
+
};
|
|
3746
|
+
Arbitrum: {
|
|
3747
|
+
ETH: bigint;
|
|
3748
|
+
USDC: bigint;
|
|
3749
|
+
};
|
|
3750
|
+
Solana: {
|
|
3751
|
+
USDC: bigint;
|
|
3752
|
+
SOL: bigint;
|
|
3753
|
+
};
|
|
3754
|
+
Polkadot: {
|
|
3755
|
+
DOT: bigint;
|
|
3756
|
+
};
|
|
3757
|
+
Assethub: {
|
|
3758
|
+
USDC: bigint;
|
|
3759
|
+
USDT: bigint;
|
|
3760
|
+
DOT: bigint;
|
|
3761
|
+
};
|
|
3762
|
+
};
|
|
3763
|
+
}, {
|
|
3764
|
+
standard_rate_and_minimum: {
|
|
3765
|
+
minimum: string | number;
|
|
3766
|
+
rate: string | number;
|
|
3767
|
+
};
|
|
3768
|
+
rates: {
|
|
3769
|
+
Bitcoin: {
|
|
3770
|
+
BTC: string | number;
|
|
3771
|
+
};
|
|
3772
|
+
Ethereum: {
|
|
3773
|
+
ETH: string | number;
|
|
3774
|
+
USDC: string | number;
|
|
3775
|
+
FLIP: string | number;
|
|
3776
|
+
USDT: string | number;
|
|
3777
|
+
};
|
|
3778
|
+
Arbitrum: {
|
|
3779
|
+
ETH: string | number;
|
|
3780
|
+
USDC: string | number;
|
|
3781
|
+
};
|
|
3782
|
+
Solana: {
|
|
3783
|
+
USDC: string | number;
|
|
3784
|
+
SOL: string | number;
|
|
3785
|
+
};
|
|
3786
|
+
Polkadot: {
|
|
3787
|
+
DOT: string | number;
|
|
3788
|
+
};
|
|
3789
|
+
Assethub?: {
|
|
3790
|
+
USDC: string | number;
|
|
3791
|
+
USDT: string | number;
|
|
3792
|
+
DOT: string | number;
|
|
3793
|
+
} | undefined;
|
|
3794
|
+
};
|
|
3795
|
+
}>;
|
|
3796
|
+
internal_swap_network_fee: z.ZodObject<{
|
|
3797
|
+
standard_rate_and_minimum: z.ZodObject<{
|
|
3798
|
+
rate: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
3799
|
+
minimum: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
3800
|
+
}, "strip", z.ZodTypeAny, {
|
|
3801
|
+
minimum: bigint;
|
|
3802
|
+
rate: bigint;
|
|
3803
|
+
}, {
|
|
3804
|
+
minimum: string | number;
|
|
3805
|
+
rate: string | number;
|
|
3806
|
+
}>;
|
|
3807
|
+
rates: z.ZodObject<{
|
|
3808
|
+
Bitcoin: z.ZodObject<{
|
|
3809
|
+
BTC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
3810
|
+
}, "strip", z.ZodTypeAny, {
|
|
3811
|
+
BTC: bigint;
|
|
3812
|
+
}, {
|
|
3813
|
+
BTC: string | number;
|
|
3814
|
+
}>;
|
|
3815
|
+
Ethereum: z.ZodObject<{
|
|
3816
|
+
ETH: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
3817
|
+
USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
3818
|
+
FLIP: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
3819
|
+
USDT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
3820
|
+
}, "strip", z.ZodTypeAny, {
|
|
3821
|
+
ETH: bigint;
|
|
3822
|
+
USDC: bigint;
|
|
3823
|
+
FLIP: bigint;
|
|
3824
|
+
USDT: bigint;
|
|
3825
|
+
}, {
|
|
3826
|
+
ETH: string | number;
|
|
3827
|
+
USDC: string | number;
|
|
3828
|
+
FLIP: string | number;
|
|
3829
|
+
USDT: string | number;
|
|
3830
|
+
}>;
|
|
3831
|
+
Polkadot: z.ZodObject<{
|
|
3832
|
+
DOT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
3833
|
+
}, "strip", z.ZodTypeAny, {
|
|
3834
|
+
DOT: bigint;
|
|
3835
|
+
}, {
|
|
3836
|
+
DOT: string | number;
|
|
3837
|
+
}>;
|
|
3838
|
+
Arbitrum: z.ZodObject<{
|
|
3839
|
+
ETH: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
3840
|
+
USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
3841
|
+
}, "strip", z.ZodTypeAny, {
|
|
3842
|
+
ETH: bigint;
|
|
3843
|
+
USDC: bigint;
|
|
3844
|
+
}, {
|
|
3845
|
+
ETH: string | number;
|
|
3846
|
+
USDC: string | number;
|
|
3847
|
+
}>;
|
|
3848
|
+
Solana: z.ZodObject<{
|
|
3849
|
+
SOL: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
3850
|
+
USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
3851
|
+
}, "strip", z.ZodTypeAny, {
|
|
3852
|
+
USDC: bigint;
|
|
3853
|
+
SOL: bigint;
|
|
3854
|
+
}, {
|
|
3855
|
+
USDC: string | number;
|
|
3856
|
+
SOL: string | number;
|
|
3857
|
+
}>;
|
|
3858
|
+
Assethub: z.ZodDefault<z.ZodObject<{
|
|
3859
|
+
DOT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
3860
|
+
USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
3861
|
+
USDT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
3862
|
+
}, "strip", z.ZodTypeAny, {
|
|
3863
|
+
USDC: bigint;
|
|
3864
|
+
USDT: bigint;
|
|
3865
|
+
DOT: bigint;
|
|
3866
|
+
}, {
|
|
3867
|
+
USDC: string | number;
|
|
3868
|
+
USDT: string | number;
|
|
3869
|
+
DOT: string | number;
|
|
3870
|
+
}>>;
|
|
3871
|
+
}, "strip", z.ZodTypeAny, {
|
|
3872
|
+
Bitcoin: {
|
|
3873
|
+
BTC: bigint;
|
|
3874
|
+
};
|
|
3875
|
+
Ethereum: {
|
|
3876
|
+
ETH: bigint;
|
|
3877
|
+
USDC: bigint;
|
|
3878
|
+
FLIP: bigint;
|
|
3879
|
+
USDT: bigint;
|
|
3880
|
+
};
|
|
3881
|
+
Arbitrum: {
|
|
3882
|
+
ETH: bigint;
|
|
3883
|
+
USDC: bigint;
|
|
3884
|
+
};
|
|
3885
|
+
Solana: {
|
|
3886
|
+
USDC: bigint;
|
|
3887
|
+
SOL: bigint;
|
|
3888
|
+
};
|
|
3889
|
+
Polkadot: {
|
|
3890
|
+
DOT: bigint;
|
|
3891
|
+
};
|
|
3892
|
+
Assethub: {
|
|
3893
|
+
USDC: bigint;
|
|
3894
|
+
USDT: bigint;
|
|
3895
|
+
DOT: bigint;
|
|
3896
|
+
};
|
|
3897
|
+
}, {
|
|
3898
|
+
Bitcoin: {
|
|
3899
|
+
BTC: string | number;
|
|
3900
|
+
};
|
|
3901
|
+
Ethereum: {
|
|
3902
|
+
ETH: string | number;
|
|
3903
|
+
USDC: string | number;
|
|
3904
|
+
FLIP: string | number;
|
|
3905
|
+
USDT: string | number;
|
|
3906
|
+
};
|
|
3907
|
+
Arbitrum: {
|
|
3908
|
+
ETH: string | number;
|
|
3909
|
+
USDC: string | number;
|
|
3910
|
+
};
|
|
3911
|
+
Solana: {
|
|
3912
|
+
USDC: string | number;
|
|
3913
|
+
SOL: string | number;
|
|
3914
|
+
};
|
|
3915
|
+
Polkadot: {
|
|
3916
|
+
DOT: string | number;
|
|
3917
|
+
};
|
|
3918
|
+
Assethub?: {
|
|
3919
|
+
USDC: string | number;
|
|
3920
|
+
USDT: string | number;
|
|
3921
|
+
DOT: string | number;
|
|
3922
|
+
} | undefined;
|
|
3923
|
+
}>;
|
|
3924
|
+
}, "strip", z.ZodTypeAny, {
|
|
3925
|
+
standard_rate_and_minimum: {
|
|
3926
|
+
minimum: bigint;
|
|
3927
|
+
rate: bigint;
|
|
3928
|
+
};
|
|
3929
|
+
rates: {
|
|
3930
|
+
Bitcoin: {
|
|
3931
|
+
BTC: bigint;
|
|
3932
|
+
};
|
|
3933
|
+
Ethereum: {
|
|
3934
|
+
ETH: bigint;
|
|
3935
|
+
USDC: bigint;
|
|
3936
|
+
FLIP: bigint;
|
|
3937
|
+
USDT: bigint;
|
|
3938
|
+
};
|
|
3939
|
+
Arbitrum: {
|
|
3940
|
+
ETH: bigint;
|
|
3941
|
+
USDC: bigint;
|
|
3942
|
+
};
|
|
3943
|
+
Solana: {
|
|
3944
|
+
USDC: bigint;
|
|
3945
|
+
SOL: bigint;
|
|
3946
|
+
};
|
|
3947
|
+
Polkadot: {
|
|
3948
|
+
DOT: bigint;
|
|
3949
|
+
};
|
|
3950
|
+
Assethub: {
|
|
3951
|
+
USDC: bigint;
|
|
3952
|
+
USDT: bigint;
|
|
3953
|
+
DOT: bigint;
|
|
3954
|
+
};
|
|
3955
|
+
};
|
|
3956
|
+
}, {
|
|
3957
|
+
standard_rate_and_minimum: {
|
|
3958
|
+
minimum: string | number;
|
|
3959
|
+
rate: string | number;
|
|
3960
|
+
};
|
|
3961
|
+
rates: {
|
|
3962
|
+
Bitcoin: {
|
|
3963
|
+
BTC: string | number;
|
|
3964
|
+
};
|
|
3965
|
+
Ethereum: {
|
|
3966
|
+
ETH: string | number;
|
|
3967
|
+
USDC: string | number;
|
|
3968
|
+
FLIP: string | number;
|
|
3969
|
+
USDT: string | number;
|
|
3970
|
+
};
|
|
3971
|
+
Arbitrum: {
|
|
3972
|
+
ETH: string | number;
|
|
3973
|
+
USDC: string | number;
|
|
3974
|
+
};
|
|
3975
|
+
Solana: {
|
|
3976
|
+
USDC: string | number;
|
|
3977
|
+
SOL: string | number;
|
|
3978
|
+
};
|
|
3979
|
+
Polkadot: {
|
|
3980
|
+
DOT: string | number;
|
|
3981
|
+
};
|
|
3982
|
+
Assethub?: {
|
|
3983
|
+
USDC: string | number;
|
|
3984
|
+
USDT: string | number;
|
|
3985
|
+
DOT: string | number;
|
|
3986
|
+
} | undefined;
|
|
3987
|
+
};
|
|
3988
|
+
}>;
|
|
3989
|
+
}, "strip", z.ZodTypeAny, {
|
|
3990
|
+
regular_network_fee: {
|
|
3991
|
+
standard_rate_and_minimum: {
|
|
3992
|
+
minimum: bigint;
|
|
3993
|
+
rate: bigint;
|
|
3994
|
+
};
|
|
3995
|
+
rates: {
|
|
3996
|
+
Bitcoin: {
|
|
3997
|
+
BTC: bigint;
|
|
3998
|
+
};
|
|
3999
|
+
Ethereum: {
|
|
4000
|
+
ETH: bigint;
|
|
4001
|
+
USDC: bigint;
|
|
4002
|
+
FLIP: bigint;
|
|
4003
|
+
USDT: bigint;
|
|
4004
|
+
};
|
|
4005
|
+
Arbitrum: {
|
|
4006
|
+
ETH: bigint;
|
|
4007
|
+
USDC: bigint;
|
|
4008
|
+
};
|
|
4009
|
+
Solana: {
|
|
4010
|
+
USDC: bigint;
|
|
4011
|
+
SOL: bigint;
|
|
4012
|
+
};
|
|
4013
|
+
Polkadot: {
|
|
4014
|
+
DOT: bigint;
|
|
4015
|
+
};
|
|
4016
|
+
Assethub: {
|
|
4017
|
+
USDC: bigint;
|
|
4018
|
+
USDT: bigint;
|
|
4019
|
+
DOT: bigint;
|
|
4020
|
+
};
|
|
4021
|
+
};
|
|
4022
|
+
};
|
|
4023
|
+
internal_swap_network_fee: {
|
|
4024
|
+
standard_rate_and_minimum: {
|
|
4025
|
+
minimum: bigint;
|
|
4026
|
+
rate: bigint;
|
|
4027
|
+
};
|
|
4028
|
+
rates: {
|
|
4029
|
+
Bitcoin: {
|
|
4030
|
+
BTC: bigint;
|
|
4031
|
+
};
|
|
4032
|
+
Ethereum: {
|
|
4033
|
+
ETH: bigint;
|
|
4034
|
+
USDC: bigint;
|
|
4035
|
+
FLIP: bigint;
|
|
4036
|
+
USDT: bigint;
|
|
4037
|
+
};
|
|
4038
|
+
Arbitrum: {
|
|
4039
|
+
ETH: bigint;
|
|
4040
|
+
USDC: bigint;
|
|
4041
|
+
};
|
|
4042
|
+
Solana: {
|
|
4043
|
+
USDC: bigint;
|
|
4044
|
+
SOL: bigint;
|
|
4045
|
+
};
|
|
4046
|
+
Polkadot: {
|
|
4047
|
+
DOT: bigint;
|
|
4048
|
+
};
|
|
4049
|
+
Assethub: {
|
|
4050
|
+
USDC: bigint;
|
|
4051
|
+
USDT: bigint;
|
|
4052
|
+
DOT: bigint;
|
|
4053
|
+
};
|
|
4054
|
+
};
|
|
4055
|
+
};
|
|
4056
|
+
}, {
|
|
4057
|
+
regular_network_fee: {
|
|
4058
|
+
standard_rate_and_minimum: {
|
|
4059
|
+
minimum: string | number;
|
|
4060
|
+
rate: string | number;
|
|
4061
|
+
};
|
|
4062
|
+
rates: {
|
|
4063
|
+
Bitcoin: {
|
|
4064
|
+
BTC: string | number;
|
|
4065
|
+
};
|
|
4066
|
+
Ethereum: {
|
|
4067
|
+
ETH: string | number;
|
|
4068
|
+
USDC: string | number;
|
|
4069
|
+
FLIP: string | number;
|
|
4070
|
+
USDT: string | number;
|
|
4071
|
+
};
|
|
4072
|
+
Arbitrum: {
|
|
4073
|
+
ETH: string | number;
|
|
4074
|
+
USDC: string | number;
|
|
4075
|
+
};
|
|
4076
|
+
Solana: {
|
|
4077
|
+
USDC: string | number;
|
|
4078
|
+
SOL: string | number;
|
|
4079
|
+
};
|
|
4080
|
+
Polkadot: {
|
|
4081
|
+
DOT: string | number;
|
|
4082
|
+
};
|
|
4083
|
+
Assethub?: {
|
|
4084
|
+
USDC: string | number;
|
|
4085
|
+
USDT: string | number;
|
|
4086
|
+
DOT: string | number;
|
|
4087
|
+
} | undefined;
|
|
4088
|
+
};
|
|
4089
|
+
};
|
|
4090
|
+
internal_swap_network_fee: {
|
|
4091
|
+
standard_rate_and_minimum: {
|
|
4092
|
+
minimum: string | number;
|
|
4093
|
+
rate: string | number;
|
|
4094
|
+
};
|
|
4095
|
+
rates: {
|
|
4096
|
+
Bitcoin: {
|
|
4097
|
+
BTC: string | number;
|
|
4098
|
+
};
|
|
4099
|
+
Ethereum: {
|
|
4100
|
+
ETH: string | number;
|
|
4101
|
+
USDC: string | number;
|
|
4102
|
+
FLIP: string | number;
|
|
4103
|
+
USDT: string | number;
|
|
4104
|
+
};
|
|
4105
|
+
Arbitrum: {
|
|
4106
|
+
ETH: string | number;
|
|
4107
|
+
USDC: string | number;
|
|
4108
|
+
};
|
|
4109
|
+
Solana: {
|
|
4110
|
+
USDC: string | number;
|
|
4111
|
+
SOL: string | number;
|
|
4112
|
+
};
|
|
4113
|
+
Polkadot: {
|
|
4114
|
+
DOT: string | number;
|
|
4115
|
+
};
|
|
4116
|
+
Assethub?: {
|
|
4117
|
+
USDC: string | number;
|
|
4118
|
+
USDT: string | number;
|
|
4119
|
+
DOT: string | number;
|
|
4120
|
+
} | undefined;
|
|
4121
|
+
};
|
|
4122
|
+
};
|
|
4123
|
+
}>>;
|
|
3602
4124
|
}, "strip", z.ZodTypeAny, {
|
|
3603
4125
|
maximum_swap_amounts: {
|
|
3604
4126
|
Bitcoin: {
|
|
@@ -3658,6 +4180,74 @@ declare const rpcResult: {
|
|
|
3658
4180
|
DOT: bigint | null;
|
|
3659
4181
|
};
|
|
3660
4182
|
} | undefined;
|
|
4183
|
+
network_fees?: {
|
|
4184
|
+
regular_network_fee: {
|
|
4185
|
+
standard_rate_and_minimum: {
|
|
4186
|
+
minimum: bigint;
|
|
4187
|
+
rate: bigint;
|
|
4188
|
+
};
|
|
4189
|
+
rates: {
|
|
4190
|
+
Bitcoin: {
|
|
4191
|
+
BTC: bigint;
|
|
4192
|
+
};
|
|
4193
|
+
Ethereum: {
|
|
4194
|
+
ETH: bigint;
|
|
4195
|
+
USDC: bigint;
|
|
4196
|
+
FLIP: bigint;
|
|
4197
|
+
USDT: bigint;
|
|
4198
|
+
};
|
|
4199
|
+
Arbitrum: {
|
|
4200
|
+
ETH: bigint;
|
|
4201
|
+
USDC: bigint;
|
|
4202
|
+
};
|
|
4203
|
+
Solana: {
|
|
4204
|
+
USDC: bigint;
|
|
4205
|
+
SOL: bigint;
|
|
4206
|
+
};
|
|
4207
|
+
Polkadot: {
|
|
4208
|
+
DOT: bigint;
|
|
4209
|
+
};
|
|
4210
|
+
Assethub: {
|
|
4211
|
+
USDC: bigint;
|
|
4212
|
+
USDT: bigint;
|
|
4213
|
+
DOT: bigint;
|
|
4214
|
+
};
|
|
4215
|
+
};
|
|
4216
|
+
};
|
|
4217
|
+
internal_swap_network_fee: {
|
|
4218
|
+
standard_rate_and_minimum: {
|
|
4219
|
+
minimum: bigint;
|
|
4220
|
+
rate: bigint;
|
|
4221
|
+
};
|
|
4222
|
+
rates: {
|
|
4223
|
+
Bitcoin: {
|
|
4224
|
+
BTC: bigint;
|
|
4225
|
+
};
|
|
4226
|
+
Ethereum: {
|
|
4227
|
+
ETH: bigint;
|
|
4228
|
+
USDC: bigint;
|
|
4229
|
+
FLIP: bigint;
|
|
4230
|
+
USDT: bigint;
|
|
4231
|
+
};
|
|
4232
|
+
Arbitrum: {
|
|
4233
|
+
ETH: bigint;
|
|
4234
|
+
USDC: bigint;
|
|
4235
|
+
};
|
|
4236
|
+
Solana: {
|
|
4237
|
+
USDC: bigint;
|
|
4238
|
+
SOL: bigint;
|
|
4239
|
+
};
|
|
4240
|
+
Polkadot: {
|
|
4241
|
+
DOT: bigint;
|
|
4242
|
+
};
|
|
4243
|
+
Assethub: {
|
|
4244
|
+
USDC: bigint;
|
|
4245
|
+
USDT: bigint;
|
|
4246
|
+
DOT: bigint;
|
|
4247
|
+
};
|
|
4248
|
+
};
|
|
4249
|
+
};
|
|
4250
|
+
} | undefined;
|
|
3661
4251
|
}, {
|
|
3662
4252
|
maximum_swap_amounts: {
|
|
3663
4253
|
Bitcoin: {
|
|
@@ -3717,6 +4307,74 @@ declare const rpcResult: {
|
|
|
3717
4307
|
DOT: string | number | null;
|
|
3718
4308
|
} | undefined;
|
|
3719
4309
|
} | undefined;
|
|
4310
|
+
network_fees?: {
|
|
4311
|
+
regular_network_fee: {
|
|
4312
|
+
standard_rate_and_minimum: {
|
|
4313
|
+
minimum: string | number;
|
|
4314
|
+
rate: string | number;
|
|
4315
|
+
};
|
|
4316
|
+
rates: {
|
|
4317
|
+
Bitcoin: {
|
|
4318
|
+
BTC: string | number;
|
|
4319
|
+
};
|
|
4320
|
+
Ethereum: {
|
|
4321
|
+
ETH: string | number;
|
|
4322
|
+
USDC: string | number;
|
|
4323
|
+
FLIP: string | number;
|
|
4324
|
+
USDT: string | number;
|
|
4325
|
+
};
|
|
4326
|
+
Arbitrum: {
|
|
4327
|
+
ETH: string | number;
|
|
4328
|
+
USDC: string | number;
|
|
4329
|
+
};
|
|
4330
|
+
Solana: {
|
|
4331
|
+
USDC: string | number;
|
|
4332
|
+
SOL: string | number;
|
|
4333
|
+
};
|
|
4334
|
+
Polkadot: {
|
|
4335
|
+
DOT: string | number;
|
|
4336
|
+
};
|
|
4337
|
+
Assethub?: {
|
|
4338
|
+
USDC: string | number;
|
|
4339
|
+
USDT: string | number;
|
|
4340
|
+
DOT: string | number;
|
|
4341
|
+
} | undefined;
|
|
4342
|
+
};
|
|
4343
|
+
};
|
|
4344
|
+
internal_swap_network_fee: {
|
|
4345
|
+
standard_rate_and_minimum: {
|
|
4346
|
+
minimum: string | number;
|
|
4347
|
+
rate: string | number;
|
|
4348
|
+
};
|
|
4349
|
+
rates: {
|
|
4350
|
+
Bitcoin: {
|
|
4351
|
+
BTC: string | number;
|
|
4352
|
+
};
|
|
4353
|
+
Ethereum: {
|
|
4354
|
+
ETH: string | number;
|
|
4355
|
+
USDC: string | number;
|
|
4356
|
+
FLIP: string | number;
|
|
4357
|
+
USDT: string | number;
|
|
4358
|
+
};
|
|
4359
|
+
Arbitrum: {
|
|
4360
|
+
ETH: string | number;
|
|
4361
|
+
USDC: string | number;
|
|
4362
|
+
};
|
|
4363
|
+
Solana: {
|
|
4364
|
+
USDC: string | number;
|
|
4365
|
+
SOL: string | number;
|
|
4366
|
+
};
|
|
4367
|
+
Polkadot: {
|
|
4368
|
+
DOT: string | number;
|
|
4369
|
+
};
|
|
4370
|
+
Assethub?: {
|
|
4371
|
+
USDC: string | number;
|
|
4372
|
+
USDT: string | number;
|
|
4373
|
+
DOT: string | number;
|
|
4374
|
+
} | undefined;
|
|
4375
|
+
};
|
|
4376
|
+
};
|
|
4377
|
+
} | undefined;
|
|
3720
4378
|
}>;
|
|
3721
4379
|
funding: z.ZodObject<{
|
|
3722
4380
|
redemption_tax: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
@@ -8610,6 +9268,74 @@ declare const rpcResult: {
|
|
|
8610
9268
|
DOT: bigint | null;
|
|
8611
9269
|
};
|
|
8612
9270
|
} | undefined;
|
|
9271
|
+
network_fees?: {
|
|
9272
|
+
regular_network_fee: {
|
|
9273
|
+
standard_rate_and_minimum: {
|
|
9274
|
+
minimum: bigint;
|
|
9275
|
+
rate: bigint;
|
|
9276
|
+
};
|
|
9277
|
+
rates: {
|
|
9278
|
+
Bitcoin: {
|
|
9279
|
+
BTC: bigint;
|
|
9280
|
+
};
|
|
9281
|
+
Ethereum: {
|
|
9282
|
+
ETH: bigint;
|
|
9283
|
+
USDC: bigint;
|
|
9284
|
+
FLIP: bigint;
|
|
9285
|
+
USDT: bigint;
|
|
9286
|
+
};
|
|
9287
|
+
Arbitrum: {
|
|
9288
|
+
ETH: bigint;
|
|
9289
|
+
USDC: bigint;
|
|
9290
|
+
};
|
|
9291
|
+
Solana: {
|
|
9292
|
+
USDC: bigint;
|
|
9293
|
+
SOL: bigint;
|
|
9294
|
+
};
|
|
9295
|
+
Polkadot: {
|
|
9296
|
+
DOT: bigint;
|
|
9297
|
+
};
|
|
9298
|
+
Assethub: {
|
|
9299
|
+
USDC: bigint;
|
|
9300
|
+
USDT: bigint;
|
|
9301
|
+
DOT: bigint;
|
|
9302
|
+
};
|
|
9303
|
+
};
|
|
9304
|
+
};
|
|
9305
|
+
internal_swap_network_fee: {
|
|
9306
|
+
standard_rate_and_minimum: {
|
|
9307
|
+
minimum: bigint;
|
|
9308
|
+
rate: bigint;
|
|
9309
|
+
};
|
|
9310
|
+
rates: {
|
|
9311
|
+
Bitcoin: {
|
|
9312
|
+
BTC: bigint;
|
|
9313
|
+
};
|
|
9314
|
+
Ethereum: {
|
|
9315
|
+
ETH: bigint;
|
|
9316
|
+
USDC: bigint;
|
|
9317
|
+
FLIP: bigint;
|
|
9318
|
+
USDT: bigint;
|
|
9319
|
+
};
|
|
9320
|
+
Arbitrum: {
|
|
9321
|
+
ETH: bigint;
|
|
9322
|
+
USDC: bigint;
|
|
9323
|
+
};
|
|
9324
|
+
Solana: {
|
|
9325
|
+
USDC: bigint;
|
|
9326
|
+
SOL: bigint;
|
|
9327
|
+
};
|
|
9328
|
+
Polkadot: {
|
|
9329
|
+
DOT: bigint;
|
|
9330
|
+
};
|
|
9331
|
+
Assethub: {
|
|
9332
|
+
USDC: bigint;
|
|
9333
|
+
USDT: bigint;
|
|
9334
|
+
DOT: bigint;
|
|
9335
|
+
};
|
|
9336
|
+
};
|
|
9337
|
+
};
|
|
9338
|
+
} | undefined;
|
|
8613
9339
|
};
|
|
8614
9340
|
funding: {
|
|
8615
9341
|
redemption_tax: bigint;
|
|
@@ -9381,6 +10107,74 @@ declare const rpcResult: {
|
|
|
9381
10107
|
DOT: string | number | null;
|
|
9382
10108
|
} | undefined;
|
|
9383
10109
|
} | undefined;
|
|
10110
|
+
network_fees?: {
|
|
10111
|
+
regular_network_fee: {
|
|
10112
|
+
standard_rate_and_minimum: {
|
|
10113
|
+
minimum: string | number;
|
|
10114
|
+
rate: string | number;
|
|
10115
|
+
};
|
|
10116
|
+
rates: {
|
|
10117
|
+
Bitcoin: {
|
|
10118
|
+
BTC: string | number;
|
|
10119
|
+
};
|
|
10120
|
+
Ethereum: {
|
|
10121
|
+
ETH: string | number;
|
|
10122
|
+
USDC: string | number;
|
|
10123
|
+
FLIP: string | number;
|
|
10124
|
+
USDT: string | number;
|
|
10125
|
+
};
|
|
10126
|
+
Arbitrum: {
|
|
10127
|
+
ETH: string | number;
|
|
10128
|
+
USDC: string | number;
|
|
10129
|
+
};
|
|
10130
|
+
Solana: {
|
|
10131
|
+
USDC: string | number;
|
|
10132
|
+
SOL: string | number;
|
|
10133
|
+
};
|
|
10134
|
+
Polkadot: {
|
|
10135
|
+
DOT: string | number;
|
|
10136
|
+
};
|
|
10137
|
+
Assethub?: {
|
|
10138
|
+
USDC: string | number;
|
|
10139
|
+
USDT: string | number;
|
|
10140
|
+
DOT: string | number;
|
|
10141
|
+
} | undefined;
|
|
10142
|
+
};
|
|
10143
|
+
};
|
|
10144
|
+
internal_swap_network_fee: {
|
|
10145
|
+
standard_rate_and_minimum: {
|
|
10146
|
+
minimum: string | number;
|
|
10147
|
+
rate: string | number;
|
|
10148
|
+
};
|
|
10149
|
+
rates: {
|
|
10150
|
+
Bitcoin: {
|
|
10151
|
+
BTC: string | number;
|
|
10152
|
+
};
|
|
10153
|
+
Ethereum: {
|
|
10154
|
+
ETH: string | number;
|
|
10155
|
+
USDC: string | number;
|
|
10156
|
+
FLIP: string | number;
|
|
10157
|
+
USDT: string | number;
|
|
10158
|
+
};
|
|
10159
|
+
Arbitrum: {
|
|
10160
|
+
ETH: string | number;
|
|
10161
|
+
USDC: string | number;
|
|
10162
|
+
};
|
|
10163
|
+
Solana: {
|
|
10164
|
+
USDC: string | number;
|
|
10165
|
+
SOL: string | number;
|
|
10166
|
+
};
|
|
10167
|
+
Polkadot: {
|
|
10168
|
+
DOT: string | number;
|
|
10169
|
+
};
|
|
10170
|
+
Assethub?: {
|
|
10171
|
+
USDC: string | number;
|
|
10172
|
+
USDT: string | number;
|
|
10173
|
+
DOT: string | number;
|
|
10174
|
+
} | undefined;
|
|
10175
|
+
};
|
|
10176
|
+
};
|
|
10177
|
+
} | undefined;
|
|
9384
10178
|
};
|
|
9385
10179
|
funding: {
|
|
9386
10180
|
redemption_tax: string | number;
|
|
@@ -17853,65 +18647,655 @@ declare const rpcResult: {
|
|
|
17853
18647
|
DOT: string | number | null;
|
|
17854
18648
|
} | undefined;
|
|
17855
18649
|
}>>;
|
|
17856
|
-
|
|
17857
|
-
|
|
17858
|
-
|
|
17859
|
-
|
|
17860
|
-
|
|
17861
|
-
|
|
17862
|
-
|
|
17863
|
-
|
|
17864
|
-
|
|
17865
|
-
|
|
17866
|
-
|
|
17867
|
-
|
|
17868
|
-
|
|
17869
|
-
|
|
17870
|
-
|
|
17871
|
-
|
|
17872
|
-
|
|
17873
|
-
|
|
17874
|
-
|
|
17875
|
-
|
|
17876
|
-
|
|
17877
|
-
|
|
17878
|
-
|
|
17879
|
-
|
|
17880
|
-
|
|
17881
|
-
|
|
17882
|
-
|
|
17883
|
-
|
|
17884
|
-
|
|
17885
|
-
|
|
17886
|
-
|
|
17887
|
-
|
|
17888
|
-
|
|
17889
|
-
|
|
17890
|
-
|
|
17891
|
-
|
|
17892
|
-
|
|
17893
|
-
|
|
17894
|
-
|
|
17895
|
-
|
|
17896
|
-
|
|
17897
|
-
|
|
17898
|
-
|
|
17899
|
-
|
|
17900
|
-
|
|
17901
|
-
|
|
17902
|
-
|
|
17903
|
-
|
|
17904
|
-
|
|
17905
|
-
|
|
17906
|
-
|
|
17907
|
-
|
|
17908
|
-
|
|
18650
|
+
network_fees: z.ZodOptional<z.ZodObject<{
|
|
18651
|
+
regular_network_fee: z.ZodObject<{
|
|
18652
|
+
standard_rate_and_minimum: z.ZodObject<{
|
|
18653
|
+
rate: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
18654
|
+
minimum: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
18655
|
+
}, "strip", z.ZodTypeAny, {
|
|
18656
|
+
minimum: bigint;
|
|
18657
|
+
rate: bigint;
|
|
18658
|
+
}, {
|
|
18659
|
+
minimum: string | number;
|
|
18660
|
+
rate: string | number;
|
|
18661
|
+
}>;
|
|
18662
|
+
rates: z.ZodObject<{
|
|
18663
|
+
Bitcoin: z.ZodObject<{
|
|
18664
|
+
BTC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
18665
|
+
}, "strip", z.ZodTypeAny, {
|
|
18666
|
+
BTC: bigint;
|
|
18667
|
+
}, {
|
|
18668
|
+
BTC: string | number;
|
|
18669
|
+
}>;
|
|
18670
|
+
Ethereum: z.ZodObject<{
|
|
18671
|
+
ETH: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
18672
|
+
USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
18673
|
+
FLIP: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
18674
|
+
USDT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
18675
|
+
}, "strip", z.ZodTypeAny, {
|
|
18676
|
+
ETH: bigint;
|
|
18677
|
+
USDC: bigint;
|
|
18678
|
+
FLIP: bigint;
|
|
18679
|
+
USDT: bigint;
|
|
18680
|
+
}, {
|
|
18681
|
+
ETH: string | number;
|
|
18682
|
+
USDC: string | number;
|
|
18683
|
+
FLIP: string | number;
|
|
18684
|
+
USDT: string | number;
|
|
18685
|
+
}>;
|
|
18686
|
+
Polkadot: z.ZodObject<{
|
|
18687
|
+
DOT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
18688
|
+
}, "strip", z.ZodTypeAny, {
|
|
18689
|
+
DOT: bigint;
|
|
18690
|
+
}, {
|
|
18691
|
+
DOT: string | number;
|
|
18692
|
+
}>;
|
|
18693
|
+
Arbitrum: z.ZodObject<{
|
|
18694
|
+
ETH: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
18695
|
+
USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
18696
|
+
}, "strip", z.ZodTypeAny, {
|
|
18697
|
+
ETH: bigint;
|
|
18698
|
+
USDC: bigint;
|
|
18699
|
+
}, {
|
|
18700
|
+
ETH: string | number;
|
|
18701
|
+
USDC: string | number;
|
|
18702
|
+
}>;
|
|
18703
|
+
Solana: z.ZodObject<{
|
|
18704
|
+
SOL: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
18705
|
+
USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
18706
|
+
}, "strip", z.ZodTypeAny, {
|
|
18707
|
+
USDC: bigint;
|
|
18708
|
+
SOL: bigint;
|
|
18709
|
+
}, {
|
|
18710
|
+
USDC: string | number;
|
|
18711
|
+
SOL: string | number;
|
|
18712
|
+
}>;
|
|
18713
|
+
Assethub: z.ZodDefault<z.ZodObject<{
|
|
18714
|
+
DOT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
18715
|
+
USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
18716
|
+
USDT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
18717
|
+
}, "strip", z.ZodTypeAny, {
|
|
18718
|
+
USDC: bigint;
|
|
18719
|
+
USDT: bigint;
|
|
18720
|
+
DOT: bigint;
|
|
18721
|
+
}, {
|
|
18722
|
+
USDC: string | number;
|
|
18723
|
+
USDT: string | number;
|
|
18724
|
+
DOT: string | number;
|
|
18725
|
+
}>>;
|
|
18726
|
+
}, "strip", z.ZodTypeAny, {
|
|
18727
|
+
Bitcoin: {
|
|
18728
|
+
BTC: bigint;
|
|
18729
|
+
};
|
|
18730
|
+
Ethereum: {
|
|
18731
|
+
ETH: bigint;
|
|
18732
|
+
USDC: bigint;
|
|
18733
|
+
FLIP: bigint;
|
|
18734
|
+
USDT: bigint;
|
|
18735
|
+
};
|
|
18736
|
+
Arbitrum: {
|
|
18737
|
+
ETH: bigint;
|
|
18738
|
+
USDC: bigint;
|
|
18739
|
+
};
|
|
18740
|
+
Solana: {
|
|
18741
|
+
USDC: bigint;
|
|
18742
|
+
SOL: bigint;
|
|
18743
|
+
};
|
|
18744
|
+
Polkadot: {
|
|
18745
|
+
DOT: bigint;
|
|
18746
|
+
};
|
|
18747
|
+
Assethub: {
|
|
18748
|
+
USDC: bigint;
|
|
18749
|
+
USDT: bigint;
|
|
18750
|
+
DOT: bigint;
|
|
18751
|
+
};
|
|
18752
|
+
}, {
|
|
18753
|
+
Bitcoin: {
|
|
18754
|
+
BTC: string | number;
|
|
18755
|
+
};
|
|
18756
|
+
Ethereum: {
|
|
18757
|
+
ETH: string | number;
|
|
18758
|
+
USDC: string | number;
|
|
18759
|
+
FLIP: string | number;
|
|
18760
|
+
USDT: string | number;
|
|
18761
|
+
};
|
|
18762
|
+
Arbitrum: {
|
|
18763
|
+
ETH: string | number;
|
|
18764
|
+
USDC: string | number;
|
|
18765
|
+
};
|
|
18766
|
+
Solana: {
|
|
18767
|
+
USDC: string | number;
|
|
18768
|
+
SOL: string | number;
|
|
18769
|
+
};
|
|
18770
|
+
Polkadot: {
|
|
18771
|
+
DOT: string | number;
|
|
18772
|
+
};
|
|
18773
|
+
Assethub?: {
|
|
18774
|
+
USDC: string | number;
|
|
18775
|
+
USDT: string | number;
|
|
18776
|
+
DOT: string | number;
|
|
18777
|
+
} | undefined;
|
|
18778
|
+
}>;
|
|
18779
|
+
}, "strip", z.ZodTypeAny, {
|
|
18780
|
+
standard_rate_and_minimum: {
|
|
18781
|
+
minimum: bigint;
|
|
18782
|
+
rate: bigint;
|
|
18783
|
+
};
|
|
18784
|
+
rates: {
|
|
18785
|
+
Bitcoin: {
|
|
18786
|
+
BTC: bigint;
|
|
18787
|
+
};
|
|
18788
|
+
Ethereum: {
|
|
18789
|
+
ETH: bigint;
|
|
18790
|
+
USDC: bigint;
|
|
18791
|
+
FLIP: bigint;
|
|
18792
|
+
USDT: bigint;
|
|
18793
|
+
};
|
|
18794
|
+
Arbitrum: {
|
|
18795
|
+
ETH: bigint;
|
|
18796
|
+
USDC: bigint;
|
|
18797
|
+
};
|
|
18798
|
+
Solana: {
|
|
18799
|
+
USDC: bigint;
|
|
18800
|
+
SOL: bigint;
|
|
18801
|
+
};
|
|
18802
|
+
Polkadot: {
|
|
18803
|
+
DOT: bigint;
|
|
18804
|
+
};
|
|
18805
|
+
Assethub: {
|
|
18806
|
+
USDC: bigint;
|
|
18807
|
+
USDT: bigint;
|
|
18808
|
+
DOT: bigint;
|
|
18809
|
+
};
|
|
18810
|
+
};
|
|
18811
|
+
}, {
|
|
18812
|
+
standard_rate_and_minimum: {
|
|
18813
|
+
minimum: string | number;
|
|
18814
|
+
rate: string | number;
|
|
18815
|
+
};
|
|
18816
|
+
rates: {
|
|
18817
|
+
Bitcoin: {
|
|
18818
|
+
BTC: string | number;
|
|
18819
|
+
};
|
|
18820
|
+
Ethereum: {
|
|
18821
|
+
ETH: string | number;
|
|
18822
|
+
USDC: string | number;
|
|
18823
|
+
FLIP: string | number;
|
|
18824
|
+
USDT: string | number;
|
|
18825
|
+
};
|
|
18826
|
+
Arbitrum: {
|
|
18827
|
+
ETH: string | number;
|
|
18828
|
+
USDC: string | number;
|
|
18829
|
+
};
|
|
18830
|
+
Solana: {
|
|
18831
|
+
USDC: string | number;
|
|
18832
|
+
SOL: string | number;
|
|
18833
|
+
};
|
|
18834
|
+
Polkadot: {
|
|
18835
|
+
DOT: string | number;
|
|
18836
|
+
};
|
|
18837
|
+
Assethub?: {
|
|
18838
|
+
USDC: string | number;
|
|
18839
|
+
USDT: string | number;
|
|
18840
|
+
DOT: string | number;
|
|
18841
|
+
} | undefined;
|
|
18842
|
+
};
|
|
18843
|
+
}>;
|
|
18844
|
+
internal_swap_network_fee: z.ZodObject<{
|
|
18845
|
+
standard_rate_and_minimum: z.ZodObject<{
|
|
18846
|
+
rate: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
18847
|
+
minimum: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
18848
|
+
}, "strip", z.ZodTypeAny, {
|
|
18849
|
+
minimum: bigint;
|
|
18850
|
+
rate: bigint;
|
|
18851
|
+
}, {
|
|
18852
|
+
minimum: string | number;
|
|
18853
|
+
rate: string | number;
|
|
18854
|
+
}>;
|
|
18855
|
+
rates: z.ZodObject<{
|
|
18856
|
+
Bitcoin: z.ZodObject<{
|
|
18857
|
+
BTC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
18858
|
+
}, "strip", z.ZodTypeAny, {
|
|
18859
|
+
BTC: bigint;
|
|
18860
|
+
}, {
|
|
18861
|
+
BTC: string | number;
|
|
18862
|
+
}>;
|
|
18863
|
+
Ethereum: z.ZodObject<{
|
|
18864
|
+
ETH: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
18865
|
+
USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
18866
|
+
FLIP: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
18867
|
+
USDT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
18868
|
+
}, "strip", z.ZodTypeAny, {
|
|
18869
|
+
ETH: bigint;
|
|
18870
|
+
USDC: bigint;
|
|
18871
|
+
FLIP: bigint;
|
|
18872
|
+
USDT: bigint;
|
|
18873
|
+
}, {
|
|
18874
|
+
ETH: string | number;
|
|
18875
|
+
USDC: string | number;
|
|
18876
|
+
FLIP: string | number;
|
|
18877
|
+
USDT: string | number;
|
|
18878
|
+
}>;
|
|
18879
|
+
Polkadot: z.ZodObject<{
|
|
18880
|
+
DOT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
18881
|
+
}, "strip", z.ZodTypeAny, {
|
|
18882
|
+
DOT: bigint;
|
|
18883
|
+
}, {
|
|
18884
|
+
DOT: string | number;
|
|
18885
|
+
}>;
|
|
18886
|
+
Arbitrum: z.ZodObject<{
|
|
18887
|
+
ETH: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
18888
|
+
USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
18889
|
+
}, "strip", z.ZodTypeAny, {
|
|
18890
|
+
ETH: bigint;
|
|
18891
|
+
USDC: bigint;
|
|
18892
|
+
}, {
|
|
18893
|
+
ETH: string | number;
|
|
18894
|
+
USDC: string | number;
|
|
18895
|
+
}>;
|
|
18896
|
+
Solana: z.ZodObject<{
|
|
18897
|
+
SOL: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
18898
|
+
USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
18899
|
+
}, "strip", z.ZodTypeAny, {
|
|
18900
|
+
USDC: bigint;
|
|
18901
|
+
SOL: bigint;
|
|
18902
|
+
}, {
|
|
18903
|
+
USDC: string | number;
|
|
18904
|
+
SOL: string | number;
|
|
18905
|
+
}>;
|
|
18906
|
+
Assethub: z.ZodDefault<z.ZodObject<{
|
|
18907
|
+
DOT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
18908
|
+
USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
18909
|
+
USDT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
|
|
18910
|
+
}, "strip", z.ZodTypeAny, {
|
|
18911
|
+
USDC: bigint;
|
|
18912
|
+
USDT: bigint;
|
|
18913
|
+
DOT: bigint;
|
|
18914
|
+
}, {
|
|
18915
|
+
USDC: string | number;
|
|
18916
|
+
USDT: string | number;
|
|
18917
|
+
DOT: string | number;
|
|
18918
|
+
}>>;
|
|
18919
|
+
}, "strip", z.ZodTypeAny, {
|
|
18920
|
+
Bitcoin: {
|
|
18921
|
+
BTC: bigint;
|
|
18922
|
+
};
|
|
18923
|
+
Ethereum: {
|
|
18924
|
+
ETH: bigint;
|
|
18925
|
+
USDC: bigint;
|
|
18926
|
+
FLIP: bigint;
|
|
18927
|
+
USDT: bigint;
|
|
18928
|
+
};
|
|
18929
|
+
Arbitrum: {
|
|
18930
|
+
ETH: bigint;
|
|
18931
|
+
USDC: bigint;
|
|
18932
|
+
};
|
|
18933
|
+
Solana: {
|
|
18934
|
+
USDC: bigint;
|
|
18935
|
+
SOL: bigint;
|
|
18936
|
+
};
|
|
18937
|
+
Polkadot: {
|
|
18938
|
+
DOT: bigint;
|
|
18939
|
+
};
|
|
18940
|
+
Assethub: {
|
|
18941
|
+
USDC: bigint;
|
|
18942
|
+
USDT: bigint;
|
|
18943
|
+
DOT: bigint;
|
|
18944
|
+
};
|
|
18945
|
+
}, {
|
|
18946
|
+
Bitcoin: {
|
|
18947
|
+
BTC: string | number;
|
|
18948
|
+
};
|
|
18949
|
+
Ethereum: {
|
|
18950
|
+
ETH: string | number;
|
|
18951
|
+
USDC: string | number;
|
|
18952
|
+
FLIP: string | number;
|
|
18953
|
+
USDT: string | number;
|
|
18954
|
+
};
|
|
18955
|
+
Arbitrum: {
|
|
18956
|
+
ETH: string | number;
|
|
18957
|
+
USDC: string | number;
|
|
18958
|
+
};
|
|
18959
|
+
Solana: {
|
|
18960
|
+
USDC: string | number;
|
|
18961
|
+
SOL: string | number;
|
|
18962
|
+
};
|
|
18963
|
+
Polkadot: {
|
|
18964
|
+
DOT: string | number;
|
|
18965
|
+
};
|
|
18966
|
+
Assethub?: {
|
|
18967
|
+
USDC: string | number;
|
|
18968
|
+
USDT: string | number;
|
|
18969
|
+
DOT: string | number;
|
|
18970
|
+
} | undefined;
|
|
18971
|
+
}>;
|
|
18972
|
+
}, "strip", z.ZodTypeAny, {
|
|
18973
|
+
standard_rate_and_minimum: {
|
|
18974
|
+
minimum: bigint;
|
|
18975
|
+
rate: bigint;
|
|
18976
|
+
};
|
|
18977
|
+
rates: {
|
|
18978
|
+
Bitcoin: {
|
|
18979
|
+
BTC: bigint;
|
|
18980
|
+
};
|
|
18981
|
+
Ethereum: {
|
|
18982
|
+
ETH: bigint;
|
|
18983
|
+
USDC: bigint;
|
|
18984
|
+
FLIP: bigint;
|
|
18985
|
+
USDT: bigint;
|
|
18986
|
+
};
|
|
18987
|
+
Arbitrum: {
|
|
18988
|
+
ETH: bigint;
|
|
18989
|
+
USDC: bigint;
|
|
18990
|
+
};
|
|
18991
|
+
Solana: {
|
|
18992
|
+
USDC: bigint;
|
|
18993
|
+
SOL: bigint;
|
|
18994
|
+
};
|
|
18995
|
+
Polkadot: {
|
|
18996
|
+
DOT: bigint;
|
|
18997
|
+
};
|
|
18998
|
+
Assethub: {
|
|
18999
|
+
USDC: bigint;
|
|
19000
|
+
USDT: bigint;
|
|
19001
|
+
DOT: bigint;
|
|
19002
|
+
};
|
|
19003
|
+
};
|
|
19004
|
+
}, {
|
|
19005
|
+
standard_rate_and_minimum: {
|
|
19006
|
+
minimum: string | number;
|
|
19007
|
+
rate: string | number;
|
|
19008
|
+
};
|
|
19009
|
+
rates: {
|
|
19010
|
+
Bitcoin: {
|
|
19011
|
+
BTC: string | number;
|
|
19012
|
+
};
|
|
19013
|
+
Ethereum: {
|
|
19014
|
+
ETH: string | number;
|
|
19015
|
+
USDC: string | number;
|
|
19016
|
+
FLIP: string | number;
|
|
19017
|
+
USDT: string | number;
|
|
19018
|
+
};
|
|
19019
|
+
Arbitrum: {
|
|
19020
|
+
ETH: string | number;
|
|
19021
|
+
USDC: string | number;
|
|
19022
|
+
};
|
|
19023
|
+
Solana: {
|
|
19024
|
+
USDC: string | number;
|
|
19025
|
+
SOL: string | number;
|
|
19026
|
+
};
|
|
19027
|
+
Polkadot: {
|
|
19028
|
+
DOT: string | number;
|
|
19029
|
+
};
|
|
19030
|
+
Assethub?: {
|
|
19031
|
+
USDC: string | number;
|
|
19032
|
+
USDT: string | number;
|
|
19033
|
+
DOT: string | number;
|
|
19034
|
+
} | undefined;
|
|
19035
|
+
};
|
|
19036
|
+
}>;
|
|
19037
|
+
}, "strip", z.ZodTypeAny, {
|
|
19038
|
+
regular_network_fee: {
|
|
19039
|
+
standard_rate_and_minimum: {
|
|
19040
|
+
minimum: bigint;
|
|
19041
|
+
rate: bigint;
|
|
19042
|
+
};
|
|
19043
|
+
rates: {
|
|
19044
|
+
Bitcoin: {
|
|
19045
|
+
BTC: bigint;
|
|
19046
|
+
};
|
|
19047
|
+
Ethereum: {
|
|
19048
|
+
ETH: bigint;
|
|
19049
|
+
USDC: bigint;
|
|
19050
|
+
FLIP: bigint;
|
|
19051
|
+
USDT: bigint;
|
|
19052
|
+
};
|
|
19053
|
+
Arbitrum: {
|
|
19054
|
+
ETH: bigint;
|
|
19055
|
+
USDC: bigint;
|
|
19056
|
+
};
|
|
19057
|
+
Solana: {
|
|
19058
|
+
USDC: bigint;
|
|
19059
|
+
SOL: bigint;
|
|
19060
|
+
};
|
|
19061
|
+
Polkadot: {
|
|
19062
|
+
DOT: bigint;
|
|
19063
|
+
};
|
|
19064
|
+
Assethub: {
|
|
19065
|
+
USDC: bigint;
|
|
19066
|
+
USDT: bigint;
|
|
19067
|
+
DOT: bigint;
|
|
19068
|
+
};
|
|
19069
|
+
};
|
|
19070
|
+
};
|
|
19071
|
+
internal_swap_network_fee: {
|
|
19072
|
+
standard_rate_and_minimum: {
|
|
19073
|
+
minimum: bigint;
|
|
19074
|
+
rate: bigint;
|
|
19075
|
+
};
|
|
19076
|
+
rates: {
|
|
19077
|
+
Bitcoin: {
|
|
19078
|
+
BTC: bigint;
|
|
19079
|
+
};
|
|
19080
|
+
Ethereum: {
|
|
19081
|
+
ETH: bigint;
|
|
19082
|
+
USDC: bigint;
|
|
19083
|
+
FLIP: bigint;
|
|
19084
|
+
USDT: bigint;
|
|
19085
|
+
};
|
|
19086
|
+
Arbitrum: {
|
|
19087
|
+
ETH: bigint;
|
|
19088
|
+
USDC: bigint;
|
|
19089
|
+
};
|
|
19090
|
+
Solana: {
|
|
19091
|
+
USDC: bigint;
|
|
19092
|
+
SOL: bigint;
|
|
19093
|
+
};
|
|
19094
|
+
Polkadot: {
|
|
19095
|
+
DOT: bigint;
|
|
19096
|
+
};
|
|
19097
|
+
Assethub: {
|
|
19098
|
+
USDC: bigint;
|
|
19099
|
+
USDT: bigint;
|
|
19100
|
+
DOT: bigint;
|
|
19101
|
+
};
|
|
19102
|
+
};
|
|
19103
|
+
};
|
|
19104
|
+
}, {
|
|
19105
|
+
regular_network_fee: {
|
|
19106
|
+
standard_rate_and_minimum: {
|
|
19107
|
+
minimum: string | number;
|
|
19108
|
+
rate: string | number;
|
|
19109
|
+
};
|
|
19110
|
+
rates: {
|
|
19111
|
+
Bitcoin: {
|
|
19112
|
+
BTC: string | number;
|
|
19113
|
+
};
|
|
19114
|
+
Ethereum: {
|
|
19115
|
+
ETH: string | number;
|
|
19116
|
+
USDC: string | number;
|
|
19117
|
+
FLIP: string | number;
|
|
19118
|
+
USDT: string | number;
|
|
19119
|
+
};
|
|
19120
|
+
Arbitrum: {
|
|
19121
|
+
ETH: string | number;
|
|
19122
|
+
USDC: string | number;
|
|
19123
|
+
};
|
|
19124
|
+
Solana: {
|
|
19125
|
+
USDC: string | number;
|
|
19126
|
+
SOL: string | number;
|
|
19127
|
+
};
|
|
19128
|
+
Polkadot: {
|
|
19129
|
+
DOT: string | number;
|
|
19130
|
+
};
|
|
19131
|
+
Assethub?: {
|
|
19132
|
+
USDC: string | number;
|
|
19133
|
+
USDT: string | number;
|
|
19134
|
+
DOT: string | number;
|
|
19135
|
+
} | undefined;
|
|
19136
|
+
};
|
|
19137
|
+
};
|
|
19138
|
+
internal_swap_network_fee: {
|
|
19139
|
+
standard_rate_and_minimum: {
|
|
19140
|
+
minimum: string | number;
|
|
19141
|
+
rate: string | number;
|
|
19142
|
+
};
|
|
19143
|
+
rates: {
|
|
19144
|
+
Bitcoin: {
|
|
19145
|
+
BTC: string | number;
|
|
19146
|
+
};
|
|
19147
|
+
Ethereum: {
|
|
19148
|
+
ETH: string | number;
|
|
19149
|
+
USDC: string | number;
|
|
19150
|
+
FLIP: string | number;
|
|
19151
|
+
USDT: string | number;
|
|
19152
|
+
};
|
|
19153
|
+
Arbitrum: {
|
|
19154
|
+
ETH: string | number;
|
|
19155
|
+
USDC: string | number;
|
|
19156
|
+
};
|
|
19157
|
+
Solana: {
|
|
19158
|
+
USDC: string | number;
|
|
19159
|
+
SOL: string | number;
|
|
19160
|
+
};
|
|
19161
|
+
Polkadot: {
|
|
19162
|
+
DOT: string | number;
|
|
19163
|
+
};
|
|
19164
|
+
Assethub?: {
|
|
19165
|
+
USDC: string | number;
|
|
19166
|
+
USDT: string | number;
|
|
19167
|
+
DOT: string | number;
|
|
19168
|
+
} | undefined;
|
|
19169
|
+
};
|
|
19170
|
+
};
|
|
19171
|
+
}>>;
|
|
19172
|
+
}, "strip", z.ZodTypeAny, {
|
|
19173
|
+
maximum_swap_amounts: {
|
|
19174
|
+
Bitcoin: {
|
|
19175
|
+
BTC: bigint | null;
|
|
19176
|
+
};
|
|
19177
|
+
Ethereum: {
|
|
19178
|
+
ETH: bigint | null;
|
|
19179
|
+
USDC: bigint | null;
|
|
19180
|
+
FLIP: bigint | null;
|
|
19181
|
+
USDT: bigint | null;
|
|
19182
|
+
};
|
|
19183
|
+
Arbitrum: {
|
|
19184
|
+
ETH: bigint | null;
|
|
19185
|
+
USDC: bigint | null;
|
|
19186
|
+
};
|
|
19187
|
+
Solana: {
|
|
19188
|
+
USDC: bigint | null;
|
|
19189
|
+
SOL: bigint | null;
|
|
19190
|
+
};
|
|
19191
|
+
Polkadot: {
|
|
19192
|
+
DOT: bigint | null;
|
|
19193
|
+
};
|
|
19194
|
+
Assethub: {
|
|
19195
|
+
USDC: bigint | null;
|
|
19196
|
+
USDT: bigint | null;
|
|
19197
|
+
DOT: bigint | null;
|
|
19198
|
+
};
|
|
19199
|
+
};
|
|
19200
|
+
network_fee_hundredth_pips: number;
|
|
19201
|
+
swap_retry_delay_blocks?: number | undefined;
|
|
19202
|
+
max_swap_retry_duration_blocks?: number | undefined;
|
|
19203
|
+
max_swap_request_duration_blocks?: number | undefined;
|
|
19204
|
+
minimum_chunk_size?: {
|
|
19205
|
+
Bitcoin: {
|
|
19206
|
+
BTC: bigint | null;
|
|
19207
|
+
};
|
|
19208
|
+
Ethereum: {
|
|
19209
|
+
ETH: bigint | null;
|
|
19210
|
+
USDC: bigint | null;
|
|
19211
|
+
FLIP: bigint | null;
|
|
19212
|
+
USDT: bigint | null;
|
|
19213
|
+
};
|
|
19214
|
+
Arbitrum: {
|
|
19215
|
+
ETH: bigint | null;
|
|
19216
|
+
USDC: bigint | null;
|
|
19217
|
+
};
|
|
19218
|
+
Solana: {
|
|
19219
|
+
USDC: bigint | null;
|
|
19220
|
+
SOL: bigint | null;
|
|
19221
|
+
};
|
|
19222
|
+
Polkadot: {
|
|
19223
|
+
DOT: bigint | null;
|
|
19224
|
+
};
|
|
17909
19225
|
Assethub: {
|
|
17910
19226
|
USDC: bigint | null;
|
|
17911
19227
|
USDT: bigint | null;
|
|
17912
19228
|
DOT: bigint | null;
|
|
17913
19229
|
};
|
|
17914
19230
|
} | undefined;
|
|
19231
|
+
network_fees?: {
|
|
19232
|
+
regular_network_fee: {
|
|
19233
|
+
standard_rate_and_minimum: {
|
|
19234
|
+
minimum: bigint;
|
|
19235
|
+
rate: bigint;
|
|
19236
|
+
};
|
|
19237
|
+
rates: {
|
|
19238
|
+
Bitcoin: {
|
|
19239
|
+
BTC: bigint;
|
|
19240
|
+
};
|
|
19241
|
+
Ethereum: {
|
|
19242
|
+
ETH: bigint;
|
|
19243
|
+
USDC: bigint;
|
|
19244
|
+
FLIP: bigint;
|
|
19245
|
+
USDT: bigint;
|
|
19246
|
+
};
|
|
19247
|
+
Arbitrum: {
|
|
19248
|
+
ETH: bigint;
|
|
19249
|
+
USDC: bigint;
|
|
19250
|
+
};
|
|
19251
|
+
Solana: {
|
|
19252
|
+
USDC: bigint;
|
|
19253
|
+
SOL: bigint;
|
|
19254
|
+
};
|
|
19255
|
+
Polkadot: {
|
|
19256
|
+
DOT: bigint;
|
|
19257
|
+
};
|
|
19258
|
+
Assethub: {
|
|
19259
|
+
USDC: bigint;
|
|
19260
|
+
USDT: bigint;
|
|
19261
|
+
DOT: bigint;
|
|
19262
|
+
};
|
|
19263
|
+
};
|
|
19264
|
+
};
|
|
19265
|
+
internal_swap_network_fee: {
|
|
19266
|
+
standard_rate_and_minimum: {
|
|
19267
|
+
minimum: bigint;
|
|
19268
|
+
rate: bigint;
|
|
19269
|
+
};
|
|
19270
|
+
rates: {
|
|
19271
|
+
Bitcoin: {
|
|
19272
|
+
BTC: bigint;
|
|
19273
|
+
};
|
|
19274
|
+
Ethereum: {
|
|
19275
|
+
ETH: bigint;
|
|
19276
|
+
USDC: bigint;
|
|
19277
|
+
FLIP: bigint;
|
|
19278
|
+
USDT: bigint;
|
|
19279
|
+
};
|
|
19280
|
+
Arbitrum: {
|
|
19281
|
+
ETH: bigint;
|
|
19282
|
+
USDC: bigint;
|
|
19283
|
+
};
|
|
19284
|
+
Solana: {
|
|
19285
|
+
USDC: bigint;
|
|
19286
|
+
SOL: bigint;
|
|
19287
|
+
};
|
|
19288
|
+
Polkadot: {
|
|
19289
|
+
DOT: bigint;
|
|
19290
|
+
};
|
|
19291
|
+
Assethub: {
|
|
19292
|
+
USDC: bigint;
|
|
19293
|
+
USDT: bigint;
|
|
19294
|
+
DOT: bigint;
|
|
19295
|
+
};
|
|
19296
|
+
};
|
|
19297
|
+
};
|
|
19298
|
+
} | undefined;
|
|
17915
19299
|
}, {
|
|
17916
19300
|
maximum_swap_amounts: {
|
|
17917
19301
|
Bitcoin: {
|
|
@@ -17971,6 +19355,74 @@ declare const rpcResult: {
|
|
|
17971
19355
|
DOT: string | number | null;
|
|
17972
19356
|
} | undefined;
|
|
17973
19357
|
} | undefined;
|
|
19358
|
+
network_fees?: {
|
|
19359
|
+
regular_network_fee: {
|
|
19360
|
+
standard_rate_and_minimum: {
|
|
19361
|
+
minimum: string | number;
|
|
19362
|
+
rate: string | number;
|
|
19363
|
+
};
|
|
19364
|
+
rates: {
|
|
19365
|
+
Bitcoin: {
|
|
19366
|
+
BTC: string | number;
|
|
19367
|
+
};
|
|
19368
|
+
Ethereum: {
|
|
19369
|
+
ETH: string | number;
|
|
19370
|
+
USDC: string | number;
|
|
19371
|
+
FLIP: string | number;
|
|
19372
|
+
USDT: string | number;
|
|
19373
|
+
};
|
|
19374
|
+
Arbitrum: {
|
|
19375
|
+
ETH: string | number;
|
|
19376
|
+
USDC: string | number;
|
|
19377
|
+
};
|
|
19378
|
+
Solana: {
|
|
19379
|
+
USDC: string | number;
|
|
19380
|
+
SOL: string | number;
|
|
19381
|
+
};
|
|
19382
|
+
Polkadot: {
|
|
19383
|
+
DOT: string | number;
|
|
19384
|
+
};
|
|
19385
|
+
Assethub?: {
|
|
19386
|
+
USDC: string | number;
|
|
19387
|
+
USDT: string | number;
|
|
19388
|
+
DOT: string | number;
|
|
19389
|
+
} | undefined;
|
|
19390
|
+
};
|
|
19391
|
+
};
|
|
19392
|
+
internal_swap_network_fee: {
|
|
19393
|
+
standard_rate_and_minimum: {
|
|
19394
|
+
minimum: string | number;
|
|
19395
|
+
rate: string | number;
|
|
19396
|
+
};
|
|
19397
|
+
rates: {
|
|
19398
|
+
Bitcoin: {
|
|
19399
|
+
BTC: string | number;
|
|
19400
|
+
};
|
|
19401
|
+
Ethereum: {
|
|
19402
|
+
ETH: string | number;
|
|
19403
|
+
USDC: string | number;
|
|
19404
|
+
FLIP: string | number;
|
|
19405
|
+
USDT: string | number;
|
|
19406
|
+
};
|
|
19407
|
+
Arbitrum: {
|
|
19408
|
+
ETH: string | number;
|
|
19409
|
+
USDC: string | number;
|
|
19410
|
+
};
|
|
19411
|
+
Solana: {
|
|
19412
|
+
USDC: string | number;
|
|
19413
|
+
SOL: string | number;
|
|
19414
|
+
};
|
|
19415
|
+
Polkadot: {
|
|
19416
|
+
DOT: string | number;
|
|
19417
|
+
};
|
|
19418
|
+
Assethub?: {
|
|
19419
|
+
USDC: string | number;
|
|
19420
|
+
USDT: string | number;
|
|
19421
|
+
DOT: string | number;
|
|
19422
|
+
} | undefined;
|
|
19423
|
+
};
|
|
19424
|
+
};
|
|
19425
|
+
} | undefined;
|
|
17974
19426
|
}>;
|
|
17975
19427
|
readonly chain_getBlockHash: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
17976
19428
|
readonly cf_boost_pool_details: z.ZodArray<z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
|
|
@@ -19821,7 +21273,7 @@ declare const rpcResult: {
|
|
|
19821
21273
|
asset: "USDC";
|
|
19822
21274
|
};
|
|
19823
21275
|
}>, "many">;
|
|
19824
|
-
readonly cf_safe_mode_statuses: z.ZodObject<{
|
|
21276
|
+
readonly cf_safe_mode_statuses: z.ZodUnion<[z.ZodObject<{
|
|
19825
21277
|
emissions: z.ZodObject<{
|
|
19826
21278
|
emissions_sync_enabled: z.ZodBoolean;
|
|
19827
21279
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -19975,13 +21427,14 @@ declare const rpcResult: {
|
|
|
19975
21427
|
}, {
|
|
19976
21428
|
retry_enabled: boolean;
|
|
19977
21429
|
}>;
|
|
19978
|
-
broadcast_assethub: z.
|
|
21430
|
+
broadcast_assethub: z.ZodObject<{
|
|
19979
21431
|
retry_enabled: z.ZodBoolean;
|
|
19980
21432
|
}, "strip", z.ZodTypeAny, {
|
|
19981
21433
|
retry_enabled: boolean;
|
|
19982
21434
|
}, {
|
|
19983
21435
|
retry_enabled: boolean;
|
|
19984
|
-
}
|
|
21436
|
+
}>;
|
|
21437
|
+
} & {
|
|
19985
21438
|
ingress_egress_ethereum: z.ZodObject<{
|
|
19986
21439
|
boost_deposits_enabled: z.ZodBoolean;
|
|
19987
21440
|
add_boost_funds_enabled: z.ZodBoolean;
|
|
@@ -20062,7 +21515,7 @@ declare const rpcResult: {
|
|
|
20062
21515
|
stop_boosting_enabled: boolean;
|
|
20063
21516
|
deposits_enabled: boolean;
|
|
20064
21517
|
}>;
|
|
20065
|
-
ingress_egress_assethub: z.
|
|
21518
|
+
ingress_egress_assethub: z.ZodObject<{
|
|
20066
21519
|
boost_deposits_enabled: z.ZodBoolean;
|
|
20067
21520
|
add_boost_funds_enabled: z.ZodBoolean;
|
|
20068
21521
|
stop_boosting_enabled: z.ZodBoolean;
|
|
@@ -20077,7 +21530,7 @@ declare const rpcResult: {
|
|
|
20077
21530
|
add_boost_funds_enabled: boolean;
|
|
20078
21531
|
stop_boosting_enabled: boolean;
|
|
20079
21532
|
deposits_enabled: boolean;
|
|
20080
|
-
}
|
|
21533
|
+
}>;
|
|
20081
21534
|
}, "strip", z.ZodTypeAny, {
|
|
20082
21535
|
asset_balances: {
|
|
20083
21536
|
reconciliation_enabled: boolean;
|
|
@@ -20240,6 +21693,9 @@ declare const rpcResult: {
|
|
|
20240
21693
|
broadcast_solana: {
|
|
20241
21694
|
retry_enabled: boolean;
|
|
20242
21695
|
};
|
|
21696
|
+
broadcast_assethub: {
|
|
21697
|
+
retry_enabled: boolean;
|
|
21698
|
+
};
|
|
20243
21699
|
ingress_egress_ethereum: {
|
|
20244
21700
|
boost_deposits_enabled: boolean;
|
|
20245
21701
|
add_boost_funds_enabled: boolean;
|
|
@@ -20270,21 +21726,440 @@ declare const rpcResult: {
|
|
|
20270
21726
|
stop_boosting_enabled: boolean;
|
|
20271
21727
|
deposits_enabled: boolean;
|
|
20272
21728
|
};
|
|
20273
|
-
|
|
20274
|
-
strategy_updates_enabled: boolean;
|
|
20275
|
-
strategy_closure_enabled: boolean;
|
|
20276
|
-
strategy_execution_enabled: boolean;
|
|
20277
|
-
} | undefined;
|
|
20278
|
-
broadcast_assethub?: {
|
|
20279
|
-
retry_enabled: boolean;
|
|
20280
|
-
} | undefined;
|
|
20281
|
-
ingress_egress_assethub?: {
|
|
21729
|
+
ingress_egress_assethub: {
|
|
20282
21730
|
boost_deposits_enabled: boolean;
|
|
20283
21731
|
add_boost_funds_enabled: boolean;
|
|
20284
21732
|
stop_boosting_enabled: boolean;
|
|
20285
21733
|
deposits_enabled: boolean;
|
|
21734
|
+
};
|
|
21735
|
+
trading_strategies?: {
|
|
21736
|
+
strategy_updates_enabled: boolean;
|
|
21737
|
+
strategy_closure_enabled: boolean;
|
|
21738
|
+
strategy_execution_enabled: boolean;
|
|
20286
21739
|
} | undefined;
|
|
20287
|
-
}
|
|
21740
|
+
}>, z.ZodObject<{
|
|
21741
|
+
emissions: z.ZodObject<{
|
|
21742
|
+
emissions_sync_enabled: z.ZodBoolean;
|
|
21743
|
+
}, "strip", z.ZodTypeAny, {
|
|
21744
|
+
emissions_sync_enabled: boolean;
|
|
21745
|
+
}, {
|
|
21746
|
+
emissions_sync_enabled: boolean;
|
|
21747
|
+
}>;
|
|
21748
|
+
funding: z.ZodObject<{
|
|
21749
|
+
redeem_enabled: z.ZodBoolean;
|
|
21750
|
+
}, "strip", z.ZodTypeAny, {
|
|
21751
|
+
redeem_enabled: boolean;
|
|
21752
|
+
}, {
|
|
21753
|
+
redeem_enabled: boolean;
|
|
21754
|
+
}>;
|
|
21755
|
+
swapping: z.ZodObject<{
|
|
21756
|
+
swaps_enabled: z.ZodBoolean;
|
|
21757
|
+
withdrawals_enabled: z.ZodBoolean;
|
|
21758
|
+
broker_registration_enabled: z.ZodBoolean;
|
|
21759
|
+
}, "strip", z.ZodTypeAny, {
|
|
21760
|
+
swaps_enabled: boolean;
|
|
21761
|
+
withdrawals_enabled: boolean;
|
|
21762
|
+
broker_registration_enabled: boolean;
|
|
21763
|
+
}, {
|
|
21764
|
+
swaps_enabled: boolean;
|
|
21765
|
+
withdrawals_enabled: boolean;
|
|
21766
|
+
broker_registration_enabled: boolean;
|
|
21767
|
+
}>;
|
|
21768
|
+
liquidity_provider: z.ZodObject<{
|
|
21769
|
+
deposit_enabled: z.ZodBoolean;
|
|
21770
|
+
withdrawal_enabled: z.ZodBoolean;
|
|
21771
|
+
internal_swaps_enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
21772
|
+
}, "strip", z.ZodTypeAny, {
|
|
21773
|
+
deposit_enabled: boolean;
|
|
21774
|
+
withdrawal_enabled: boolean;
|
|
21775
|
+
internal_swaps_enabled: boolean;
|
|
21776
|
+
}, {
|
|
21777
|
+
deposit_enabled: boolean;
|
|
21778
|
+
withdrawal_enabled: boolean;
|
|
21779
|
+
internal_swaps_enabled?: boolean | undefined;
|
|
21780
|
+
}>;
|
|
21781
|
+
validator: z.ZodObject<{
|
|
21782
|
+
authority_rotation_enabled: z.ZodBoolean;
|
|
21783
|
+
start_bidding_enabled: z.ZodBoolean;
|
|
21784
|
+
stop_bidding_enabled: z.ZodBoolean;
|
|
21785
|
+
}, "strip", z.ZodTypeAny, {
|
|
21786
|
+
authority_rotation_enabled: boolean;
|
|
21787
|
+
start_bidding_enabled: boolean;
|
|
21788
|
+
stop_bidding_enabled: boolean;
|
|
21789
|
+
}, {
|
|
21790
|
+
authority_rotation_enabled: boolean;
|
|
21791
|
+
start_bidding_enabled: boolean;
|
|
21792
|
+
stop_bidding_enabled: boolean;
|
|
21793
|
+
}>;
|
|
21794
|
+
pools: z.ZodObject<{
|
|
21795
|
+
range_order_update_enabled: z.ZodBoolean;
|
|
21796
|
+
limit_order_update_enabled: z.ZodBoolean;
|
|
21797
|
+
}, "strip", z.ZodTypeAny, {
|
|
21798
|
+
range_order_update_enabled: boolean;
|
|
21799
|
+
limit_order_update_enabled: boolean;
|
|
21800
|
+
}, {
|
|
21801
|
+
range_order_update_enabled: boolean;
|
|
21802
|
+
limit_order_update_enabled: boolean;
|
|
21803
|
+
}>;
|
|
21804
|
+
trading_strategies: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
21805
|
+
strategy_updates_enabled: z.ZodBoolean;
|
|
21806
|
+
strategy_closure_enabled: z.ZodBoolean;
|
|
21807
|
+
strategy_execution_enabled: z.ZodBoolean;
|
|
21808
|
+
}, "strip", z.ZodTypeAny, {
|
|
21809
|
+
strategy_updates_enabled: boolean;
|
|
21810
|
+
strategy_closure_enabled: boolean;
|
|
21811
|
+
strategy_execution_enabled: boolean;
|
|
21812
|
+
}, {
|
|
21813
|
+
strategy_updates_enabled: boolean;
|
|
21814
|
+
strategy_closure_enabled: boolean;
|
|
21815
|
+
strategy_execution_enabled: boolean;
|
|
21816
|
+
}>>>;
|
|
21817
|
+
reputation: z.ZodObject<{
|
|
21818
|
+
reporting_enabled: z.ZodBoolean;
|
|
21819
|
+
}, "strip", z.ZodTypeAny, {
|
|
21820
|
+
reporting_enabled: boolean;
|
|
21821
|
+
}, {
|
|
21822
|
+
reporting_enabled: boolean;
|
|
21823
|
+
}>;
|
|
21824
|
+
asset_balances: z.ZodObject<{
|
|
21825
|
+
reconciliation_enabled: z.ZodBoolean;
|
|
21826
|
+
}, "strip", z.ZodTypeAny, {
|
|
21827
|
+
reconciliation_enabled: boolean;
|
|
21828
|
+
}, {
|
|
21829
|
+
reconciliation_enabled: boolean;
|
|
21830
|
+
}>;
|
|
21831
|
+
threshold_signature_evm: z.ZodObject<{
|
|
21832
|
+
slashing_enabled: z.ZodBoolean;
|
|
21833
|
+
}, "strip", z.ZodTypeAny, {
|
|
21834
|
+
slashing_enabled: boolean;
|
|
21835
|
+
}, {
|
|
21836
|
+
slashing_enabled: boolean;
|
|
21837
|
+
}>;
|
|
21838
|
+
threshold_signature_bitcoin: z.ZodObject<{
|
|
21839
|
+
slashing_enabled: z.ZodBoolean;
|
|
21840
|
+
}, "strip", z.ZodTypeAny, {
|
|
21841
|
+
slashing_enabled: boolean;
|
|
21842
|
+
}, {
|
|
21843
|
+
slashing_enabled: boolean;
|
|
21844
|
+
}>;
|
|
21845
|
+
threshold_signature_polkadot: z.ZodObject<{
|
|
21846
|
+
slashing_enabled: z.ZodBoolean;
|
|
21847
|
+
}, "strip", z.ZodTypeAny, {
|
|
21848
|
+
slashing_enabled: boolean;
|
|
21849
|
+
}, {
|
|
21850
|
+
slashing_enabled: boolean;
|
|
21851
|
+
}>;
|
|
21852
|
+
threshold_signature_solana: z.ZodObject<{
|
|
21853
|
+
slashing_enabled: z.ZodBoolean;
|
|
21854
|
+
}, "strip", z.ZodTypeAny, {
|
|
21855
|
+
slashing_enabled: boolean;
|
|
21856
|
+
}, {
|
|
21857
|
+
slashing_enabled: boolean;
|
|
21858
|
+
}>;
|
|
21859
|
+
broadcast_ethereum: z.ZodObject<{
|
|
21860
|
+
retry_enabled: z.ZodBoolean;
|
|
21861
|
+
}, "strip", z.ZodTypeAny, {
|
|
21862
|
+
retry_enabled: boolean;
|
|
21863
|
+
}, {
|
|
21864
|
+
retry_enabled: boolean;
|
|
21865
|
+
}>;
|
|
21866
|
+
broadcast_bitcoin: z.ZodObject<{
|
|
21867
|
+
retry_enabled: z.ZodBoolean;
|
|
21868
|
+
}, "strip", z.ZodTypeAny, {
|
|
21869
|
+
retry_enabled: boolean;
|
|
21870
|
+
}, {
|
|
21871
|
+
retry_enabled: boolean;
|
|
21872
|
+
}>;
|
|
21873
|
+
broadcast_polkadot: z.ZodObject<{
|
|
21874
|
+
retry_enabled: z.ZodBoolean;
|
|
21875
|
+
}, "strip", z.ZodTypeAny, {
|
|
21876
|
+
retry_enabled: boolean;
|
|
21877
|
+
}, {
|
|
21878
|
+
retry_enabled: boolean;
|
|
21879
|
+
}>;
|
|
21880
|
+
broadcast_arbitrum: z.ZodObject<{
|
|
21881
|
+
retry_enabled: z.ZodBoolean;
|
|
21882
|
+
}, "strip", z.ZodTypeAny, {
|
|
21883
|
+
retry_enabled: boolean;
|
|
21884
|
+
}, {
|
|
21885
|
+
retry_enabled: boolean;
|
|
21886
|
+
}>;
|
|
21887
|
+
broadcast_solana: z.ZodObject<{
|
|
21888
|
+
retry_enabled: z.ZodBoolean;
|
|
21889
|
+
}, "strip", z.ZodTypeAny, {
|
|
21890
|
+
retry_enabled: boolean;
|
|
21891
|
+
}, {
|
|
21892
|
+
retry_enabled: boolean;
|
|
21893
|
+
}>;
|
|
21894
|
+
broadcast_assethub: z.ZodObject<{
|
|
21895
|
+
retry_enabled: z.ZodBoolean;
|
|
21896
|
+
}, "strip", z.ZodTypeAny, {
|
|
21897
|
+
retry_enabled: boolean;
|
|
21898
|
+
}, {
|
|
21899
|
+
retry_enabled: boolean;
|
|
21900
|
+
}>;
|
|
21901
|
+
} & {
|
|
21902
|
+
lending_pools: z.ZodObject<{
|
|
21903
|
+
add_boost_funds_enabled: z.ZodBoolean;
|
|
21904
|
+
stop_boosting_enabled: z.ZodBoolean;
|
|
21905
|
+
}, "strip", z.ZodTypeAny, {
|
|
21906
|
+
add_boost_funds_enabled: boolean;
|
|
21907
|
+
stop_boosting_enabled: boolean;
|
|
21908
|
+
}, {
|
|
21909
|
+
add_boost_funds_enabled: boolean;
|
|
21910
|
+
stop_boosting_enabled: boolean;
|
|
21911
|
+
}>;
|
|
21912
|
+
ingress_egress_ethereum: z.ZodObject<{
|
|
21913
|
+
boost_deposits_enabled: z.ZodBoolean;
|
|
21914
|
+
deposits_enabled: z.ZodBoolean;
|
|
21915
|
+
}, "strip", z.ZodTypeAny, {
|
|
21916
|
+
boost_deposits_enabled: boolean;
|
|
21917
|
+
deposits_enabled: boolean;
|
|
21918
|
+
}, {
|
|
21919
|
+
boost_deposits_enabled: boolean;
|
|
21920
|
+
deposits_enabled: boolean;
|
|
21921
|
+
}>;
|
|
21922
|
+
ingress_egress_bitcoin: z.ZodObject<{
|
|
21923
|
+
boost_deposits_enabled: z.ZodBoolean;
|
|
21924
|
+
deposits_enabled: z.ZodBoolean;
|
|
21925
|
+
}, "strip", z.ZodTypeAny, {
|
|
21926
|
+
boost_deposits_enabled: boolean;
|
|
21927
|
+
deposits_enabled: boolean;
|
|
21928
|
+
}, {
|
|
21929
|
+
boost_deposits_enabled: boolean;
|
|
21930
|
+
deposits_enabled: boolean;
|
|
21931
|
+
}>;
|
|
21932
|
+
ingress_egress_polkadot: z.ZodObject<{
|
|
21933
|
+
boost_deposits_enabled: z.ZodBoolean;
|
|
21934
|
+
deposits_enabled: z.ZodBoolean;
|
|
21935
|
+
}, "strip", z.ZodTypeAny, {
|
|
21936
|
+
boost_deposits_enabled: boolean;
|
|
21937
|
+
deposits_enabled: boolean;
|
|
21938
|
+
}, {
|
|
21939
|
+
boost_deposits_enabled: boolean;
|
|
21940
|
+
deposits_enabled: boolean;
|
|
21941
|
+
}>;
|
|
21942
|
+
ingress_egress_arbitrum: z.ZodObject<{
|
|
21943
|
+
boost_deposits_enabled: z.ZodBoolean;
|
|
21944
|
+
deposits_enabled: z.ZodBoolean;
|
|
21945
|
+
}, "strip", z.ZodTypeAny, {
|
|
21946
|
+
boost_deposits_enabled: boolean;
|
|
21947
|
+
deposits_enabled: boolean;
|
|
21948
|
+
}, {
|
|
21949
|
+
boost_deposits_enabled: boolean;
|
|
21950
|
+
deposits_enabled: boolean;
|
|
21951
|
+
}>;
|
|
21952
|
+
ingress_egress_solana: z.ZodObject<{
|
|
21953
|
+
boost_deposits_enabled: z.ZodBoolean;
|
|
21954
|
+
deposits_enabled: z.ZodBoolean;
|
|
21955
|
+
}, "strip", z.ZodTypeAny, {
|
|
21956
|
+
boost_deposits_enabled: boolean;
|
|
21957
|
+
deposits_enabled: boolean;
|
|
21958
|
+
}, {
|
|
21959
|
+
boost_deposits_enabled: boolean;
|
|
21960
|
+
deposits_enabled: boolean;
|
|
21961
|
+
}>;
|
|
21962
|
+
ingress_egress_assethub: z.ZodObject<{
|
|
21963
|
+
boost_deposits_enabled: z.ZodBoolean;
|
|
21964
|
+
deposits_enabled: z.ZodBoolean;
|
|
21965
|
+
}, "strip", z.ZodTypeAny, {
|
|
21966
|
+
boost_deposits_enabled: boolean;
|
|
21967
|
+
deposits_enabled: boolean;
|
|
21968
|
+
}, {
|
|
21969
|
+
boost_deposits_enabled: boolean;
|
|
21970
|
+
deposits_enabled: boolean;
|
|
21971
|
+
}>;
|
|
21972
|
+
}, "strip", z.ZodTypeAny, {
|
|
21973
|
+
asset_balances: {
|
|
21974
|
+
reconciliation_enabled: boolean;
|
|
21975
|
+
};
|
|
21976
|
+
liquidity_provider: {
|
|
21977
|
+
deposit_enabled: boolean;
|
|
21978
|
+
withdrawal_enabled: boolean;
|
|
21979
|
+
internal_swaps_enabled: boolean;
|
|
21980
|
+
};
|
|
21981
|
+
validator: {
|
|
21982
|
+
authority_rotation_enabled: boolean;
|
|
21983
|
+
start_bidding_enabled: boolean;
|
|
21984
|
+
stop_bidding_enabled: boolean;
|
|
21985
|
+
};
|
|
21986
|
+
swapping: {
|
|
21987
|
+
swaps_enabled: boolean;
|
|
21988
|
+
withdrawals_enabled: boolean;
|
|
21989
|
+
broker_registration_enabled: boolean;
|
|
21990
|
+
};
|
|
21991
|
+
funding: {
|
|
21992
|
+
redeem_enabled: boolean;
|
|
21993
|
+
};
|
|
21994
|
+
pools: {
|
|
21995
|
+
range_order_update_enabled: boolean;
|
|
21996
|
+
limit_order_update_enabled: boolean;
|
|
21997
|
+
};
|
|
21998
|
+
emissions: {
|
|
21999
|
+
emissions_sync_enabled: boolean;
|
|
22000
|
+
};
|
|
22001
|
+
trading_strategies: {
|
|
22002
|
+
strategy_updates_enabled: boolean;
|
|
22003
|
+
strategy_closure_enabled: boolean;
|
|
22004
|
+
strategy_execution_enabled: boolean;
|
|
22005
|
+
};
|
|
22006
|
+
reputation: {
|
|
22007
|
+
reporting_enabled: boolean;
|
|
22008
|
+
};
|
|
22009
|
+
threshold_signature_evm: {
|
|
22010
|
+
slashing_enabled: boolean;
|
|
22011
|
+
};
|
|
22012
|
+
threshold_signature_bitcoin: {
|
|
22013
|
+
slashing_enabled: boolean;
|
|
22014
|
+
};
|
|
22015
|
+
threshold_signature_polkadot: {
|
|
22016
|
+
slashing_enabled: boolean;
|
|
22017
|
+
};
|
|
22018
|
+
threshold_signature_solana: {
|
|
22019
|
+
slashing_enabled: boolean;
|
|
22020
|
+
};
|
|
22021
|
+
broadcast_ethereum: {
|
|
22022
|
+
retry_enabled: boolean;
|
|
22023
|
+
};
|
|
22024
|
+
broadcast_bitcoin: {
|
|
22025
|
+
retry_enabled: boolean;
|
|
22026
|
+
};
|
|
22027
|
+
broadcast_polkadot: {
|
|
22028
|
+
retry_enabled: boolean;
|
|
22029
|
+
};
|
|
22030
|
+
broadcast_arbitrum: {
|
|
22031
|
+
retry_enabled: boolean;
|
|
22032
|
+
};
|
|
22033
|
+
broadcast_solana: {
|
|
22034
|
+
retry_enabled: boolean;
|
|
22035
|
+
};
|
|
22036
|
+
broadcast_assethub: {
|
|
22037
|
+
retry_enabled: boolean;
|
|
22038
|
+
};
|
|
22039
|
+
ingress_egress_ethereum: {
|
|
22040
|
+
boost_deposits_enabled: boolean;
|
|
22041
|
+
deposits_enabled: boolean;
|
|
22042
|
+
};
|
|
22043
|
+
ingress_egress_bitcoin: {
|
|
22044
|
+
boost_deposits_enabled: boolean;
|
|
22045
|
+
deposits_enabled: boolean;
|
|
22046
|
+
};
|
|
22047
|
+
ingress_egress_polkadot: {
|
|
22048
|
+
boost_deposits_enabled: boolean;
|
|
22049
|
+
deposits_enabled: boolean;
|
|
22050
|
+
};
|
|
22051
|
+
ingress_egress_arbitrum: {
|
|
22052
|
+
boost_deposits_enabled: boolean;
|
|
22053
|
+
deposits_enabled: boolean;
|
|
22054
|
+
};
|
|
22055
|
+
ingress_egress_solana: {
|
|
22056
|
+
boost_deposits_enabled: boolean;
|
|
22057
|
+
deposits_enabled: boolean;
|
|
22058
|
+
};
|
|
22059
|
+
ingress_egress_assethub: {
|
|
22060
|
+
boost_deposits_enabled: boolean;
|
|
22061
|
+
deposits_enabled: boolean;
|
|
22062
|
+
};
|
|
22063
|
+
lending_pools: {
|
|
22064
|
+
add_boost_funds_enabled: boolean;
|
|
22065
|
+
stop_boosting_enabled: boolean;
|
|
22066
|
+
};
|
|
22067
|
+
}, {
|
|
22068
|
+
asset_balances: {
|
|
22069
|
+
reconciliation_enabled: boolean;
|
|
22070
|
+
};
|
|
22071
|
+
liquidity_provider: {
|
|
22072
|
+
deposit_enabled: boolean;
|
|
22073
|
+
withdrawal_enabled: boolean;
|
|
22074
|
+
internal_swaps_enabled?: boolean | undefined;
|
|
22075
|
+
};
|
|
22076
|
+
validator: {
|
|
22077
|
+
authority_rotation_enabled: boolean;
|
|
22078
|
+
start_bidding_enabled: boolean;
|
|
22079
|
+
stop_bidding_enabled: boolean;
|
|
22080
|
+
};
|
|
22081
|
+
swapping: {
|
|
22082
|
+
swaps_enabled: boolean;
|
|
22083
|
+
withdrawals_enabled: boolean;
|
|
22084
|
+
broker_registration_enabled: boolean;
|
|
22085
|
+
};
|
|
22086
|
+
funding: {
|
|
22087
|
+
redeem_enabled: boolean;
|
|
22088
|
+
};
|
|
22089
|
+
pools: {
|
|
22090
|
+
range_order_update_enabled: boolean;
|
|
22091
|
+
limit_order_update_enabled: boolean;
|
|
22092
|
+
};
|
|
22093
|
+
emissions: {
|
|
22094
|
+
emissions_sync_enabled: boolean;
|
|
22095
|
+
};
|
|
22096
|
+
reputation: {
|
|
22097
|
+
reporting_enabled: boolean;
|
|
22098
|
+
};
|
|
22099
|
+
threshold_signature_evm: {
|
|
22100
|
+
slashing_enabled: boolean;
|
|
22101
|
+
};
|
|
22102
|
+
threshold_signature_bitcoin: {
|
|
22103
|
+
slashing_enabled: boolean;
|
|
22104
|
+
};
|
|
22105
|
+
threshold_signature_polkadot: {
|
|
22106
|
+
slashing_enabled: boolean;
|
|
22107
|
+
};
|
|
22108
|
+
threshold_signature_solana: {
|
|
22109
|
+
slashing_enabled: boolean;
|
|
22110
|
+
};
|
|
22111
|
+
broadcast_ethereum: {
|
|
22112
|
+
retry_enabled: boolean;
|
|
22113
|
+
};
|
|
22114
|
+
broadcast_bitcoin: {
|
|
22115
|
+
retry_enabled: boolean;
|
|
22116
|
+
};
|
|
22117
|
+
broadcast_polkadot: {
|
|
22118
|
+
retry_enabled: boolean;
|
|
22119
|
+
};
|
|
22120
|
+
broadcast_arbitrum: {
|
|
22121
|
+
retry_enabled: boolean;
|
|
22122
|
+
};
|
|
22123
|
+
broadcast_solana: {
|
|
22124
|
+
retry_enabled: boolean;
|
|
22125
|
+
};
|
|
22126
|
+
broadcast_assethub: {
|
|
22127
|
+
retry_enabled: boolean;
|
|
22128
|
+
};
|
|
22129
|
+
ingress_egress_ethereum: {
|
|
22130
|
+
boost_deposits_enabled: boolean;
|
|
22131
|
+
deposits_enabled: boolean;
|
|
22132
|
+
};
|
|
22133
|
+
ingress_egress_bitcoin: {
|
|
22134
|
+
boost_deposits_enabled: boolean;
|
|
22135
|
+
deposits_enabled: boolean;
|
|
22136
|
+
};
|
|
22137
|
+
ingress_egress_polkadot: {
|
|
22138
|
+
boost_deposits_enabled: boolean;
|
|
22139
|
+
deposits_enabled: boolean;
|
|
22140
|
+
};
|
|
22141
|
+
ingress_egress_arbitrum: {
|
|
22142
|
+
boost_deposits_enabled: boolean;
|
|
22143
|
+
deposits_enabled: boolean;
|
|
22144
|
+
};
|
|
22145
|
+
ingress_egress_solana: {
|
|
22146
|
+
boost_deposits_enabled: boolean;
|
|
22147
|
+
deposits_enabled: boolean;
|
|
22148
|
+
};
|
|
22149
|
+
ingress_egress_assethub: {
|
|
22150
|
+
boost_deposits_enabled: boolean;
|
|
22151
|
+
deposits_enabled: boolean;
|
|
22152
|
+
};
|
|
22153
|
+
lending_pools: {
|
|
22154
|
+
add_boost_funds_enabled: boolean;
|
|
22155
|
+
stop_boosting_enabled: boolean;
|
|
22156
|
+
};
|
|
22157
|
+
trading_strategies?: {
|
|
22158
|
+
strategy_updates_enabled: boolean;
|
|
22159
|
+
strategy_closure_enabled: boolean;
|
|
22160
|
+
strategy_execution_enabled: boolean;
|
|
22161
|
+
} | undefined;
|
|
22162
|
+
}>]>;
|
|
20288
22163
|
};
|
|
20289
22164
|
type RpcMethod = keyof RpcRequest;
|
|
20290
22165
|
type RpcResponse<T extends RpcMethod> = z.input<(typeof rpcResult)[T]>;
|