@chainflip/rpc 1.9.9 → 1.10.0

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 CHANGED
@@ -64,6 +64,20 @@ type RequestSwapParameterEncodingParams = [
64
64
  }[]>,
65
65
  dcaParams?: Nullish<DcaParams>
66
66
  ];
67
+ type EncodeCfParametersParams = [
68
+ sourceAsset: UncheckedAssetAndChain,
69
+ destinationAsset: UncheckedAssetAndChain,
70
+ destinationAddress: string,
71
+ brokerCommission: number,
72
+ refundParameters: FillOrKillParams,
73
+ ccmParams?: Nullish<CcmParams>,
74
+ boostFee?: Nullish<number>,
75
+ affiliateFees?: Nullish<{
76
+ account: string;
77
+ bps: number;
78
+ }[]>,
79
+ dcaParams?: Nullish<DcaParams>
80
+ ];
67
81
  type RpcRequest = WithHash<{
68
82
  broker_request_swap_deposit_address: [
69
83
  sourceAsset: UncheckedAssetAndChain,
@@ -84,6 +98,8 @@ type RpcRequest = WithHash<{
84
98
  brokerAccountId: string,
85
99
  ...RequestSwapParameterEncodingParams
86
100
  ];
101
+ broker_encode_cf_parameters: EncodeCfParametersParams;
102
+ cf_encode_cf_parameters: [brokerAccountId: string, ...EncodeCfParametersParams];
87
103
  cf_account_info: [accountId: string];
88
104
  cf_accounts: [];
89
105
  cf_environment: [];
@@ -2035,6 +2051,7 @@ declare const rpcResult: {
2035
2051
  bound_redeem_address: z.ZodNullable<z.ZodEffects<z.ZodString, `0x${string}`, string>>;
2036
2052
  apy_bp: z.ZodNullable<z.ZodNumber>;
2037
2053
  restricted_balances: z.ZodRecord<z.ZodEffects<z.ZodString, `0x${string}`, string>, z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
2054
+ estimated_redeemable_balance: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>>;
2038
2055
  }, "strip", z.ZodTypeAny, {
2039
2056
  role: "validator";
2040
2057
  flip_balance: bigint;
@@ -2050,6 +2067,7 @@ declare const rpcResult: {
2050
2067
  bound_redeem_address: `0x${string}` | null;
2051
2068
  apy_bp: number | null;
2052
2069
  restricted_balances: Partial<Record<`0x${string}`, bigint>>;
2070
+ estimated_redeemable_balance?: bigint | undefined;
2053
2071
  }, {
2054
2072
  role: "validator";
2055
2073
  flip_balance: string | number;
@@ -2065,6 +2083,7 @@ declare const rpcResult: {
2065
2083
  bound_redeem_address: string | null;
2066
2084
  apy_bp: number | null;
2067
2085
  restricted_balances: Record<string, string | number>;
2086
+ estimated_redeemable_balance?: string | number | undefined;
2068
2087
  }>]>;
2069
2088
  readonly cf_pool_depth: z.ZodNullable<z.ZodObject<{
2070
2089
  asks: z.ZodObject<{
@@ -3599,6 +3618,528 @@ declare const rpcResult: {
3599
3618
  DOT: string | number | null;
3600
3619
  } | undefined;
3601
3620
  }>>;
3621
+ network_fees: z.ZodOptional<z.ZodObject<{
3622
+ regular_network_fee: z.ZodObject<{
3623
+ standard_rate_and_minimum: z.ZodObject<{
3624
+ rate: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
3625
+ minimum: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
3626
+ }, "strip", z.ZodTypeAny, {
3627
+ minimum: bigint;
3628
+ rate: bigint;
3629
+ }, {
3630
+ minimum: string | number;
3631
+ rate: string | number;
3632
+ }>;
3633
+ rates: z.ZodObject<{
3634
+ Bitcoin: z.ZodObject<{
3635
+ BTC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
3636
+ }, "strip", z.ZodTypeAny, {
3637
+ BTC: bigint;
3638
+ }, {
3639
+ BTC: string | number;
3640
+ }>;
3641
+ Ethereum: z.ZodObject<{
3642
+ ETH: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
3643
+ USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
3644
+ FLIP: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
3645
+ USDT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
3646
+ }, "strip", z.ZodTypeAny, {
3647
+ ETH: bigint;
3648
+ USDC: bigint;
3649
+ FLIP: bigint;
3650
+ USDT: bigint;
3651
+ }, {
3652
+ ETH: string | number;
3653
+ USDC: string | number;
3654
+ FLIP: string | number;
3655
+ USDT: string | number;
3656
+ }>;
3657
+ Polkadot: z.ZodObject<{
3658
+ DOT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
3659
+ }, "strip", z.ZodTypeAny, {
3660
+ DOT: bigint;
3661
+ }, {
3662
+ DOT: string | number;
3663
+ }>;
3664
+ Arbitrum: z.ZodObject<{
3665
+ ETH: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
3666
+ USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
3667
+ }, "strip", z.ZodTypeAny, {
3668
+ ETH: bigint;
3669
+ USDC: bigint;
3670
+ }, {
3671
+ ETH: string | number;
3672
+ USDC: string | number;
3673
+ }>;
3674
+ Solana: z.ZodObject<{
3675
+ SOL: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
3676
+ USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
3677
+ }, "strip", z.ZodTypeAny, {
3678
+ USDC: bigint;
3679
+ SOL: bigint;
3680
+ }, {
3681
+ USDC: string | number;
3682
+ SOL: string | number;
3683
+ }>;
3684
+ Assethub: z.ZodDefault<z.ZodObject<{
3685
+ DOT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
3686
+ USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
3687
+ USDT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
3688
+ }, "strip", z.ZodTypeAny, {
3689
+ USDC: bigint;
3690
+ USDT: bigint;
3691
+ DOT: bigint;
3692
+ }, {
3693
+ USDC: string | number;
3694
+ USDT: string | number;
3695
+ DOT: string | number;
3696
+ }>>;
3697
+ }, "strip", z.ZodTypeAny, {
3698
+ Bitcoin: {
3699
+ BTC: bigint;
3700
+ };
3701
+ Ethereum: {
3702
+ ETH: bigint;
3703
+ USDC: bigint;
3704
+ FLIP: bigint;
3705
+ USDT: bigint;
3706
+ };
3707
+ Arbitrum: {
3708
+ ETH: bigint;
3709
+ USDC: bigint;
3710
+ };
3711
+ Solana: {
3712
+ USDC: bigint;
3713
+ SOL: bigint;
3714
+ };
3715
+ Polkadot: {
3716
+ DOT: bigint;
3717
+ };
3718
+ Assethub: {
3719
+ USDC: bigint;
3720
+ USDT: bigint;
3721
+ DOT: bigint;
3722
+ };
3723
+ }, {
3724
+ Bitcoin: {
3725
+ BTC: string | number;
3726
+ };
3727
+ Ethereum: {
3728
+ ETH: string | number;
3729
+ USDC: string | number;
3730
+ FLIP: string | number;
3731
+ USDT: string | number;
3732
+ };
3733
+ Arbitrum: {
3734
+ ETH: string | number;
3735
+ USDC: string | number;
3736
+ };
3737
+ Solana: {
3738
+ USDC: string | number;
3739
+ SOL: string | number;
3740
+ };
3741
+ Polkadot: {
3742
+ DOT: string | number;
3743
+ };
3744
+ Assethub?: {
3745
+ USDC: string | number;
3746
+ USDT: string | number;
3747
+ DOT: string | number;
3748
+ } | undefined;
3749
+ }>;
3750
+ }, "strip", z.ZodTypeAny, {
3751
+ standard_rate_and_minimum: {
3752
+ minimum: bigint;
3753
+ rate: bigint;
3754
+ };
3755
+ rates: {
3756
+ Bitcoin: {
3757
+ BTC: bigint;
3758
+ };
3759
+ Ethereum: {
3760
+ ETH: bigint;
3761
+ USDC: bigint;
3762
+ FLIP: bigint;
3763
+ USDT: bigint;
3764
+ };
3765
+ Arbitrum: {
3766
+ ETH: bigint;
3767
+ USDC: bigint;
3768
+ };
3769
+ Solana: {
3770
+ USDC: bigint;
3771
+ SOL: bigint;
3772
+ };
3773
+ Polkadot: {
3774
+ DOT: bigint;
3775
+ };
3776
+ Assethub: {
3777
+ USDC: bigint;
3778
+ USDT: bigint;
3779
+ DOT: bigint;
3780
+ };
3781
+ };
3782
+ }, {
3783
+ standard_rate_and_minimum: {
3784
+ minimum: string | number;
3785
+ rate: string | number;
3786
+ };
3787
+ rates: {
3788
+ Bitcoin: {
3789
+ BTC: string | number;
3790
+ };
3791
+ Ethereum: {
3792
+ ETH: string | number;
3793
+ USDC: string | number;
3794
+ FLIP: string | number;
3795
+ USDT: string | number;
3796
+ };
3797
+ Arbitrum: {
3798
+ ETH: string | number;
3799
+ USDC: string | number;
3800
+ };
3801
+ Solana: {
3802
+ USDC: string | number;
3803
+ SOL: string | number;
3804
+ };
3805
+ Polkadot: {
3806
+ DOT: string | number;
3807
+ };
3808
+ Assethub?: {
3809
+ USDC: string | number;
3810
+ USDT: string | number;
3811
+ DOT: string | number;
3812
+ } | undefined;
3813
+ };
3814
+ }>;
3815
+ internal_swap_network_fee: z.ZodObject<{
3816
+ standard_rate_and_minimum: z.ZodObject<{
3817
+ rate: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
3818
+ minimum: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
3819
+ }, "strip", z.ZodTypeAny, {
3820
+ minimum: bigint;
3821
+ rate: bigint;
3822
+ }, {
3823
+ minimum: string | number;
3824
+ rate: string | number;
3825
+ }>;
3826
+ rates: z.ZodObject<{
3827
+ Bitcoin: z.ZodObject<{
3828
+ BTC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
3829
+ }, "strip", z.ZodTypeAny, {
3830
+ BTC: bigint;
3831
+ }, {
3832
+ BTC: string | number;
3833
+ }>;
3834
+ Ethereum: z.ZodObject<{
3835
+ ETH: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
3836
+ USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
3837
+ FLIP: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
3838
+ USDT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
3839
+ }, "strip", z.ZodTypeAny, {
3840
+ ETH: bigint;
3841
+ USDC: bigint;
3842
+ FLIP: bigint;
3843
+ USDT: bigint;
3844
+ }, {
3845
+ ETH: string | number;
3846
+ USDC: string | number;
3847
+ FLIP: string | number;
3848
+ USDT: string | number;
3849
+ }>;
3850
+ Polkadot: z.ZodObject<{
3851
+ DOT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
3852
+ }, "strip", z.ZodTypeAny, {
3853
+ DOT: bigint;
3854
+ }, {
3855
+ DOT: string | number;
3856
+ }>;
3857
+ Arbitrum: z.ZodObject<{
3858
+ ETH: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
3859
+ USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
3860
+ }, "strip", z.ZodTypeAny, {
3861
+ ETH: bigint;
3862
+ USDC: bigint;
3863
+ }, {
3864
+ ETH: string | number;
3865
+ USDC: string | number;
3866
+ }>;
3867
+ Solana: z.ZodObject<{
3868
+ SOL: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
3869
+ USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
3870
+ }, "strip", z.ZodTypeAny, {
3871
+ USDC: bigint;
3872
+ SOL: bigint;
3873
+ }, {
3874
+ USDC: string | number;
3875
+ SOL: string | number;
3876
+ }>;
3877
+ Assethub: z.ZodDefault<z.ZodObject<{
3878
+ DOT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
3879
+ USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
3880
+ USDT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
3881
+ }, "strip", z.ZodTypeAny, {
3882
+ USDC: bigint;
3883
+ USDT: bigint;
3884
+ DOT: bigint;
3885
+ }, {
3886
+ USDC: string | number;
3887
+ USDT: string | number;
3888
+ DOT: string | number;
3889
+ }>>;
3890
+ }, "strip", z.ZodTypeAny, {
3891
+ Bitcoin: {
3892
+ BTC: bigint;
3893
+ };
3894
+ Ethereum: {
3895
+ ETH: bigint;
3896
+ USDC: bigint;
3897
+ FLIP: bigint;
3898
+ USDT: bigint;
3899
+ };
3900
+ Arbitrum: {
3901
+ ETH: bigint;
3902
+ USDC: bigint;
3903
+ };
3904
+ Solana: {
3905
+ USDC: bigint;
3906
+ SOL: bigint;
3907
+ };
3908
+ Polkadot: {
3909
+ DOT: bigint;
3910
+ };
3911
+ Assethub: {
3912
+ USDC: bigint;
3913
+ USDT: bigint;
3914
+ DOT: bigint;
3915
+ };
3916
+ }, {
3917
+ Bitcoin: {
3918
+ BTC: string | number;
3919
+ };
3920
+ Ethereum: {
3921
+ ETH: string | number;
3922
+ USDC: string | number;
3923
+ FLIP: string | number;
3924
+ USDT: string | number;
3925
+ };
3926
+ Arbitrum: {
3927
+ ETH: string | number;
3928
+ USDC: string | number;
3929
+ };
3930
+ Solana: {
3931
+ USDC: string | number;
3932
+ SOL: string | number;
3933
+ };
3934
+ Polkadot: {
3935
+ DOT: string | number;
3936
+ };
3937
+ Assethub?: {
3938
+ USDC: string | number;
3939
+ USDT: string | number;
3940
+ DOT: string | number;
3941
+ } | undefined;
3942
+ }>;
3943
+ }, "strip", z.ZodTypeAny, {
3944
+ standard_rate_and_minimum: {
3945
+ minimum: bigint;
3946
+ rate: bigint;
3947
+ };
3948
+ rates: {
3949
+ Bitcoin: {
3950
+ BTC: bigint;
3951
+ };
3952
+ Ethereum: {
3953
+ ETH: bigint;
3954
+ USDC: bigint;
3955
+ FLIP: bigint;
3956
+ USDT: bigint;
3957
+ };
3958
+ Arbitrum: {
3959
+ ETH: bigint;
3960
+ USDC: bigint;
3961
+ };
3962
+ Solana: {
3963
+ USDC: bigint;
3964
+ SOL: bigint;
3965
+ };
3966
+ Polkadot: {
3967
+ DOT: bigint;
3968
+ };
3969
+ Assethub: {
3970
+ USDC: bigint;
3971
+ USDT: bigint;
3972
+ DOT: bigint;
3973
+ };
3974
+ };
3975
+ }, {
3976
+ standard_rate_and_minimum: {
3977
+ minimum: string | number;
3978
+ rate: string | number;
3979
+ };
3980
+ rates: {
3981
+ Bitcoin: {
3982
+ BTC: string | number;
3983
+ };
3984
+ Ethereum: {
3985
+ ETH: string | number;
3986
+ USDC: string | number;
3987
+ FLIP: string | number;
3988
+ USDT: string | number;
3989
+ };
3990
+ Arbitrum: {
3991
+ ETH: string | number;
3992
+ USDC: string | number;
3993
+ };
3994
+ Solana: {
3995
+ USDC: string | number;
3996
+ SOL: string | number;
3997
+ };
3998
+ Polkadot: {
3999
+ DOT: string | number;
4000
+ };
4001
+ Assethub?: {
4002
+ USDC: string | number;
4003
+ USDT: string | number;
4004
+ DOT: string | number;
4005
+ } | undefined;
4006
+ };
4007
+ }>;
4008
+ }, "strip", z.ZodTypeAny, {
4009
+ regular_network_fee: {
4010
+ standard_rate_and_minimum: {
4011
+ minimum: bigint;
4012
+ rate: bigint;
4013
+ };
4014
+ rates: {
4015
+ Bitcoin: {
4016
+ BTC: bigint;
4017
+ };
4018
+ Ethereum: {
4019
+ ETH: bigint;
4020
+ USDC: bigint;
4021
+ FLIP: bigint;
4022
+ USDT: bigint;
4023
+ };
4024
+ Arbitrum: {
4025
+ ETH: bigint;
4026
+ USDC: bigint;
4027
+ };
4028
+ Solana: {
4029
+ USDC: bigint;
4030
+ SOL: bigint;
4031
+ };
4032
+ Polkadot: {
4033
+ DOT: bigint;
4034
+ };
4035
+ Assethub: {
4036
+ USDC: bigint;
4037
+ USDT: bigint;
4038
+ DOT: bigint;
4039
+ };
4040
+ };
4041
+ };
4042
+ internal_swap_network_fee: {
4043
+ standard_rate_and_minimum: {
4044
+ minimum: bigint;
4045
+ rate: bigint;
4046
+ };
4047
+ rates: {
4048
+ Bitcoin: {
4049
+ BTC: bigint;
4050
+ };
4051
+ Ethereum: {
4052
+ ETH: bigint;
4053
+ USDC: bigint;
4054
+ FLIP: bigint;
4055
+ USDT: bigint;
4056
+ };
4057
+ Arbitrum: {
4058
+ ETH: bigint;
4059
+ USDC: bigint;
4060
+ };
4061
+ Solana: {
4062
+ USDC: bigint;
4063
+ SOL: bigint;
4064
+ };
4065
+ Polkadot: {
4066
+ DOT: bigint;
4067
+ };
4068
+ Assethub: {
4069
+ USDC: bigint;
4070
+ USDT: bigint;
4071
+ DOT: bigint;
4072
+ };
4073
+ };
4074
+ };
4075
+ }, {
4076
+ regular_network_fee: {
4077
+ standard_rate_and_minimum: {
4078
+ minimum: string | number;
4079
+ rate: string | number;
4080
+ };
4081
+ rates: {
4082
+ Bitcoin: {
4083
+ BTC: string | number;
4084
+ };
4085
+ Ethereum: {
4086
+ ETH: string | number;
4087
+ USDC: string | number;
4088
+ FLIP: string | number;
4089
+ USDT: string | number;
4090
+ };
4091
+ Arbitrum: {
4092
+ ETH: string | number;
4093
+ USDC: string | number;
4094
+ };
4095
+ Solana: {
4096
+ USDC: string | number;
4097
+ SOL: string | number;
4098
+ };
4099
+ Polkadot: {
4100
+ DOT: string | number;
4101
+ };
4102
+ Assethub?: {
4103
+ USDC: string | number;
4104
+ USDT: string | number;
4105
+ DOT: string | number;
4106
+ } | undefined;
4107
+ };
4108
+ };
4109
+ internal_swap_network_fee: {
4110
+ standard_rate_and_minimum: {
4111
+ minimum: string | number;
4112
+ rate: string | number;
4113
+ };
4114
+ rates: {
4115
+ Bitcoin: {
4116
+ BTC: string | number;
4117
+ };
4118
+ Ethereum: {
4119
+ ETH: string | number;
4120
+ USDC: string | number;
4121
+ FLIP: string | number;
4122
+ USDT: string | number;
4123
+ };
4124
+ Arbitrum: {
4125
+ ETH: string | number;
4126
+ USDC: string | number;
4127
+ };
4128
+ Solana: {
4129
+ USDC: string | number;
4130
+ SOL: string | number;
4131
+ };
4132
+ Polkadot: {
4133
+ DOT: string | number;
4134
+ };
4135
+ Assethub?: {
4136
+ USDC: string | number;
4137
+ USDT: string | number;
4138
+ DOT: string | number;
4139
+ } | undefined;
4140
+ };
4141
+ };
4142
+ }>>;
3602
4143
  }, "strip", z.ZodTypeAny, {
3603
4144
  maximum_swap_amounts: {
3604
4145
  Bitcoin: {
@@ -3658,6 +4199,74 @@ declare const rpcResult: {
3658
4199
  DOT: bigint | null;
3659
4200
  };
3660
4201
  } | undefined;
4202
+ network_fees?: {
4203
+ regular_network_fee: {
4204
+ standard_rate_and_minimum: {
4205
+ minimum: bigint;
4206
+ rate: bigint;
4207
+ };
4208
+ rates: {
4209
+ Bitcoin: {
4210
+ BTC: bigint;
4211
+ };
4212
+ Ethereum: {
4213
+ ETH: bigint;
4214
+ USDC: bigint;
4215
+ FLIP: bigint;
4216
+ USDT: bigint;
4217
+ };
4218
+ Arbitrum: {
4219
+ ETH: bigint;
4220
+ USDC: bigint;
4221
+ };
4222
+ Solana: {
4223
+ USDC: bigint;
4224
+ SOL: bigint;
4225
+ };
4226
+ Polkadot: {
4227
+ DOT: bigint;
4228
+ };
4229
+ Assethub: {
4230
+ USDC: bigint;
4231
+ USDT: bigint;
4232
+ DOT: bigint;
4233
+ };
4234
+ };
4235
+ };
4236
+ internal_swap_network_fee: {
4237
+ standard_rate_and_minimum: {
4238
+ minimum: bigint;
4239
+ rate: bigint;
4240
+ };
4241
+ rates: {
4242
+ Bitcoin: {
4243
+ BTC: bigint;
4244
+ };
4245
+ Ethereum: {
4246
+ ETH: bigint;
4247
+ USDC: bigint;
4248
+ FLIP: bigint;
4249
+ USDT: bigint;
4250
+ };
4251
+ Arbitrum: {
4252
+ ETH: bigint;
4253
+ USDC: bigint;
4254
+ };
4255
+ Solana: {
4256
+ USDC: bigint;
4257
+ SOL: bigint;
4258
+ };
4259
+ Polkadot: {
4260
+ DOT: bigint;
4261
+ };
4262
+ Assethub: {
4263
+ USDC: bigint;
4264
+ USDT: bigint;
4265
+ DOT: bigint;
4266
+ };
4267
+ };
4268
+ };
4269
+ } | undefined;
3661
4270
  }, {
3662
4271
  maximum_swap_amounts: {
3663
4272
  Bitcoin: {
@@ -3717,6 +4326,74 @@ declare const rpcResult: {
3717
4326
  DOT: string | number | null;
3718
4327
  } | undefined;
3719
4328
  } | undefined;
4329
+ network_fees?: {
4330
+ regular_network_fee: {
4331
+ standard_rate_and_minimum: {
4332
+ minimum: string | number;
4333
+ rate: string | number;
4334
+ };
4335
+ rates: {
4336
+ Bitcoin: {
4337
+ BTC: string | number;
4338
+ };
4339
+ Ethereum: {
4340
+ ETH: string | number;
4341
+ USDC: string | number;
4342
+ FLIP: string | number;
4343
+ USDT: string | number;
4344
+ };
4345
+ Arbitrum: {
4346
+ ETH: string | number;
4347
+ USDC: string | number;
4348
+ };
4349
+ Solana: {
4350
+ USDC: string | number;
4351
+ SOL: string | number;
4352
+ };
4353
+ Polkadot: {
4354
+ DOT: string | number;
4355
+ };
4356
+ Assethub?: {
4357
+ USDC: string | number;
4358
+ USDT: string | number;
4359
+ DOT: string | number;
4360
+ } | undefined;
4361
+ };
4362
+ };
4363
+ internal_swap_network_fee: {
4364
+ standard_rate_and_minimum: {
4365
+ minimum: string | number;
4366
+ rate: string | number;
4367
+ };
4368
+ rates: {
4369
+ Bitcoin: {
4370
+ BTC: string | number;
4371
+ };
4372
+ Ethereum: {
4373
+ ETH: string | number;
4374
+ USDC: string | number;
4375
+ FLIP: string | number;
4376
+ USDT: string | number;
4377
+ };
4378
+ Arbitrum: {
4379
+ ETH: string | number;
4380
+ USDC: string | number;
4381
+ };
4382
+ Solana: {
4383
+ USDC: string | number;
4384
+ SOL: string | number;
4385
+ };
4386
+ Polkadot: {
4387
+ DOT: string | number;
4388
+ };
4389
+ Assethub?: {
4390
+ USDC: string | number;
4391
+ USDT: string | number;
4392
+ DOT: string | number;
4393
+ } | undefined;
4394
+ };
4395
+ };
4396
+ } | undefined;
3720
4397
  }>;
3721
4398
  funding: z.ZodObject<{
3722
4399
  redemption_tax: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
@@ -8610,6 +9287,74 @@ declare const rpcResult: {
8610
9287
  DOT: bigint | null;
8611
9288
  };
8612
9289
  } | undefined;
9290
+ network_fees?: {
9291
+ regular_network_fee: {
9292
+ standard_rate_and_minimum: {
9293
+ minimum: bigint;
9294
+ rate: bigint;
9295
+ };
9296
+ rates: {
9297
+ Bitcoin: {
9298
+ BTC: bigint;
9299
+ };
9300
+ Ethereum: {
9301
+ ETH: bigint;
9302
+ USDC: bigint;
9303
+ FLIP: bigint;
9304
+ USDT: bigint;
9305
+ };
9306
+ Arbitrum: {
9307
+ ETH: bigint;
9308
+ USDC: bigint;
9309
+ };
9310
+ Solana: {
9311
+ USDC: bigint;
9312
+ SOL: bigint;
9313
+ };
9314
+ Polkadot: {
9315
+ DOT: bigint;
9316
+ };
9317
+ Assethub: {
9318
+ USDC: bigint;
9319
+ USDT: bigint;
9320
+ DOT: bigint;
9321
+ };
9322
+ };
9323
+ };
9324
+ internal_swap_network_fee: {
9325
+ standard_rate_and_minimum: {
9326
+ minimum: bigint;
9327
+ rate: bigint;
9328
+ };
9329
+ rates: {
9330
+ Bitcoin: {
9331
+ BTC: bigint;
9332
+ };
9333
+ Ethereum: {
9334
+ ETH: bigint;
9335
+ USDC: bigint;
9336
+ FLIP: bigint;
9337
+ USDT: bigint;
9338
+ };
9339
+ Arbitrum: {
9340
+ ETH: bigint;
9341
+ USDC: bigint;
9342
+ };
9343
+ Solana: {
9344
+ USDC: bigint;
9345
+ SOL: bigint;
9346
+ };
9347
+ Polkadot: {
9348
+ DOT: bigint;
9349
+ };
9350
+ Assethub: {
9351
+ USDC: bigint;
9352
+ USDT: bigint;
9353
+ DOT: bigint;
9354
+ };
9355
+ };
9356
+ };
9357
+ } | undefined;
8613
9358
  };
8614
9359
  funding: {
8615
9360
  redemption_tax: bigint;
@@ -9381,6 +10126,74 @@ declare const rpcResult: {
9381
10126
  DOT: string | number | null;
9382
10127
  } | undefined;
9383
10128
  } | undefined;
10129
+ network_fees?: {
10130
+ regular_network_fee: {
10131
+ standard_rate_and_minimum: {
10132
+ minimum: string | number;
10133
+ rate: string | number;
10134
+ };
10135
+ rates: {
10136
+ Bitcoin: {
10137
+ BTC: string | number;
10138
+ };
10139
+ Ethereum: {
10140
+ ETH: string | number;
10141
+ USDC: string | number;
10142
+ FLIP: string | number;
10143
+ USDT: string | number;
10144
+ };
10145
+ Arbitrum: {
10146
+ ETH: string | number;
10147
+ USDC: string | number;
10148
+ };
10149
+ Solana: {
10150
+ USDC: string | number;
10151
+ SOL: string | number;
10152
+ };
10153
+ Polkadot: {
10154
+ DOT: string | number;
10155
+ };
10156
+ Assethub?: {
10157
+ USDC: string | number;
10158
+ USDT: string | number;
10159
+ DOT: string | number;
10160
+ } | undefined;
10161
+ };
10162
+ };
10163
+ internal_swap_network_fee: {
10164
+ standard_rate_and_minimum: {
10165
+ minimum: string | number;
10166
+ rate: string | number;
10167
+ };
10168
+ rates: {
10169
+ Bitcoin: {
10170
+ BTC: string | number;
10171
+ };
10172
+ Ethereum: {
10173
+ ETH: string | number;
10174
+ USDC: string | number;
10175
+ FLIP: string | number;
10176
+ USDT: string | number;
10177
+ };
10178
+ Arbitrum: {
10179
+ ETH: string | number;
10180
+ USDC: string | number;
10181
+ };
10182
+ Solana: {
10183
+ USDC: string | number;
10184
+ SOL: string | number;
10185
+ };
10186
+ Polkadot: {
10187
+ DOT: string | number;
10188
+ };
10189
+ Assethub?: {
10190
+ USDC: string | number;
10191
+ USDT: string | number;
10192
+ DOT: string | number;
10193
+ } | undefined;
10194
+ };
10195
+ };
10196
+ } | undefined;
9384
10197
  };
9385
10198
  funding: {
9386
10199
  redemption_tax: string | number;
@@ -17853,47 +18666,569 @@ declare const rpcResult: {
17853
18666
  DOT: string | number | null;
17854
18667
  } | undefined;
17855
18668
  }>>;
17856
- }, "strip", z.ZodTypeAny, {
17857
- maximum_swap_amounts: {
17858
- Bitcoin: {
17859
- BTC: bigint | null;
17860
- };
17861
- Ethereum: {
17862
- ETH: bigint | null;
17863
- USDC: bigint | null;
17864
- FLIP: bigint | null;
17865
- USDT: bigint | null;
17866
- };
17867
- Arbitrum: {
17868
- ETH: bigint | null;
17869
- USDC: bigint | null;
17870
- };
17871
- Solana: {
17872
- USDC: bigint | null;
17873
- SOL: bigint | null;
17874
- };
17875
- Polkadot: {
17876
- DOT: bigint | null;
17877
- };
17878
- Assethub: {
17879
- USDC: bigint | null;
17880
- USDT: bigint | null;
17881
- DOT: bigint | null;
17882
- };
17883
- };
17884
- network_fee_hundredth_pips: number;
17885
- swap_retry_delay_blocks?: number | undefined;
17886
- max_swap_retry_duration_blocks?: number | undefined;
17887
- max_swap_request_duration_blocks?: number | undefined;
17888
- minimum_chunk_size?: {
17889
- Bitcoin: {
17890
- BTC: bigint | null;
17891
- };
17892
- Ethereum: {
17893
- ETH: bigint | null;
17894
- USDC: bigint | null;
17895
- FLIP: bigint | null;
17896
- USDT: bigint | null;
18669
+ network_fees: z.ZodOptional<z.ZodObject<{
18670
+ regular_network_fee: z.ZodObject<{
18671
+ standard_rate_and_minimum: z.ZodObject<{
18672
+ rate: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
18673
+ minimum: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
18674
+ }, "strip", z.ZodTypeAny, {
18675
+ minimum: bigint;
18676
+ rate: bigint;
18677
+ }, {
18678
+ minimum: string | number;
18679
+ rate: string | number;
18680
+ }>;
18681
+ rates: z.ZodObject<{
18682
+ Bitcoin: z.ZodObject<{
18683
+ BTC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
18684
+ }, "strip", z.ZodTypeAny, {
18685
+ BTC: bigint;
18686
+ }, {
18687
+ BTC: string | number;
18688
+ }>;
18689
+ Ethereum: z.ZodObject<{
18690
+ ETH: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
18691
+ USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
18692
+ FLIP: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
18693
+ USDT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
18694
+ }, "strip", z.ZodTypeAny, {
18695
+ ETH: bigint;
18696
+ USDC: bigint;
18697
+ FLIP: bigint;
18698
+ USDT: bigint;
18699
+ }, {
18700
+ ETH: string | number;
18701
+ USDC: string | number;
18702
+ FLIP: string | number;
18703
+ USDT: string | number;
18704
+ }>;
18705
+ Polkadot: z.ZodObject<{
18706
+ DOT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
18707
+ }, "strip", z.ZodTypeAny, {
18708
+ DOT: bigint;
18709
+ }, {
18710
+ DOT: string | number;
18711
+ }>;
18712
+ Arbitrum: z.ZodObject<{
18713
+ ETH: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
18714
+ USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
18715
+ }, "strip", z.ZodTypeAny, {
18716
+ ETH: bigint;
18717
+ USDC: bigint;
18718
+ }, {
18719
+ ETH: string | number;
18720
+ USDC: string | number;
18721
+ }>;
18722
+ Solana: z.ZodObject<{
18723
+ SOL: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
18724
+ USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
18725
+ }, "strip", z.ZodTypeAny, {
18726
+ USDC: bigint;
18727
+ SOL: bigint;
18728
+ }, {
18729
+ USDC: string | number;
18730
+ SOL: string | number;
18731
+ }>;
18732
+ Assethub: z.ZodDefault<z.ZodObject<{
18733
+ DOT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
18734
+ USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
18735
+ USDT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
18736
+ }, "strip", z.ZodTypeAny, {
18737
+ USDC: bigint;
18738
+ USDT: bigint;
18739
+ DOT: bigint;
18740
+ }, {
18741
+ USDC: string | number;
18742
+ USDT: string | number;
18743
+ DOT: string | number;
18744
+ }>>;
18745
+ }, "strip", z.ZodTypeAny, {
18746
+ Bitcoin: {
18747
+ BTC: bigint;
18748
+ };
18749
+ Ethereum: {
18750
+ ETH: bigint;
18751
+ USDC: bigint;
18752
+ FLIP: bigint;
18753
+ USDT: bigint;
18754
+ };
18755
+ Arbitrum: {
18756
+ ETH: bigint;
18757
+ USDC: bigint;
18758
+ };
18759
+ Solana: {
18760
+ USDC: bigint;
18761
+ SOL: bigint;
18762
+ };
18763
+ Polkadot: {
18764
+ DOT: bigint;
18765
+ };
18766
+ Assethub: {
18767
+ USDC: bigint;
18768
+ USDT: bigint;
18769
+ DOT: bigint;
18770
+ };
18771
+ }, {
18772
+ Bitcoin: {
18773
+ BTC: string | number;
18774
+ };
18775
+ Ethereum: {
18776
+ ETH: string | number;
18777
+ USDC: string | number;
18778
+ FLIP: string | number;
18779
+ USDT: string | number;
18780
+ };
18781
+ Arbitrum: {
18782
+ ETH: string | number;
18783
+ USDC: string | number;
18784
+ };
18785
+ Solana: {
18786
+ USDC: string | number;
18787
+ SOL: string | number;
18788
+ };
18789
+ Polkadot: {
18790
+ DOT: string | number;
18791
+ };
18792
+ Assethub?: {
18793
+ USDC: string | number;
18794
+ USDT: string | number;
18795
+ DOT: string | number;
18796
+ } | undefined;
18797
+ }>;
18798
+ }, "strip", z.ZodTypeAny, {
18799
+ standard_rate_and_minimum: {
18800
+ minimum: bigint;
18801
+ rate: bigint;
18802
+ };
18803
+ rates: {
18804
+ Bitcoin: {
18805
+ BTC: bigint;
18806
+ };
18807
+ Ethereum: {
18808
+ ETH: bigint;
18809
+ USDC: bigint;
18810
+ FLIP: bigint;
18811
+ USDT: bigint;
18812
+ };
18813
+ Arbitrum: {
18814
+ ETH: bigint;
18815
+ USDC: bigint;
18816
+ };
18817
+ Solana: {
18818
+ USDC: bigint;
18819
+ SOL: bigint;
18820
+ };
18821
+ Polkadot: {
18822
+ DOT: bigint;
18823
+ };
18824
+ Assethub: {
18825
+ USDC: bigint;
18826
+ USDT: bigint;
18827
+ DOT: bigint;
18828
+ };
18829
+ };
18830
+ }, {
18831
+ standard_rate_and_minimum: {
18832
+ minimum: string | number;
18833
+ rate: string | number;
18834
+ };
18835
+ rates: {
18836
+ Bitcoin: {
18837
+ BTC: string | number;
18838
+ };
18839
+ Ethereum: {
18840
+ ETH: string | number;
18841
+ USDC: string | number;
18842
+ FLIP: string | number;
18843
+ USDT: string | number;
18844
+ };
18845
+ Arbitrum: {
18846
+ ETH: string | number;
18847
+ USDC: string | number;
18848
+ };
18849
+ Solana: {
18850
+ USDC: string | number;
18851
+ SOL: string | number;
18852
+ };
18853
+ Polkadot: {
18854
+ DOT: string | number;
18855
+ };
18856
+ Assethub?: {
18857
+ USDC: string | number;
18858
+ USDT: string | number;
18859
+ DOT: string | number;
18860
+ } | undefined;
18861
+ };
18862
+ }>;
18863
+ internal_swap_network_fee: z.ZodObject<{
18864
+ standard_rate_and_minimum: z.ZodObject<{
18865
+ rate: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
18866
+ minimum: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
18867
+ }, "strip", z.ZodTypeAny, {
18868
+ minimum: bigint;
18869
+ rate: bigint;
18870
+ }, {
18871
+ minimum: string | number;
18872
+ rate: string | number;
18873
+ }>;
18874
+ rates: z.ZodObject<{
18875
+ Bitcoin: z.ZodObject<{
18876
+ BTC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
18877
+ }, "strip", z.ZodTypeAny, {
18878
+ BTC: bigint;
18879
+ }, {
18880
+ BTC: string | number;
18881
+ }>;
18882
+ Ethereum: z.ZodObject<{
18883
+ ETH: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
18884
+ USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
18885
+ FLIP: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
18886
+ USDT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
18887
+ }, "strip", z.ZodTypeAny, {
18888
+ ETH: bigint;
18889
+ USDC: bigint;
18890
+ FLIP: bigint;
18891
+ USDT: bigint;
18892
+ }, {
18893
+ ETH: string | number;
18894
+ USDC: string | number;
18895
+ FLIP: string | number;
18896
+ USDT: string | number;
18897
+ }>;
18898
+ Polkadot: z.ZodObject<{
18899
+ DOT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
18900
+ }, "strip", z.ZodTypeAny, {
18901
+ DOT: bigint;
18902
+ }, {
18903
+ DOT: string | number;
18904
+ }>;
18905
+ Arbitrum: z.ZodObject<{
18906
+ ETH: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
18907
+ USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
18908
+ }, "strip", z.ZodTypeAny, {
18909
+ ETH: bigint;
18910
+ USDC: bigint;
18911
+ }, {
18912
+ ETH: string | number;
18913
+ USDC: string | number;
18914
+ }>;
18915
+ Solana: z.ZodObject<{
18916
+ SOL: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
18917
+ USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
18918
+ }, "strip", z.ZodTypeAny, {
18919
+ USDC: bigint;
18920
+ SOL: bigint;
18921
+ }, {
18922
+ USDC: string | number;
18923
+ SOL: string | number;
18924
+ }>;
18925
+ Assethub: z.ZodDefault<z.ZodObject<{
18926
+ DOT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
18927
+ USDC: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
18928
+ USDT: z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>;
18929
+ }, "strip", z.ZodTypeAny, {
18930
+ USDC: bigint;
18931
+ USDT: bigint;
18932
+ DOT: bigint;
18933
+ }, {
18934
+ USDC: string | number;
18935
+ USDT: string | number;
18936
+ DOT: string | number;
18937
+ }>>;
18938
+ }, "strip", z.ZodTypeAny, {
18939
+ Bitcoin: {
18940
+ BTC: bigint;
18941
+ };
18942
+ Ethereum: {
18943
+ ETH: bigint;
18944
+ USDC: bigint;
18945
+ FLIP: bigint;
18946
+ USDT: bigint;
18947
+ };
18948
+ Arbitrum: {
18949
+ ETH: bigint;
18950
+ USDC: bigint;
18951
+ };
18952
+ Solana: {
18953
+ USDC: bigint;
18954
+ SOL: bigint;
18955
+ };
18956
+ Polkadot: {
18957
+ DOT: bigint;
18958
+ };
18959
+ Assethub: {
18960
+ USDC: bigint;
18961
+ USDT: bigint;
18962
+ DOT: bigint;
18963
+ };
18964
+ }, {
18965
+ Bitcoin: {
18966
+ BTC: string | number;
18967
+ };
18968
+ Ethereum: {
18969
+ ETH: string | number;
18970
+ USDC: string | number;
18971
+ FLIP: string | number;
18972
+ USDT: string | number;
18973
+ };
18974
+ Arbitrum: {
18975
+ ETH: string | number;
18976
+ USDC: string | number;
18977
+ };
18978
+ Solana: {
18979
+ USDC: string | number;
18980
+ SOL: string | number;
18981
+ };
18982
+ Polkadot: {
18983
+ DOT: string | number;
18984
+ };
18985
+ Assethub?: {
18986
+ USDC: string | number;
18987
+ USDT: string | number;
18988
+ DOT: string | number;
18989
+ } | undefined;
18990
+ }>;
18991
+ }, "strip", z.ZodTypeAny, {
18992
+ standard_rate_and_minimum: {
18993
+ minimum: bigint;
18994
+ rate: bigint;
18995
+ };
18996
+ rates: {
18997
+ Bitcoin: {
18998
+ BTC: bigint;
18999
+ };
19000
+ Ethereum: {
19001
+ ETH: bigint;
19002
+ USDC: bigint;
19003
+ FLIP: bigint;
19004
+ USDT: bigint;
19005
+ };
19006
+ Arbitrum: {
19007
+ ETH: bigint;
19008
+ USDC: bigint;
19009
+ };
19010
+ Solana: {
19011
+ USDC: bigint;
19012
+ SOL: bigint;
19013
+ };
19014
+ Polkadot: {
19015
+ DOT: bigint;
19016
+ };
19017
+ Assethub: {
19018
+ USDC: bigint;
19019
+ USDT: bigint;
19020
+ DOT: bigint;
19021
+ };
19022
+ };
19023
+ }, {
19024
+ standard_rate_and_minimum: {
19025
+ minimum: string | number;
19026
+ rate: string | number;
19027
+ };
19028
+ rates: {
19029
+ Bitcoin: {
19030
+ BTC: string | number;
19031
+ };
19032
+ Ethereum: {
19033
+ ETH: string | number;
19034
+ USDC: string | number;
19035
+ FLIP: string | number;
19036
+ USDT: string | number;
19037
+ };
19038
+ Arbitrum: {
19039
+ ETH: string | number;
19040
+ USDC: string | number;
19041
+ };
19042
+ Solana: {
19043
+ USDC: string | number;
19044
+ SOL: string | number;
19045
+ };
19046
+ Polkadot: {
19047
+ DOT: string | number;
19048
+ };
19049
+ Assethub?: {
19050
+ USDC: string | number;
19051
+ USDT: string | number;
19052
+ DOT: string | number;
19053
+ } | undefined;
19054
+ };
19055
+ }>;
19056
+ }, "strip", z.ZodTypeAny, {
19057
+ regular_network_fee: {
19058
+ standard_rate_and_minimum: {
19059
+ minimum: bigint;
19060
+ rate: bigint;
19061
+ };
19062
+ rates: {
19063
+ Bitcoin: {
19064
+ BTC: bigint;
19065
+ };
19066
+ Ethereum: {
19067
+ ETH: bigint;
19068
+ USDC: bigint;
19069
+ FLIP: bigint;
19070
+ USDT: bigint;
19071
+ };
19072
+ Arbitrum: {
19073
+ ETH: bigint;
19074
+ USDC: bigint;
19075
+ };
19076
+ Solana: {
19077
+ USDC: bigint;
19078
+ SOL: bigint;
19079
+ };
19080
+ Polkadot: {
19081
+ DOT: bigint;
19082
+ };
19083
+ Assethub: {
19084
+ USDC: bigint;
19085
+ USDT: bigint;
19086
+ DOT: bigint;
19087
+ };
19088
+ };
19089
+ };
19090
+ internal_swap_network_fee: {
19091
+ standard_rate_and_minimum: {
19092
+ minimum: bigint;
19093
+ rate: bigint;
19094
+ };
19095
+ rates: {
19096
+ Bitcoin: {
19097
+ BTC: bigint;
19098
+ };
19099
+ Ethereum: {
19100
+ ETH: bigint;
19101
+ USDC: bigint;
19102
+ FLIP: bigint;
19103
+ USDT: bigint;
19104
+ };
19105
+ Arbitrum: {
19106
+ ETH: bigint;
19107
+ USDC: bigint;
19108
+ };
19109
+ Solana: {
19110
+ USDC: bigint;
19111
+ SOL: bigint;
19112
+ };
19113
+ Polkadot: {
19114
+ DOT: bigint;
19115
+ };
19116
+ Assethub: {
19117
+ USDC: bigint;
19118
+ USDT: bigint;
19119
+ DOT: bigint;
19120
+ };
19121
+ };
19122
+ };
19123
+ }, {
19124
+ regular_network_fee: {
19125
+ standard_rate_and_minimum: {
19126
+ minimum: string | number;
19127
+ rate: string | number;
19128
+ };
19129
+ rates: {
19130
+ Bitcoin: {
19131
+ BTC: string | number;
19132
+ };
19133
+ Ethereum: {
19134
+ ETH: string | number;
19135
+ USDC: string | number;
19136
+ FLIP: string | number;
19137
+ USDT: string | number;
19138
+ };
19139
+ Arbitrum: {
19140
+ ETH: string | number;
19141
+ USDC: string | number;
19142
+ };
19143
+ Solana: {
19144
+ USDC: string | number;
19145
+ SOL: string | number;
19146
+ };
19147
+ Polkadot: {
19148
+ DOT: string | number;
19149
+ };
19150
+ Assethub?: {
19151
+ USDC: string | number;
19152
+ USDT: string | number;
19153
+ DOT: string | number;
19154
+ } | undefined;
19155
+ };
19156
+ };
19157
+ internal_swap_network_fee: {
19158
+ standard_rate_and_minimum: {
19159
+ minimum: string | number;
19160
+ rate: string | number;
19161
+ };
19162
+ rates: {
19163
+ Bitcoin: {
19164
+ BTC: string | number;
19165
+ };
19166
+ Ethereum: {
19167
+ ETH: string | number;
19168
+ USDC: string | number;
19169
+ FLIP: string | number;
19170
+ USDT: string | number;
19171
+ };
19172
+ Arbitrum: {
19173
+ ETH: string | number;
19174
+ USDC: string | number;
19175
+ };
19176
+ Solana: {
19177
+ USDC: string | number;
19178
+ SOL: string | number;
19179
+ };
19180
+ Polkadot: {
19181
+ DOT: string | number;
19182
+ };
19183
+ Assethub?: {
19184
+ USDC: string | number;
19185
+ USDT: string | number;
19186
+ DOT: string | number;
19187
+ } | undefined;
19188
+ };
19189
+ };
19190
+ }>>;
19191
+ }, "strip", z.ZodTypeAny, {
19192
+ maximum_swap_amounts: {
19193
+ Bitcoin: {
19194
+ BTC: bigint | null;
19195
+ };
19196
+ Ethereum: {
19197
+ ETH: bigint | null;
19198
+ USDC: bigint | null;
19199
+ FLIP: bigint | null;
19200
+ USDT: bigint | null;
19201
+ };
19202
+ Arbitrum: {
19203
+ ETH: bigint | null;
19204
+ USDC: bigint | null;
19205
+ };
19206
+ Solana: {
19207
+ USDC: bigint | null;
19208
+ SOL: bigint | null;
19209
+ };
19210
+ Polkadot: {
19211
+ DOT: bigint | null;
19212
+ };
19213
+ Assethub: {
19214
+ USDC: bigint | null;
19215
+ USDT: bigint | null;
19216
+ DOT: bigint | null;
19217
+ };
19218
+ };
19219
+ network_fee_hundredth_pips: number;
19220
+ swap_retry_delay_blocks?: number | undefined;
19221
+ max_swap_retry_duration_blocks?: number | undefined;
19222
+ max_swap_request_duration_blocks?: number | undefined;
19223
+ minimum_chunk_size?: {
19224
+ Bitcoin: {
19225
+ BTC: bigint | null;
19226
+ };
19227
+ Ethereum: {
19228
+ ETH: bigint | null;
19229
+ USDC: bigint | null;
19230
+ FLIP: bigint | null;
19231
+ USDT: bigint | null;
17897
19232
  };
17898
19233
  Arbitrum: {
17899
19234
  ETH: bigint | null;
@@ -17912,6 +19247,74 @@ declare const rpcResult: {
17912
19247
  DOT: bigint | null;
17913
19248
  };
17914
19249
  } | undefined;
19250
+ network_fees?: {
19251
+ regular_network_fee: {
19252
+ standard_rate_and_minimum: {
19253
+ minimum: bigint;
19254
+ rate: bigint;
19255
+ };
19256
+ rates: {
19257
+ Bitcoin: {
19258
+ BTC: bigint;
19259
+ };
19260
+ Ethereum: {
19261
+ ETH: bigint;
19262
+ USDC: bigint;
19263
+ FLIP: bigint;
19264
+ USDT: bigint;
19265
+ };
19266
+ Arbitrum: {
19267
+ ETH: bigint;
19268
+ USDC: bigint;
19269
+ };
19270
+ Solana: {
19271
+ USDC: bigint;
19272
+ SOL: bigint;
19273
+ };
19274
+ Polkadot: {
19275
+ DOT: bigint;
19276
+ };
19277
+ Assethub: {
19278
+ USDC: bigint;
19279
+ USDT: bigint;
19280
+ DOT: bigint;
19281
+ };
19282
+ };
19283
+ };
19284
+ internal_swap_network_fee: {
19285
+ standard_rate_and_minimum: {
19286
+ minimum: bigint;
19287
+ rate: bigint;
19288
+ };
19289
+ rates: {
19290
+ Bitcoin: {
19291
+ BTC: bigint;
19292
+ };
19293
+ Ethereum: {
19294
+ ETH: bigint;
19295
+ USDC: bigint;
19296
+ FLIP: bigint;
19297
+ USDT: bigint;
19298
+ };
19299
+ Arbitrum: {
19300
+ ETH: bigint;
19301
+ USDC: bigint;
19302
+ };
19303
+ Solana: {
19304
+ USDC: bigint;
19305
+ SOL: bigint;
19306
+ };
19307
+ Polkadot: {
19308
+ DOT: bigint;
19309
+ };
19310
+ Assethub: {
19311
+ USDC: bigint;
19312
+ USDT: bigint;
19313
+ DOT: bigint;
19314
+ };
19315
+ };
19316
+ };
19317
+ } | undefined;
17915
19318
  }, {
17916
19319
  maximum_swap_amounts: {
17917
19320
  Bitcoin: {
@@ -17971,6 +19374,74 @@ declare const rpcResult: {
17971
19374
  DOT: string | number | null;
17972
19375
  } | undefined;
17973
19376
  } | undefined;
19377
+ network_fees?: {
19378
+ regular_network_fee: {
19379
+ standard_rate_and_minimum: {
19380
+ minimum: string | number;
19381
+ rate: string | number;
19382
+ };
19383
+ rates: {
19384
+ Bitcoin: {
19385
+ BTC: string | number;
19386
+ };
19387
+ Ethereum: {
19388
+ ETH: string | number;
19389
+ USDC: string | number;
19390
+ FLIP: string | number;
19391
+ USDT: string | number;
19392
+ };
19393
+ Arbitrum: {
19394
+ ETH: string | number;
19395
+ USDC: string | number;
19396
+ };
19397
+ Solana: {
19398
+ USDC: string | number;
19399
+ SOL: string | number;
19400
+ };
19401
+ Polkadot: {
19402
+ DOT: string | number;
19403
+ };
19404
+ Assethub?: {
19405
+ USDC: string | number;
19406
+ USDT: string | number;
19407
+ DOT: string | number;
19408
+ } | undefined;
19409
+ };
19410
+ };
19411
+ internal_swap_network_fee: {
19412
+ standard_rate_and_minimum: {
19413
+ minimum: string | number;
19414
+ rate: string | number;
19415
+ };
19416
+ rates: {
19417
+ Bitcoin: {
19418
+ BTC: string | number;
19419
+ };
19420
+ Ethereum: {
19421
+ ETH: string | number;
19422
+ USDC: string | number;
19423
+ FLIP: string | number;
19424
+ USDT: string | number;
19425
+ };
19426
+ Arbitrum: {
19427
+ ETH: string | number;
19428
+ USDC: string | number;
19429
+ };
19430
+ Solana: {
19431
+ USDC: string | number;
19432
+ SOL: string | number;
19433
+ };
19434
+ Polkadot: {
19435
+ DOT: string | number;
19436
+ };
19437
+ Assethub?: {
19438
+ USDC: string | number;
19439
+ USDT: string | number;
19440
+ DOT: string | number;
19441
+ } | undefined;
19442
+ };
19443
+ };
19444
+ } | undefined;
17974
19445
  }>;
17975
19446
  readonly chain_getBlockHash: z.ZodEffects<z.ZodString, `0x${string}`, string>;
17976
19447
  readonly cf_boost_pool_details: z.ZodArray<z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
@@ -18593,7 +20064,7 @@ declare const rpcResult: {
18593
20064
  readonly cf_get_trading_strategies: z.ZodDefault<z.ZodArray<z.ZodObject<{
18594
20065
  lp_id: z.ZodString;
18595
20066
  strategy_id: z.ZodString;
18596
- strategy: z.ZodObject<{
20067
+ strategy: z.ZodUnion<[z.ZodObject<{
18597
20068
  TickZeroCentered: z.ZodObject<{
18598
20069
  spread_tick: z.ZodNumber;
18599
20070
  base_asset: z.ZodUnion<[z.ZodObject<{
@@ -18887,130 +20358,129 @@ declare const rpcResult: {
18887
20358
  };
18888
20359
  spread_tick: number;
18889
20360
  };
18890
- }>;
18891
- balance: z.ZodArray<z.ZodTuple<[z.ZodUnion<[z.ZodObject<{
18892
- chain: z.ZodLiteral<"Bitcoin">;
18893
- asset: z.ZodLiteral<"BTC">;
18894
- }, "strip", z.ZodTypeAny, {
18895
- chain: "Bitcoin";
18896
- asset: "BTC";
18897
- }, {
18898
- chain: "Bitcoin";
18899
- asset: "BTC";
18900
- }>, z.ZodObject<{
18901
- chain: z.ZodLiteral<"Polkadot">;
18902
- asset: z.ZodLiteral<"DOT">;
18903
- }, "strip", z.ZodTypeAny, {
18904
- chain: "Polkadot";
18905
- asset: "DOT";
18906
- }, {
18907
- chain: "Polkadot";
18908
- asset: "DOT";
18909
- }>, z.ZodObject<{
18910
- chain: z.ZodLiteral<"Ethereum">;
18911
- asset: z.ZodLiteral<"FLIP">;
18912
- }, "strip", z.ZodTypeAny, {
18913
- chain: "Ethereum";
18914
- asset: "FLIP";
18915
- }, {
18916
- chain: "Ethereum";
18917
- asset: "FLIP";
18918
- }>, z.ZodObject<{
18919
- chain: z.ZodLiteral<"Ethereum">;
18920
- asset: z.ZodLiteral<"ETH">;
18921
- }, "strip", z.ZodTypeAny, {
18922
- chain: "Ethereum";
18923
- asset: "ETH";
18924
- }, {
18925
- chain: "Ethereum";
18926
- asset: "ETH";
18927
- }>, z.ZodObject<{
18928
- chain: z.ZodLiteral<"Ethereum">;
18929
- asset: z.ZodLiteral<"USDC">;
18930
- }, "strip", z.ZodTypeAny, {
18931
- chain: "Ethereum";
18932
- asset: "USDC";
18933
- }, {
18934
- chain: "Ethereum";
18935
- asset: "USDC";
18936
20361
  }>, z.ZodObject<{
18937
- chain: z.ZodLiteral<"Ethereum">;
18938
- asset: z.ZodLiteral<"USDT">;
18939
- }, "strip", z.ZodTypeAny, {
18940
- chain: "Ethereum";
18941
- asset: "USDT";
18942
- }, {
18943
- chain: "Ethereum";
18944
- asset: "USDT";
18945
- }>, z.ZodObject<{
18946
- chain: z.ZodLiteral<"Arbitrum">;
18947
- asset: z.ZodLiteral<"ETH">;
18948
- }, "strip", z.ZodTypeAny, {
18949
- chain: "Arbitrum";
18950
- asset: "ETH";
18951
- }, {
18952
- chain: "Arbitrum";
18953
- asset: "ETH";
18954
- }>, z.ZodObject<{
18955
- chain: z.ZodLiteral<"Arbitrum">;
18956
- asset: z.ZodLiteral<"USDC">;
18957
- }, "strip", z.ZodTypeAny, {
18958
- chain: "Arbitrum";
18959
- asset: "USDC";
18960
- }, {
18961
- chain: "Arbitrum";
18962
- asset: "USDC";
18963
- }>, z.ZodObject<{
18964
- chain: z.ZodLiteral<"Solana">;
18965
- asset: z.ZodLiteral<"SOL">;
18966
- }, "strip", z.ZodTypeAny, {
18967
- chain: "Solana";
18968
- asset: "SOL";
18969
- }, {
18970
- chain: "Solana";
18971
- asset: "SOL";
18972
- }>, z.ZodObject<{
18973
- chain: z.ZodLiteral<"Solana">;
18974
- asset: z.ZodLiteral<"USDC">;
18975
- }, "strip", z.ZodTypeAny, {
18976
- chain: "Solana";
18977
- asset: "USDC";
18978
- }, {
18979
- chain: "Solana";
18980
- asset: "USDC";
18981
- }>, z.ZodObject<{
18982
- chain: z.ZodLiteral<"Assethub">;
18983
- asset: z.ZodLiteral<"DOT">;
18984
- }, "strip", z.ZodTypeAny, {
18985
- chain: "Assethub";
18986
- asset: "DOT";
18987
- }, {
18988
- chain: "Assethub";
18989
- asset: "DOT";
18990
- }>, z.ZodObject<{
18991
- chain: z.ZodLiteral<"Assethub">;
18992
- asset: z.ZodLiteral<"USDC">;
18993
- }, "strip", z.ZodTypeAny, {
18994
- chain: "Assethub";
18995
- asset: "USDC";
18996
- }, {
18997
- chain: "Assethub";
18998
- asset: "USDC";
18999
- }>, z.ZodObject<{
19000
- chain: z.ZodLiteral<"Assethub">;
19001
- asset: z.ZodLiteral<"USDT">;
19002
- }, "strip", z.ZodTypeAny, {
19003
- chain: "Assethub";
19004
- asset: "USDT";
19005
- }, {
19006
- chain: "Assethub";
19007
- asset: "USDT";
19008
- }>]>, z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>], null>, "many">;
19009
- }, "strip", z.ZodTypeAny, {
19010
- lp_id: string;
19011
- strategy_id: string;
19012
- strategy: {
19013
- TickZeroCentered: {
20362
+ SimpleBuySell: z.ZodObject<{
20363
+ buy_tick: z.ZodNumber;
20364
+ sell_tick: z.ZodNumber;
20365
+ base_asset: z.ZodUnion<[z.ZodObject<{
20366
+ chain: z.ZodLiteral<"Bitcoin">;
20367
+ asset: z.ZodLiteral<"BTC">;
20368
+ }, "strip", z.ZodTypeAny, {
20369
+ chain: "Bitcoin";
20370
+ asset: "BTC";
20371
+ }, {
20372
+ chain: "Bitcoin";
20373
+ asset: "BTC";
20374
+ }>, z.ZodObject<{
20375
+ chain: z.ZodLiteral<"Polkadot">;
20376
+ asset: z.ZodLiteral<"DOT">;
20377
+ }, "strip", z.ZodTypeAny, {
20378
+ chain: "Polkadot";
20379
+ asset: "DOT";
20380
+ }, {
20381
+ chain: "Polkadot";
20382
+ asset: "DOT";
20383
+ }>, z.ZodObject<{
20384
+ chain: z.ZodLiteral<"Ethereum">;
20385
+ asset: z.ZodLiteral<"FLIP">;
20386
+ }, "strip", z.ZodTypeAny, {
20387
+ chain: "Ethereum";
20388
+ asset: "FLIP";
20389
+ }, {
20390
+ chain: "Ethereum";
20391
+ asset: "FLIP";
20392
+ }>, z.ZodObject<{
20393
+ chain: z.ZodLiteral<"Ethereum">;
20394
+ asset: z.ZodLiteral<"ETH">;
20395
+ }, "strip", z.ZodTypeAny, {
20396
+ chain: "Ethereum";
20397
+ asset: "ETH";
20398
+ }, {
20399
+ chain: "Ethereum";
20400
+ asset: "ETH";
20401
+ }>, z.ZodObject<{
20402
+ chain: z.ZodLiteral<"Ethereum">;
20403
+ asset: z.ZodLiteral<"USDC">;
20404
+ }, "strip", z.ZodTypeAny, {
20405
+ chain: "Ethereum";
20406
+ asset: "USDC";
20407
+ }, {
20408
+ chain: "Ethereum";
20409
+ asset: "USDC";
20410
+ }>, z.ZodObject<{
20411
+ chain: z.ZodLiteral<"Ethereum">;
20412
+ asset: z.ZodLiteral<"USDT">;
20413
+ }, "strip", z.ZodTypeAny, {
20414
+ chain: "Ethereum";
20415
+ asset: "USDT";
20416
+ }, {
20417
+ chain: "Ethereum";
20418
+ asset: "USDT";
20419
+ }>, z.ZodObject<{
20420
+ chain: z.ZodLiteral<"Arbitrum">;
20421
+ asset: z.ZodLiteral<"ETH">;
20422
+ }, "strip", z.ZodTypeAny, {
20423
+ chain: "Arbitrum";
20424
+ asset: "ETH";
20425
+ }, {
20426
+ chain: "Arbitrum";
20427
+ asset: "ETH";
20428
+ }>, z.ZodObject<{
20429
+ chain: z.ZodLiteral<"Arbitrum">;
20430
+ asset: z.ZodLiteral<"USDC">;
20431
+ }, "strip", z.ZodTypeAny, {
20432
+ chain: "Arbitrum";
20433
+ asset: "USDC";
20434
+ }, {
20435
+ chain: "Arbitrum";
20436
+ asset: "USDC";
20437
+ }>, z.ZodObject<{
20438
+ chain: z.ZodLiteral<"Solana">;
20439
+ asset: z.ZodLiteral<"SOL">;
20440
+ }, "strip", z.ZodTypeAny, {
20441
+ chain: "Solana";
20442
+ asset: "SOL";
20443
+ }, {
20444
+ chain: "Solana";
20445
+ asset: "SOL";
20446
+ }>, z.ZodObject<{
20447
+ chain: z.ZodLiteral<"Solana">;
20448
+ asset: z.ZodLiteral<"USDC">;
20449
+ }, "strip", z.ZodTypeAny, {
20450
+ chain: "Solana";
20451
+ asset: "USDC";
20452
+ }, {
20453
+ chain: "Solana";
20454
+ asset: "USDC";
20455
+ }>, z.ZodObject<{
20456
+ chain: z.ZodLiteral<"Assethub">;
20457
+ asset: z.ZodLiteral<"DOT">;
20458
+ }, "strip", z.ZodTypeAny, {
20459
+ chain: "Assethub";
20460
+ asset: "DOT";
20461
+ }, {
20462
+ chain: "Assethub";
20463
+ asset: "DOT";
20464
+ }>, z.ZodObject<{
20465
+ chain: z.ZodLiteral<"Assethub">;
20466
+ asset: z.ZodLiteral<"USDC">;
20467
+ }, "strip", z.ZodTypeAny, {
20468
+ chain: "Assethub";
20469
+ asset: "USDC";
20470
+ }, {
20471
+ chain: "Assethub";
20472
+ asset: "USDC";
20473
+ }>, z.ZodObject<{
20474
+ chain: z.ZodLiteral<"Assethub">;
20475
+ asset: z.ZodLiteral<"USDT">;
20476
+ }, "strip", z.ZodTypeAny, {
20477
+ chain: "Assethub";
20478
+ asset: "USDT";
20479
+ }, {
20480
+ chain: "Assethub";
20481
+ asset: "USDT";
20482
+ }>]>;
20483
+ }, "strip", z.ZodTypeAny, {
19014
20484
  base_asset: {
19015
20485
  chain: "Bitcoin";
19016
20486
  asset: "BTC";
@@ -19051,54 +20521,9 @@ declare const rpcResult: {
19051
20521
  chain: "Assethub";
19052
20522
  asset: "USDT";
19053
20523
  };
19054
- spread_tick: number;
19055
- };
19056
- };
19057
- balance: [{
19058
- chain: "Bitcoin";
19059
- asset: "BTC";
19060
- } | {
19061
- chain: "Polkadot";
19062
- asset: "DOT";
19063
- } | {
19064
- chain: "Ethereum";
19065
- asset: "FLIP";
19066
- } | {
19067
- chain: "Ethereum";
19068
- asset: "ETH";
19069
- } | {
19070
- chain: "Ethereum";
19071
- asset: "USDC";
19072
- } | {
19073
- chain: "Ethereum";
19074
- asset: "USDT";
19075
- } | {
19076
- chain: "Arbitrum";
19077
- asset: "ETH";
19078
- } | {
19079
- chain: "Arbitrum";
19080
- asset: "USDC";
19081
- } | {
19082
- chain: "Solana";
19083
- asset: "SOL";
19084
- } | {
19085
- chain: "Solana";
19086
- asset: "USDC";
19087
- } | {
19088
- chain: "Assethub";
19089
- asset: "DOT";
19090
- } | {
19091
- chain: "Assethub";
19092
- asset: "USDC";
19093
- } | {
19094
- chain: "Assethub";
19095
- asset: "USDT";
19096
- }, bigint][];
19097
- }, {
19098
- lp_id: string;
19099
- strategy_id: string;
19100
- strategy: {
19101
- TickZeroCentered: {
20524
+ buy_tick: number;
20525
+ sell_tick: number;
20526
+ }, {
19102
20527
  base_asset: {
19103
20528
  chain: "Bitcoin";
19104
20529
  asset: "BTC";
@@ -19139,19 +20564,857 @@ declare const rpcResult: {
19139
20564
  chain: "Assethub";
19140
20565
  asset: "USDT";
19141
20566
  };
19142
- spread_tick: number;
19143
- };
19144
- };
19145
- balance: [{
19146
- chain: "Bitcoin";
19147
- asset: "BTC";
19148
- } | {
19149
- chain: "Polkadot";
19150
- asset: "DOT";
19151
- } | {
19152
- chain: "Ethereum";
19153
- asset: "FLIP";
19154
- } | {
20567
+ buy_tick: number;
20568
+ sell_tick: number;
20569
+ }>;
20570
+ }, "strip", z.ZodTypeAny, {
20571
+ SimpleBuySell: {
20572
+ base_asset: {
20573
+ chain: "Bitcoin";
20574
+ asset: "BTC";
20575
+ } | {
20576
+ chain: "Polkadot";
20577
+ asset: "DOT";
20578
+ } | {
20579
+ chain: "Ethereum";
20580
+ asset: "FLIP";
20581
+ } | {
20582
+ chain: "Ethereum";
20583
+ asset: "ETH";
20584
+ } | {
20585
+ chain: "Ethereum";
20586
+ asset: "USDC";
20587
+ } | {
20588
+ chain: "Ethereum";
20589
+ asset: "USDT";
20590
+ } | {
20591
+ chain: "Arbitrum";
20592
+ asset: "ETH";
20593
+ } | {
20594
+ chain: "Arbitrum";
20595
+ asset: "USDC";
20596
+ } | {
20597
+ chain: "Solana";
20598
+ asset: "SOL";
20599
+ } | {
20600
+ chain: "Solana";
20601
+ asset: "USDC";
20602
+ } | {
20603
+ chain: "Assethub";
20604
+ asset: "DOT";
20605
+ } | {
20606
+ chain: "Assethub";
20607
+ asset: "USDC";
20608
+ } | {
20609
+ chain: "Assethub";
20610
+ asset: "USDT";
20611
+ };
20612
+ buy_tick: number;
20613
+ sell_tick: number;
20614
+ };
20615
+ }, {
20616
+ SimpleBuySell: {
20617
+ base_asset: {
20618
+ chain: "Bitcoin";
20619
+ asset: "BTC";
20620
+ } | {
20621
+ chain: "Polkadot";
20622
+ asset: "DOT";
20623
+ } | {
20624
+ chain: "Ethereum";
20625
+ asset: "FLIP";
20626
+ } | {
20627
+ chain: "Ethereum";
20628
+ asset: "ETH";
20629
+ } | {
20630
+ chain: "Ethereum";
20631
+ asset: "USDC";
20632
+ } | {
20633
+ chain: "Ethereum";
20634
+ asset: "USDT";
20635
+ } | {
20636
+ chain: "Arbitrum";
20637
+ asset: "ETH";
20638
+ } | {
20639
+ chain: "Arbitrum";
20640
+ asset: "USDC";
20641
+ } | {
20642
+ chain: "Solana";
20643
+ asset: "SOL";
20644
+ } | {
20645
+ chain: "Solana";
20646
+ asset: "USDC";
20647
+ } | {
20648
+ chain: "Assethub";
20649
+ asset: "DOT";
20650
+ } | {
20651
+ chain: "Assethub";
20652
+ asset: "USDC";
20653
+ } | {
20654
+ chain: "Assethub";
20655
+ asset: "USDT";
20656
+ };
20657
+ buy_tick: number;
20658
+ sell_tick: number;
20659
+ };
20660
+ }>, z.ZodObject<{
20661
+ InventoryBased: z.ZodObject<{
20662
+ min_buy_tick: z.ZodNumber;
20663
+ max_buy_tick: z.ZodNumber;
20664
+ min_sell_tick: z.ZodNumber;
20665
+ max_sell_tick: z.ZodNumber;
20666
+ base_asset: z.ZodUnion<[z.ZodObject<{
20667
+ chain: z.ZodLiteral<"Bitcoin">;
20668
+ asset: z.ZodLiteral<"BTC">;
20669
+ }, "strip", z.ZodTypeAny, {
20670
+ chain: "Bitcoin";
20671
+ asset: "BTC";
20672
+ }, {
20673
+ chain: "Bitcoin";
20674
+ asset: "BTC";
20675
+ }>, z.ZodObject<{
20676
+ chain: z.ZodLiteral<"Polkadot">;
20677
+ asset: z.ZodLiteral<"DOT">;
20678
+ }, "strip", z.ZodTypeAny, {
20679
+ chain: "Polkadot";
20680
+ asset: "DOT";
20681
+ }, {
20682
+ chain: "Polkadot";
20683
+ asset: "DOT";
20684
+ }>, z.ZodObject<{
20685
+ chain: z.ZodLiteral<"Ethereum">;
20686
+ asset: z.ZodLiteral<"FLIP">;
20687
+ }, "strip", z.ZodTypeAny, {
20688
+ chain: "Ethereum";
20689
+ asset: "FLIP";
20690
+ }, {
20691
+ chain: "Ethereum";
20692
+ asset: "FLIP";
20693
+ }>, z.ZodObject<{
20694
+ chain: z.ZodLiteral<"Ethereum">;
20695
+ asset: z.ZodLiteral<"ETH">;
20696
+ }, "strip", z.ZodTypeAny, {
20697
+ chain: "Ethereum";
20698
+ asset: "ETH";
20699
+ }, {
20700
+ chain: "Ethereum";
20701
+ asset: "ETH";
20702
+ }>, z.ZodObject<{
20703
+ chain: z.ZodLiteral<"Ethereum">;
20704
+ asset: z.ZodLiteral<"USDC">;
20705
+ }, "strip", z.ZodTypeAny, {
20706
+ chain: "Ethereum";
20707
+ asset: "USDC";
20708
+ }, {
20709
+ chain: "Ethereum";
20710
+ asset: "USDC";
20711
+ }>, z.ZodObject<{
20712
+ chain: z.ZodLiteral<"Ethereum">;
20713
+ asset: z.ZodLiteral<"USDT">;
20714
+ }, "strip", z.ZodTypeAny, {
20715
+ chain: "Ethereum";
20716
+ asset: "USDT";
20717
+ }, {
20718
+ chain: "Ethereum";
20719
+ asset: "USDT";
20720
+ }>, z.ZodObject<{
20721
+ chain: z.ZodLiteral<"Arbitrum">;
20722
+ asset: z.ZodLiteral<"ETH">;
20723
+ }, "strip", z.ZodTypeAny, {
20724
+ chain: "Arbitrum";
20725
+ asset: "ETH";
20726
+ }, {
20727
+ chain: "Arbitrum";
20728
+ asset: "ETH";
20729
+ }>, z.ZodObject<{
20730
+ chain: z.ZodLiteral<"Arbitrum">;
20731
+ asset: z.ZodLiteral<"USDC">;
20732
+ }, "strip", z.ZodTypeAny, {
20733
+ chain: "Arbitrum";
20734
+ asset: "USDC";
20735
+ }, {
20736
+ chain: "Arbitrum";
20737
+ asset: "USDC";
20738
+ }>, z.ZodObject<{
20739
+ chain: z.ZodLiteral<"Solana">;
20740
+ asset: z.ZodLiteral<"SOL">;
20741
+ }, "strip", z.ZodTypeAny, {
20742
+ chain: "Solana";
20743
+ asset: "SOL";
20744
+ }, {
20745
+ chain: "Solana";
20746
+ asset: "SOL";
20747
+ }>, z.ZodObject<{
20748
+ chain: z.ZodLiteral<"Solana">;
20749
+ asset: z.ZodLiteral<"USDC">;
20750
+ }, "strip", z.ZodTypeAny, {
20751
+ chain: "Solana";
20752
+ asset: "USDC";
20753
+ }, {
20754
+ chain: "Solana";
20755
+ asset: "USDC";
20756
+ }>, z.ZodObject<{
20757
+ chain: z.ZodLiteral<"Assethub">;
20758
+ asset: z.ZodLiteral<"DOT">;
20759
+ }, "strip", z.ZodTypeAny, {
20760
+ chain: "Assethub";
20761
+ asset: "DOT";
20762
+ }, {
20763
+ chain: "Assethub";
20764
+ asset: "DOT";
20765
+ }>, z.ZodObject<{
20766
+ chain: z.ZodLiteral<"Assethub">;
20767
+ asset: z.ZodLiteral<"USDC">;
20768
+ }, "strip", z.ZodTypeAny, {
20769
+ chain: "Assethub";
20770
+ asset: "USDC";
20771
+ }, {
20772
+ chain: "Assethub";
20773
+ asset: "USDC";
20774
+ }>, z.ZodObject<{
20775
+ chain: z.ZodLiteral<"Assethub">;
20776
+ asset: z.ZodLiteral<"USDT">;
20777
+ }, "strip", z.ZodTypeAny, {
20778
+ chain: "Assethub";
20779
+ asset: "USDT";
20780
+ }, {
20781
+ chain: "Assethub";
20782
+ asset: "USDT";
20783
+ }>]>;
20784
+ }, "strip", z.ZodTypeAny, {
20785
+ base_asset: {
20786
+ chain: "Bitcoin";
20787
+ asset: "BTC";
20788
+ } | {
20789
+ chain: "Polkadot";
20790
+ asset: "DOT";
20791
+ } | {
20792
+ chain: "Ethereum";
20793
+ asset: "FLIP";
20794
+ } | {
20795
+ chain: "Ethereum";
20796
+ asset: "ETH";
20797
+ } | {
20798
+ chain: "Ethereum";
20799
+ asset: "USDC";
20800
+ } | {
20801
+ chain: "Ethereum";
20802
+ asset: "USDT";
20803
+ } | {
20804
+ chain: "Arbitrum";
20805
+ asset: "ETH";
20806
+ } | {
20807
+ chain: "Arbitrum";
20808
+ asset: "USDC";
20809
+ } | {
20810
+ chain: "Solana";
20811
+ asset: "SOL";
20812
+ } | {
20813
+ chain: "Solana";
20814
+ asset: "USDC";
20815
+ } | {
20816
+ chain: "Assethub";
20817
+ asset: "DOT";
20818
+ } | {
20819
+ chain: "Assethub";
20820
+ asset: "USDC";
20821
+ } | {
20822
+ chain: "Assethub";
20823
+ asset: "USDT";
20824
+ };
20825
+ min_buy_tick: number;
20826
+ max_buy_tick: number;
20827
+ min_sell_tick: number;
20828
+ max_sell_tick: number;
20829
+ }, {
20830
+ base_asset: {
20831
+ chain: "Bitcoin";
20832
+ asset: "BTC";
20833
+ } | {
20834
+ chain: "Polkadot";
20835
+ asset: "DOT";
20836
+ } | {
20837
+ chain: "Ethereum";
20838
+ asset: "FLIP";
20839
+ } | {
20840
+ chain: "Ethereum";
20841
+ asset: "ETH";
20842
+ } | {
20843
+ chain: "Ethereum";
20844
+ asset: "USDC";
20845
+ } | {
20846
+ chain: "Ethereum";
20847
+ asset: "USDT";
20848
+ } | {
20849
+ chain: "Arbitrum";
20850
+ asset: "ETH";
20851
+ } | {
20852
+ chain: "Arbitrum";
20853
+ asset: "USDC";
20854
+ } | {
20855
+ chain: "Solana";
20856
+ asset: "SOL";
20857
+ } | {
20858
+ chain: "Solana";
20859
+ asset: "USDC";
20860
+ } | {
20861
+ chain: "Assethub";
20862
+ asset: "DOT";
20863
+ } | {
20864
+ chain: "Assethub";
20865
+ asset: "USDC";
20866
+ } | {
20867
+ chain: "Assethub";
20868
+ asset: "USDT";
20869
+ };
20870
+ min_buy_tick: number;
20871
+ max_buy_tick: number;
20872
+ min_sell_tick: number;
20873
+ max_sell_tick: number;
20874
+ }>;
20875
+ }, "strip", z.ZodTypeAny, {
20876
+ InventoryBased: {
20877
+ base_asset: {
20878
+ chain: "Bitcoin";
20879
+ asset: "BTC";
20880
+ } | {
20881
+ chain: "Polkadot";
20882
+ asset: "DOT";
20883
+ } | {
20884
+ chain: "Ethereum";
20885
+ asset: "FLIP";
20886
+ } | {
20887
+ chain: "Ethereum";
20888
+ asset: "ETH";
20889
+ } | {
20890
+ chain: "Ethereum";
20891
+ asset: "USDC";
20892
+ } | {
20893
+ chain: "Ethereum";
20894
+ asset: "USDT";
20895
+ } | {
20896
+ chain: "Arbitrum";
20897
+ asset: "ETH";
20898
+ } | {
20899
+ chain: "Arbitrum";
20900
+ asset: "USDC";
20901
+ } | {
20902
+ chain: "Solana";
20903
+ asset: "SOL";
20904
+ } | {
20905
+ chain: "Solana";
20906
+ asset: "USDC";
20907
+ } | {
20908
+ chain: "Assethub";
20909
+ asset: "DOT";
20910
+ } | {
20911
+ chain: "Assethub";
20912
+ asset: "USDC";
20913
+ } | {
20914
+ chain: "Assethub";
20915
+ asset: "USDT";
20916
+ };
20917
+ min_buy_tick: number;
20918
+ max_buy_tick: number;
20919
+ min_sell_tick: number;
20920
+ max_sell_tick: number;
20921
+ };
20922
+ }, {
20923
+ InventoryBased: {
20924
+ base_asset: {
20925
+ chain: "Bitcoin";
20926
+ asset: "BTC";
20927
+ } | {
20928
+ chain: "Polkadot";
20929
+ asset: "DOT";
20930
+ } | {
20931
+ chain: "Ethereum";
20932
+ asset: "FLIP";
20933
+ } | {
20934
+ chain: "Ethereum";
20935
+ asset: "ETH";
20936
+ } | {
20937
+ chain: "Ethereum";
20938
+ asset: "USDC";
20939
+ } | {
20940
+ chain: "Ethereum";
20941
+ asset: "USDT";
20942
+ } | {
20943
+ chain: "Arbitrum";
20944
+ asset: "ETH";
20945
+ } | {
20946
+ chain: "Arbitrum";
20947
+ asset: "USDC";
20948
+ } | {
20949
+ chain: "Solana";
20950
+ asset: "SOL";
20951
+ } | {
20952
+ chain: "Solana";
20953
+ asset: "USDC";
20954
+ } | {
20955
+ chain: "Assethub";
20956
+ asset: "DOT";
20957
+ } | {
20958
+ chain: "Assethub";
20959
+ asset: "USDC";
20960
+ } | {
20961
+ chain: "Assethub";
20962
+ asset: "USDT";
20963
+ };
20964
+ min_buy_tick: number;
20965
+ max_buy_tick: number;
20966
+ min_sell_tick: number;
20967
+ max_sell_tick: number;
20968
+ };
20969
+ }>]>;
20970
+ balance: z.ZodArray<z.ZodTuple<[z.ZodUnion<[z.ZodObject<{
20971
+ chain: z.ZodLiteral<"Bitcoin">;
20972
+ asset: z.ZodLiteral<"BTC">;
20973
+ }, "strip", z.ZodTypeAny, {
20974
+ chain: "Bitcoin";
20975
+ asset: "BTC";
20976
+ }, {
20977
+ chain: "Bitcoin";
20978
+ asset: "BTC";
20979
+ }>, z.ZodObject<{
20980
+ chain: z.ZodLiteral<"Polkadot">;
20981
+ asset: z.ZodLiteral<"DOT">;
20982
+ }, "strip", z.ZodTypeAny, {
20983
+ chain: "Polkadot";
20984
+ asset: "DOT";
20985
+ }, {
20986
+ chain: "Polkadot";
20987
+ asset: "DOT";
20988
+ }>, z.ZodObject<{
20989
+ chain: z.ZodLiteral<"Ethereum">;
20990
+ asset: z.ZodLiteral<"FLIP">;
20991
+ }, "strip", z.ZodTypeAny, {
20992
+ chain: "Ethereum";
20993
+ asset: "FLIP";
20994
+ }, {
20995
+ chain: "Ethereum";
20996
+ asset: "FLIP";
20997
+ }>, z.ZodObject<{
20998
+ chain: z.ZodLiteral<"Ethereum">;
20999
+ asset: z.ZodLiteral<"ETH">;
21000
+ }, "strip", z.ZodTypeAny, {
21001
+ chain: "Ethereum";
21002
+ asset: "ETH";
21003
+ }, {
21004
+ chain: "Ethereum";
21005
+ asset: "ETH";
21006
+ }>, z.ZodObject<{
21007
+ chain: z.ZodLiteral<"Ethereum">;
21008
+ asset: z.ZodLiteral<"USDC">;
21009
+ }, "strip", z.ZodTypeAny, {
21010
+ chain: "Ethereum";
21011
+ asset: "USDC";
21012
+ }, {
21013
+ chain: "Ethereum";
21014
+ asset: "USDC";
21015
+ }>, z.ZodObject<{
21016
+ chain: z.ZodLiteral<"Ethereum">;
21017
+ asset: z.ZodLiteral<"USDT">;
21018
+ }, "strip", z.ZodTypeAny, {
21019
+ chain: "Ethereum";
21020
+ asset: "USDT";
21021
+ }, {
21022
+ chain: "Ethereum";
21023
+ asset: "USDT";
21024
+ }>, z.ZodObject<{
21025
+ chain: z.ZodLiteral<"Arbitrum">;
21026
+ asset: z.ZodLiteral<"ETH">;
21027
+ }, "strip", z.ZodTypeAny, {
21028
+ chain: "Arbitrum";
21029
+ asset: "ETH";
21030
+ }, {
21031
+ chain: "Arbitrum";
21032
+ asset: "ETH";
21033
+ }>, z.ZodObject<{
21034
+ chain: z.ZodLiteral<"Arbitrum">;
21035
+ asset: z.ZodLiteral<"USDC">;
21036
+ }, "strip", z.ZodTypeAny, {
21037
+ chain: "Arbitrum";
21038
+ asset: "USDC";
21039
+ }, {
21040
+ chain: "Arbitrum";
21041
+ asset: "USDC";
21042
+ }>, z.ZodObject<{
21043
+ chain: z.ZodLiteral<"Solana">;
21044
+ asset: z.ZodLiteral<"SOL">;
21045
+ }, "strip", z.ZodTypeAny, {
21046
+ chain: "Solana";
21047
+ asset: "SOL";
21048
+ }, {
21049
+ chain: "Solana";
21050
+ asset: "SOL";
21051
+ }>, z.ZodObject<{
21052
+ chain: z.ZodLiteral<"Solana">;
21053
+ asset: z.ZodLiteral<"USDC">;
21054
+ }, "strip", z.ZodTypeAny, {
21055
+ chain: "Solana";
21056
+ asset: "USDC";
21057
+ }, {
21058
+ chain: "Solana";
21059
+ asset: "USDC";
21060
+ }>, z.ZodObject<{
21061
+ chain: z.ZodLiteral<"Assethub">;
21062
+ asset: z.ZodLiteral<"DOT">;
21063
+ }, "strip", z.ZodTypeAny, {
21064
+ chain: "Assethub";
21065
+ asset: "DOT";
21066
+ }, {
21067
+ chain: "Assethub";
21068
+ asset: "DOT";
21069
+ }>, z.ZodObject<{
21070
+ chain: z.ZodLiteral<"Assethub">;
21071
+ asset: z.ZodLiteral<"USDC">;
21072
+ }, "strip", z.ZodTypeAny, {
21073
+ chain: "Assethub";
21074
+ asset: "USDC";
21075
+ }, {
21076
+ chain: "Assethub";
21077
+ asset: "USDC";
21078
+ }>, z.ZodObject<{
21079
+ chain: z.ZodLiteral<"Assethub">;
21080
+ asset: z.ZodLiteral<"USDT">;
21081
+ }, "strip", z.ZodTypeAny, {
21082
+ chain: "Assethub";
21083
+ asset: "USDT";
21084
+ }, {
21085
+ chain: "Assethub";
21086
+ asset: "USDT";
21087
+ }>]>, z.ZodUnion<[z.ZodEffects<z.ZodNumber, bigint, number>, z.ZodEffects<z.ZodEffects<z.ZodString, `0x${string}`, string>, bigint, string>]>], null>, "many">;
21088
+ }, "strip", z.ZodTypeAny, {
21089
+ lp_id: string;
21090
+ strategy_id: string;
21091
+ strategy: {
21092
+ TickZeroCentered: {
21093
+ base_asset: {
21094
+ chain: "Bitcoin";
21095
+ asset: "BTC";
21096
+ } | {
21097
+ chain: "Polkadot";
21098
+ asset: "DOT";
21099
+ } | {
21100
+ chain: "Ethereum";
21101
+ asset: "FLIP";
21102
+ } | {
21103
+ chain: "Ethereum";
21104
+ asset: "ETH";
21105
+ } | {
21106
+ chain: "Ethereum";
21107
+ asset: "USDC";
21108
+ } | {
21109
+ chain: "Ethereum";
21110
+ asset: "USDT";
21111
+ } | {
21112
+ chain: "Arbitrum";
21113
+ asset: "ETH";
21114
+ } | {
21115
+ chain: "Arbitrum";
21116
+ asset: "USDC";
21117
+ } | {
21118
+ chain: "Solana";
21119
+ asset: "SOL";
21120
+ } | {
21121
+ chain: "Solana";
21122
+ asset: "USDC";
21123
+ } | {
21124
+ chain: "Assethub";
21125
+ asset: "DOT";
21126
+ } | {
21127
+ chain: "Assethub";
21128
+ asset: "USDC";
21129
+ } | {
21130
+ chain: "Assethub";
21131
+ asset: "USDT";
21132
+ };
21133
+ spread_tick: number;
21134
+ };
21135
+ } | {
21136
+ SimpleBuySell: {
21137
+ base_asset: {
21138
+ chain: "Bitcoin";
21139
+ asset: "BTC";
21140
+ } | {
21141
+ chain: "Polkadot";
21142
+ asset: "DOT";
21143
+ } | {
21144
+ chain: "Ethereum";
21145
+ asset: "FLIP";
21146
+ } | {
21147
+ chain: "Ethereum";
21148
+ asset: "ETH";
21149
+ } | {
21150
+ chain: "Ethereum";
21151
+ asset: "USDC";
21152
+ } | {
21153
+ chain: "Ethereum";
21154
+ asset: "USDT";
21155
+ } | {
21156
+ chain: "Arbitrum";
21157
+ asset: "ETH";
21158
+ } | {
21159
+ chain: "Arbitrum";
21160
+ asset: "USDC";
21161
+ } | {
21162
+ chain: "Solana";
21163
+ asset: "SOL";
21164
+ } | {
21165
+ chain: "Solana";
21166
+ asset: "USDC";
21167
+ } | {
21168
+ chain: "Assethub";
21169
+ asset: "DOT";
21170
+ } | {
21171
+ chain: "Assethub";
21172
+ asset: "USDC";
21173
+ } | {
21174
+ chain: "Assethub";
21175
+ asset: "USDT";
21176
+ };
21177
+ buy_tick: number;
21178
+ sell_tick: number;
21179
+ };
21180
+ } | {
21181
+ InventoryBased: {
21182
+ base_asset: {
21183
+ chain: "Bitcoin";
21184
+ asset: "BTC";
21185
+ } | {
21186
+ chain: "Polkadot";
21187
+ asset: "DOT";
21188
+ } | {
21189
+ chain: "Ethereum";
21190
+ asset: "FLIP";
21191
+ } | {
21192
+ chain: "Ethereum";
21193
+ asset: "ETH";
21194
+ } | {
21195
+ chain: "Ethereum";
21196
+ asset: "USDC";
21197
+ } | {
21198
+ chain: "Ethereum";
21199
+ asset: "USDT";
21200
+ } | {
21201
+ chain: "Arbitrum";
21202
+ asset: "ETH";
21203
+ } | {
21204
+ chain: "Arbitrum";
21205
+ asset: "USDC";
21206
+ } | {
21207
+ chain: "Solana";
21208
+ asset: "SOL";
21209
+ } | {
21210
+ chain: "Solana";
21211
+ asset: "USDC";
21212
+ } | {
21213
+ chain: "Assethub";
21214
+ asset: "DOT";
21215
+ } | {
21216
+ chain: "Assethub";
21217
+ asset: "USDC";
21218
+ } | {
21219
+ chain: "Assethub";
21220
+ asset: "USDT";
21221
+ };
21222
+ min_buy_tick: number;
21223
+ max_buy_tick: number;
21224
+ min_sell_tick: number;
21225
+ max_sell_tick: number;
21226
+ };
21227
+ };
21228
+ balance: [{
21229
+ chain: "Bitcoin";
21230
+ asset: "BTC";
21231
+ } | {
21232
+ chain: "Polkadot";
21233
+ asset: "DOT";
21234
+ } | {
21235
+ chain: "Ethereum";
21236
+ asset: "FLIP";
21237
+ } | {
21238
+ chain: "Ethereum";
21239
+ asset: "ETH";
21240
+ } | {
21241
+ chain: "Ethereum";
21242
+ asset: "USDC";
21243
+ } | {
21244
+ chain: "Ethereum";
21245
+ asset: "USDT";
21246
+ } | {
21247
+ chain: "Arbitrum";
21248
+ asset: "ETH";
21249
+ } | {
21250
+ chain: "Arbitrum";
21251
+ asset: "USDC";
21252
+ } | {
21253
+ chain: "Solana";
21254
+ asset: "SOL";
21255
+ } | {
21256
+ chain: "Solana";
21257
+ asset: "USDC";
21258
+ } | {
21259
+ chain: "Assethub";
21260
+ asset: "DOT";
21261
+ } | {
21262
+ chain: "Assethub";
21263
+ asset: "USDC";
21264
+ } | {
21265
+ chain: "Assethub";
21266
+ asset: "USDT";
21267
+ }, bigint][];
21268
+ }, {
21269
+ lp_id: string;
21270
+ strategy_id: string;
21271
+ strategy: {
21272
+ TickZeroCentered: {
21273
+ base_asset: {
21274
+ chain: "Bitcoin";
21275
+ asset: "BTC";
21276
+ } | {
21277
+ chain: "Polkadot";
21278
+ asset: "DOT";
21279
+ } | {
21280
+ chain: "Ethereum";
21281
+ asset: "FLIP";
21282
+ } | {
21283
+ chain: "Ethereum";
21284
+ asset: "ETH";
21285
+ } | {
21286
+ chain: "Ethereum";
21287
+ asset: "USDC";
21288
+ } | {
21289
+ chain: "Ethereum";
21290
+ asset: "USDT";
21291
+ } | {
21292
+ chain: "Arbitrum";
21293
+ asset: "ETH";
21294
+ } | {
21295
+ chain: "Arbitrum";
21296
+ asset: "USDC";
21297
+ } | {
21298
+ chain: "Solana";
21299
+ asset: "SOL";
21300
+ } | {
21301
+ chain: "Solana";
21302
+ asset: "USDC";
21303
+ } | {
21304
+ chain: "Assethub";
21305
+ asset: "DOT";
21306
+ } | {
21307
+ chain: "Assethub";
21308
+ asset: "USDC";
21309
+ } | {
21310
+ chain: "Assethub";
21311
+ asset: "USDT";
21312
+ };
21313
+ spread_tick: number;
21314
+ };
21315
+ } | {
21316
+ SimpleBuySell: {
21317
+ base_asset: {
21318
+ chain: "Bitcoin";
21319
+ asset: "BTC";
21320
+ } | {
21321
+ chain: "Polkadot";
21322
+ asset: "DOT";
21323
+ } | {
21324
+ chain: "Ethereum";
21325
+ asset: "FLIP";
21326
+ } | {
21327
+ chain: "Ethereum";
21328
+ asset: "ETH";
21329
+ } | {
21330
+ chain: "Ethereum";
21331
+ asset: "USDC";
21332
+ } | {
21333
+ chain: "Ethereum";
21334
+ asset: "USDT";
21335
+ } | {
21336
+ chain: "Arbitrum";
21337
+ asset: "ETH";
21338
+ } | {
21339
+ chain: "Arbitrum";
21340
+ asset: "USDC";
21341
+ } | {
21342
+ chain: "Solana";
21343
+ asset: "SOL";
21344
+ } | {
21345
+ chain: "Solana";
21346
+ asset: "USDC";
21347
+ } | {
21348
+ chain: "Assethub";
21349
+ asset: "DOT";
21350
+ } | {
21351
+ chain: "Assethub";
21352
+ asset: "USDC";
21353
+ } | {
21354
+ chain: "Assethub";
21355
+ asset: "USDT";
21356
+ };
21357
+ buy_tick: number;
21358
+ sell_tick: number;
21359
+ };
21360
+ } | {
21361
+ InventoryBased: {
21362
+ base_asset: {
21363
+ chain: "Bitcoin";
21364
+ asset: "BTC";
21365
+ } | {
21366
+ chain: "Polkadot";
21367
+ asset: "DOT";
21368
+ } | {
21369
+ chain: "Ethereum";
21370
+ asset: "FLIP";
21371
+ } | {
21372
+ chain: "Ethereum";
21373
+ asset: "ETH";
21374
+ } | {
21375
+ chain: "Ethereum";
21376
+ asset: "USDC";
21377
+ } | {
21378
+ chain: "Ethereum";
21379
+ asset: "USDT";
21380
+ } | {
21381
+ chain: "Arbitrum";
21382
+ asset: "ETH";
21383
+ } | {
21384
+ chain: "Arbitrum";
21385
+ asset: "USDC";
21386
+ } | {
21387
+ chain: "Solana";
21388
+ asset: "SOL";
21389
+ } | {
21390
+ chain: "Solana";
21391
+ asset: "USDC";
21392
+ } | {
21393
+ chain: "Assethub";
21394
+ asset: "DOT";
21395
+ } | {
21396
+ chain: "Assethub";
21397
+ asset: "USDC";
21398
+ } | {
21399
+ chain: "Assethub";
21400
+ asset: "USDT";
21401
+ };
21402
+ min_buy_tick: number;
21403
+ max_buy_tick: number;
21404
+ min_sell_tick: number;
21405
+ max_sell_tick: number;
21406
+ };
21407
+ };
21408
+ balance: [{
21409
+ chain: "Bitcoin";
21410
+ asset: "BTC";
21411
+ } | {
21412
+ chain: "Polkadot";
21413
+ asset: "DOT";
21414
+ } | {
21415
+ chain: "Ethereum";
21416
+ asset: "FLIP";
21417
+ } | {
19155
21418
  chain: "Ethereum";
19156
21419
  asset: "ETH";
19157
21420
  } | {
@@ -19300,528 +21563,992 @@ declare const rpcResult: {
19300
21563
  USDT: number | null;
19301
21564
  DOT: number | null;
19302
21565
  } | undefined;
19303
- }>;
19304
- minimum_added_funds_amount: z.ZodObject<{
19305
- Bitcoin: z.ZodObject<{
19306
- BTC: z.ZodNullable<z.ZodNumber>;
19307
- }, "strip", z.ZodTypeAny, {
19308
- BTC: number | null;
19309
- }, {
21566
+ }>;
21567
+ minimum_added_funds_amount: z.ZodObject<{
21568
+ Bitcoin: z.ZodObject<{
21569
+ BTC: z.ZodNullable<z.ZodNumber>;
21570
+ }, "strip", z.ZodTypeAny, {
21571
+ BTC: number | null;
21572
+ }, {
21573
+ BTC: number | null;
21574
+ }>;
21575
+ Ethereum: z.ZodObject<{
21576
+ ETH: z.ZodNullable<z.ZodNumber>;
21577
+ USDC: z.ZodNullable<z.ZodNumber>;
21578
+ FLIP: z.ZodNullable<z.ZodNumber>;
21579
+ USDT: z.ZodNullable<z.ZodNumber>;
21580
+ }, "strip", z.ZodTypeAny, {
21581
+ ETH: number | null;
21582
+ USDC: number | null;
21583
+ FLIP: number | null;
21584
+ USDT: number | null;
21585
+ }, {
21586
+ ETH: number | null;
21587
+ USDC: number | null;
21588
+ FLIP: number | null;
21589
+ USDT: number | null;
21590
+ }>;
21591
+ Polkadot: z.ZodObject<{
21592
+ DOT: z.ZodNullable<z.ZodNumber>;
21593
+ }, "strip", z.ZodTypeAny, {
21594
+ DOT: number | null;
21595
+ }, {
21596
+ DOT: number | null;
21597
+ }>;
21598
+ Arbitrum: z.ZodObject<{
21599
+ ETH: z.ZodNullable<z.ZodNumber>;
21600
+ USDC: z.ZodNullable<z.ZodNumber>;
21601
+ }, "strip", z.ZodTypeAny, {
21602
+ ETH: number | null;
21603
+ USDC: number | null;
21604
+ }, {
21605
+ ETH: number | null;
21606
+ USDC: number | null;
21607
+ }>;
21608
+ Solana: z.ZodObject<{
21609
+ SOL: z.ZodNullable<z.ZodNumber>;
21610
+ USDC: z.ZodNullable<z.ZodNumber>;
21611
+ }, "strip", z.ZodTypeAny, {
21612
+ USDC: number | null;
21613
+ SOL: number | null;
21614
+ }, {
21615
+ USDC: number | null;
21616
+ SOL: number | null;
21617
+ }>;
21618
+ Assethub: z.ZodDefault<z.ZodObject<{
21619
+ DOT: z.ZodNullable<z.ZodNumber>;
21620
+ USDC: z.ZodNullable<z.ZodNumber>;
21621
+ USDT: z.ZodNullable<z.ZodNumber>;
21622
+ }, "strip", z.ZodTypeAny, {
21623
+ USDC: number | null;
21624
+ USDT: number | null;
21625
+ DOT: number | null;
21626
+ }, {
21627
+ USDC: number | null;
21628
+ USDT: number | null;
21629
+ DOT: number | null;
21630
+ }>>;
21631
+ }, "strip", z.ZodTypeAny, {
21632
+ Bitcoin: {
21633
+ BTC: number | null;
21634
+ };
21635
+ Ethereum: {
21636
+ ETH: number | null;
21637
+ USDC: number | null;
21638
+ FLIP: number | null;
21639
+ USDT: number | null;
21640
+ };
21641
+ Arbitrum: {
21642
+ ETH: number | null;
21643
+ USDC: number | null;
21644
+ };
21645
+ Solana: {
21646
+ USDC: number | null;
21647
+ SOL: number | null;
21648
+ };
21649
+ Polkadot: {
21650
+ DOT: number | null;
21651
+ };
21652
+ Assethub: {
21653
+ USDC: number | null;
21654
+ USDT: number | null;
21655
+ DOT: number | null;
21656
+ };
21657
+ }, {
21658
+ Bitcoin: {
21659
+ BTC: number | null;
21660
+ };
21661
+ Ethereum: {
21662
+ ETH: number | null;
21663
+ USDC: number | null;
21664
+ FLIP: number | null;
21665
+ USDT: number | null;
21666
+ };
21667
+ Arbitrum: {
21668
+ ETH: number | null;
21669
+ USDC: number | null;
21670
+ };
21671
+ Solana: {
21672
+ USDC: number | null;
21673
+ SOL: number | null;
21674
+ };
21675
+ Polkadot: {
21676
+ DOT: number | null;
21677
+ };
21678
+ Assethub?: {
21679
+ USDC: number | null;
21680
+ USDT: number | null;
21681
+ DOT: number | null;
21682
+ } | undefined;
21683
+ }>;
21684
+ }, "strip", z.ZodTypeAny, {
21685
+ minimum_deployment_amount: {
21686
+ Bitcoin: {
21687
+ BTC: number | null;
21688
+ };
21689
+ Ethereum: {
21690
+ ETH: number | null;
21691
+ USDC: number | null;
21692
+ FLIP: number | null;
21693
+ USDT: number | null;
21694
+ };
21695
+ Arbitrum: {
21696
+ ETH: number | null;
21697
+ USDC: number | null;
21698
+ };
21699
+ Solana: {
21700
+ USDC: number | null;
21701
+ SOL: number | null;
21702
+ };
21703
+ Polkadot: {
21704
+ DOT: number | null;
21705
+ };
21706
+ Assethub: {
21707
+ USDC: number | null;
21708
+ USDT: number | null;
21709
+ DOT: number | null;
21710
+ };
21711
+ };
21712
+ minimum_added_funds_amount: {
21713
+ Bitcoin: {
21714
+ BTC: number | null;
21715
+ };
21716
+ Ethereum: {
21717
+ ETH: number | null;
21718
+ USDC: number | null;
21719
+ FLIP: number | null;
21720
+ USDT: number | null;
21721
+ };
21722
+ Arbitrum: {
21723
+ ETH: number | null;
21724
+ USDC: number | null;
21725
+ };
21726
+ Solana: {
21727
+ USDC: number | null;
21728
+ SOL: number | null;
21729
+ };
21730
+ Polkadot: {
21731
+ DOT: number | null;
21732
+ };
21733
+ Assethub: {
21734
+ USDC: number | null;
21735
+ USDT: number | null;
21736
+ DOT: number | null;
21737
+ };
21738
+ };
21739
+ }, {
21740
+ minimum_deployment_amount: {
21741
+ Bitcoin: {
21742
+ BTC: number | null;
21743
+ };
21744
+ Ethereum: {
21745
+ ETH: number | null;
21746
+ USDC: number | null;
21747
+ FLIP: number | null;
21748
+ USDT: number | null;
21749
+ };
21750
+ Arbitrum: {
21751
+ ETH: number | null;
21752
+ USDC: number | null;
21753
+ };
21754
+ Solana: {
21755
+ USDC: number | null;
21756
+ SOL: number | null;
21757
+ };
21758
+ Polkadot: {
21759
+ DOT: number | null;
21760
+ };
21761
+ Assethub?: {
21762
+ USDC: number | null;
21763
+ USDT: number | null;
21764
+ DOT: number | null;
21765
+ } | undefined;
21766
+ };
21767
+ minimum_added_funds_amount: {
21768
+ Bitcoin: {
19310
21769
  BTC: number | null;
19311
- }>;
19312
- Ethereum: z.ZodObject<{
19313
- ETH: z.ZodNullable<z.ZodNumber>;
19314
- USDC: z.ZodNullable<z.ZodNumber>;
19315
- FLIP: z.ZodNullable<z.ZodNumber>;
19316
- USDT: z.ZodNullable<z.ZodNumber>;
19317
- }, "strip", z.ZodTypeAny, {
19318
- ETH: number | null;
19319
- USDC: number | null;
19320
- FLIP: number | null;
19321
- USDT: number | null;
19322
- }, {
21770
+ };
21771
+ Ethereum: {
19323
21772
  ETH: number | null;
19324
21773
  USDC: number | null;
19325
21774
  FLIP: number | null;
19326
21775
  USDT: number | null;
19327
- }>;
19328
- Polkadot: z.ZodObject<{
19329
- DOT: z.ZodNullable<z.ZodNumber>;
19330
- }, "strip", z.ZodTypeAny, {
19331
- DOT: number | null;
19332
- }, {
19333
- DOT: number | null;
19334
- }>;
19335
- Arbitrum: z.ZodObject<{
19336
- ETH: z.ZodNullable<z.ZodNumber>;
19337
- USDC: z.ZodNullable<z.ZodNumber>;
19338
- }, "strip", z.ZodTypeAny, {
19339
- ETH: number | null;
19340
- USDC: number | null;
19341
- }, {
21776
+ };
21777
+ Arbitrum: {
19342
21778
  ETH: number | null;
19343
21779
  USDC: number | null;
19344
- }>;
19345
- Solana: z.ZodObject<{
19346
- SOL: z.ZodNullable<z.ZodNumber>;
19347
- USDC: z.ZodNullable<z.ZodNumber>;
19348
- }, "strip", z.ZodTypeAny, {
19349
- USDC: number | null;
19350
- SOL: number | null;
19351
- }, {
21780
+ };
21781
+ Solana: {
19352
21782
  USDC: number | null;
19353
21783
  SOL: number | null;
19354
- }>;
19355
- Assethub: z.ZodDefault<z.ZodObject<{
19356
- DOT: z.ZodNullable<z.ZodNumber>;
19357
- USDC: z.ZodNullable<z.ZodNumber>;
19358
- USDT: z.ZodNullable<z.ZodNumber>;
19359
- }, "strip", z.ZodTypeAny, {
19360
- USDC: number | null;
19361
- USDT: number | null;
21784
+ };
21785
+ Polkadot: {
19362
21786
  DOT: number | null;
19363
- }, {
21787
+ };
21788
+ Assethub?: {
19364
21789
  USDC: number | null;
19365
21790
  USDT: number | null;
19366
21791
  DOT: number | null;
19367
- }>>;
21792
+ } | undefined;
21793
+ };
21794
+ }>;
21795
+ readonly cf_available_pools: z.ZodArray<z.ZodObject<{
21796
+ base: z.ZodEffects<z.ZodUnion<[z.ZodObject<{
21797
+ chain: z.ZodLiteral<"Bitcoin">;
21798
+ asset: z.ZodLiteral<"BTC">;
21799
+ }, "strip", z.ZodTypeAny, {
21800
+ chain: "Bitcoin";
21801
+ asset: "BTC";
21802
+ }, {
21803
+ chain: "Bitcoin";
21804
+ asset: "BTC";
21805
+ }>, z.ZodObject<{
21806
+ chain: z.ZodLiteral<"Polkadot">;
21807
+ asset: z.ZodLiteral<"DOT">;
21808
+ }, "strip", z.ZodTypeAny, {
21809
+ chain: "Polkadot";
21810
+ asset: "DOT";
21811
+ }, {
21812
+ chain: "Polkadot";
21813
+ asset: "DOT";
21814
+ }>, z.ZodObject<{
21815
+ chain: z.ZodLiteral<"Ethereum">;
21816
+ asset: z.ZodLiteral<"FLIP">;
21817
+ }, "strip", z.ZodTypeAny, {
21818
+ chain: "Ethereum";
21819
+ asset: "FLIP";
21820
+ }, {
21821
+ chain: "Ethereum";
21822
+ asset: "FLIP";
21823
+ }>, z.ZodObject<{
21824
+ chain: z.ZodLiteral<"Ethereum">;
21825
+ asset: z.ZodLiteral<"ETH">;
21826
+ }, "strip", z.ZodTypeAny, {
21827
+ chain: "Ethereum";
21828
+ asset: "ETH";
21829
+ }, {
21830
+ chain: "Ethereum";
21831
+ asset: "ETH";
21832
+ }>, z.ZodObject<{
21833
+ chain: z.ZodLiteral<"Ethereum">;
21834
+ asset: z.ZodLiteral<"USDC">;
21835
+ }, "strip", z.ZodTypeAny, {
21836
+ chain: "Ethereum";
21837
+ asset: "USDC";
21838
+ }, {
21839
+ chain: "Ethereum";
21840
+ asset: "USDC";
21841
+ }>, z.ZodObject<{
21842
+ chain: z.ZodLiteral<"Ethereum">;
21843
+ asset: z.ZodLiteral<"USDT">;
21844
+ }, "strip", z.ZodTypeAny, {
21845
+ chain: "Ethereum";
21846
+ asset: "USDT";
21847
+ }, {
21848
+ chain: "Ethereum";
21849
+ asset: "USDT";
21850
+ }>, z.ZodObject<{
21851
+ chain: z.ZodLiteral<"Arbitrum">;
21852
+ asset: z.ZodLiteral<"ETH">;
21853
+ }, "strip", z.ZodTypeAny, {
21854
+ chain: "Arbitrum";
21855
+ asset: "ETH";
21856
+ }, {
21857
+ chain: "Arbitrum";
21858
+ asset: "ETH";
21859
+ }>, z.ZodObject<{
21860
+ chain: z.ZodLiteral<"Arbitrum">;
21861
+ asset: z.ZodLiteral<"USDC">;
21862
+ }, "strip", z.ZodTypeAny, {
21863
+ chain: "Arbitrum";
21864
+ asset: "USDC";
21865
+ }, {
21866
+ chain: "Arbitrum";
21867
+ asset: "USDC";
21868
+ }>, z.ZodObject<{
21869
+ chain: z.ZodLiteral<"Solana">;
21870
+ asset: z.ZodLiteral<"SOL">;
21871
+ }, "strip", z.ZodTypeAny, {
21872
+ chain: "Solana";
21873
+ asset: "SOL";
21874
+ }, {
21875
+ chain: "Solana";
21876
+ asset: "SOL";
21877
+ }>, z.ZodObject<{
21878
+ chain: z.ZodLiteral<"Solana">;
21879
+ asset: z.ZodLiteral<"USDC">;
21880
+ }, "strip", z.ZodTypeAny, {
21881
+ chain: "Solana";
21882
+ asset: "USDC";
21883
+ }, {
21884
+ chain: "Solana";
21885
+ asset: "USDC";
21886
+ }>, z.ZodObject<{
21887
+ chain: z.ZodLiteral<"Assethub">;
21888
+ asset: z.ZodLiteral<"DOT">;
21889
+ }, "strip", z.ZodTypeAny, {
21890
+ chain: "Assethub";
21891
+ asset: "DOT";
21892
+ }, {
21893
+ chain: "Assethub";
21894
+ asset: "DOT";
21895
+ }>, z.ZodObject<{
21896
+ chain: z.ZodLiteral<"Assethub">;
21897
+ asset: z.ZodLiteral<"USDC">;
21898
+ }, "strip", z.ZodTypeAny, {
21899
+ chain: "Assethub";
21900
+ asset: "USDC";
21901
+ }, {
21902
+ chain: "Assethub";
21903
+ asset: "USDC";
21904
+ }>, z.ZodObject<{
21905
+ chain: z.ZodLiteral<"Assethub">;
21906
+ asset: z.ZodLiteral<"USDT">;
21907
+ }, "strip", z.ZodTypeAny, {
21908
+ chain: "Assethub";
21909
+ asset: "USDT";
21910
+ }, {
21911
+ chain: "Assethub";
21912
+ asset: "USDT";
21913
+ }>]>, {
21914
+ chain: "Bitcoin";
21915
+ asset: "BTC";
21916
+ } | {
21917
+ chain: "Polkadot";
21918
+ asset: "DOT";
21919
+ } | {
21920
+ chain: "Ethereum";
21921
+ asset: "FLIP";
21922
+ } | {
21923
+ chain: "Ethereum";
21924
+ asset: "ETH";
21925
+ } | {
21926
+ chain: "Ethereum";
21927
+ asset: "USDT";
21928
+ } | {
21929
+ chain: "Arbitrum";
21930
+ asset: "ETH";
21931
+ } | {
21932
+ chain: "Arbitrum";
21933
+ asset: "USDC";
21934
+ } | {
21935
+ chain: "Solana";
21936
+ asset: "SOL";
21937
+ } | {
21938
+ chain: "Solana";
21939
+ asset: "USDC";
21940
+ } | {
21941
+ chain: "Assethub";
21942
+ asset: "DOT";
21943
+ } | {
21944
+ chain: "Assethub";
21945
+ asset: "USDC";
21946
+ } | {
21947
+ chain: "Assethub";
21948
+ asset: "USDT";
21949
+ }, {
21950
+ chain: "Bitcoin";
21951
+ asset: "BTC";
21952
+ } | {
21953
+ chain: "Polkadot";
21954
+ asset: "DOT";
21955
+ } | {
21956
+ chain: "Ethereum";
21957
+ asset: "FLIP";
21958
+ } | {
21959
+ chain: "Ethereum";
21960
+ asset: "ETH";
21961
+ } | {
21962
+ chain: "Ethereum";
21963
+ asset: "USDC";
21964
+ } | {
21965
+ chain: "Ethereum";
21966
+ asset: "USDT";
21967
+ } | {
21968
+ chain: "Arbitrum";
21969
+ asset: "ETH";
21970
+ } | {
21971
+ chain: "Arbitrum";
21972
+ asset: "USDC";
21973
+ } | {
21974
+ chain: "Solana";
21975
+ asset: "SOL";
21976
+ } | {
21977
+ chain: "Solana";
21978
+ asset: "USDC";
21979
+ } | {
21980
+ chain: "Assethub";
21981
+ asset: "DOT";
21982
+ } | {
21983
+ chain: "Assethub";
21984
+ asset: "USDC";
21985
+ } | {
21986
+ chain: "Assethub";
21987
+ asset: "USDT";
21988
+ }>;
21989
+ quote: z.ZodObject<{
21990
+ chain: z.ZodLiteral<"Ethereum">;
21991
+ asset: z.ZodLiteral<"USDC">;
19368
21992
  }, "strip", z.ZodTypeAny, {
19369
- Bitcoin: {
19370
- BTC: number | null;
19371
- };
19372
- Ethereum: {
19373
- ETH: number | null;
19374
- USDC: number | null;
19375
- FLIP: number | null;
19376
- USDT: number | null;
19377
- };
19378
- Arbitrum: {
19379
- ETH: number | null;
19380
- USDC: number | null;
19381
- };
19382
- Solana: {
19383
- USDC: number | null;
19384
- SOL: number | null;
19385
- };
19386
- Polkadot: {
19387
- DOT: number | null;
19388
- };
19389
- Assethub: {
19390
- USDC: number | null;
19391
- USDT: number | null;
19392
- DOT: number | null;
19393
- };
21993
+ chain: "Ethereum";
21994
+ asset: "USDC";
19394
21995
  }, {
19395
- Bitcoin: {
19396
- BTC: number | null;
19397
- };
19398
- Ethereum: {
19399
- ETH: number | null;
19400
- USDC: number | null;
19401
- FLIP: number | null;
19402
- USDT: number | null;
19403
- };
19404
- Arbitrum: {
19405
- ETH: number | null;
19406
- USDC: number | null;
19407
- };
19408
- Solana: {
19409
- USDC: number | null;
19410
- SOL: number | null;
19411
- };
19412
- Polkadot: {
19413
- DOT: number | null;
19414
- };
19415
- Assethub?: {
19416
- USDC: number | null;
19417
- USDT: number | null;
19418
- DOT: number | null;
19419
- } | undefined;
21996
+ chain: "Ethereum";
21997
+ asset: "USDC";
19420
21998
  }>;
19421
21999
  }, "strip", z.ZodTypeAny, {
19422
- minimum_deployment_amount: {
19423
- Bitcoin: {
19424
- BTC: number | null;
19425
- };
19426
- Ethereum: {
19427
- ETH: number | null;
19428
- USDC: number | null;
19429
- FLIP: number | null;
19430
- USDT: number | null;
19431
- };
19432
- Arbitrum: {
19433
- ETH: number | null;
19434
- USDC: number | null;
19435
- };
19436
- Solana: {
19437
- USDC: number | null;
19438
- SOL: number | null;
19439
- };
19440
- Polkadot: {
19441
- DOT: number | null;
19442
- };
19443
- Assethub: {
19444
- USDC: number | null;
19445
- USDT: number | null;
19446
- DOT: number | null;
19447
- };
22000
+ base: {
22001
+ chain: "Bitcoin";
22002
+ asset: "BTC";
22003
+ } | {
22004
+ chain: "Polkadot";
22005
+ asset: "DOT";
22006
+ } | {
22007
+ chain: "Ethereum";
22008
+ asset: "FLIP";
22009
+ } | {
22010
+ chain: "Ethereum";
22011
+ asset: "ETH";
22012
+ } | {
22013
+ chain: "Ethereum";
22014
+ asset: "USDT";
22015
+ } | {
22016
+ chain: "Arbitrum";
22017
+ asset: "ETH";
22018
+ } | {
22019
+ chain: "Arbitrum";
22020
+ asset: "USDC";
22021
+ } | {
22022
+ chain: "Solana";
22023
+ asset: "SOL";
22024
+ } | {
22025
+ chain: "Solana";
22026
+ asset: "USDC";
22027
+ } | {
22028
+ chain: "Assethub";
22029
+ asset: "DOT";
22030
+ } | {
22031
+ chain: "Assethub";
22032
+ asset: "USDC";
22033
+ } | {
22034
+ chain: "Assethub";
22035
+ asset: "USDT";
19448
22036
  };
19449
- minimum_added_funds_amount: {
19450
- Bitcoin: {
19451
- BTC: number | null;
19452
- };
19453
- Ethereum: {
19454
- ETH: number | null;
19455
- USDC: number | null;
19456
- FLIP: number | null;
19457
- USDT: number | null;
19458
- };
19459
- Arbitrum: {
19460
- ETH: number | null;
19461
- USDC: number | null;
19462
- };
19463
- Solana: {
19464
- USDC: number | null;
19465
- SOL: number | null;
19466
- };
19467
- Polkadot: {
19468
- DOT: number | null;
19469
- };
19470
- Assethub: {
19471
- USDC: number | null;
19472
- USDT: number | null;
19473
- DOT: number | null;
19474
- };
22037
+ quote: {
22038
+ chain: "Ethereum";
22039
+ asset: "USDC";
19475
22040
  };
19476
22041
  }, {
19477
- minimum_deployment_amount: {
19478
- Bitcoin: {
19479
- BTC: number | null;
19480
- };
19481
- Ethereum: {
19482
- ETH: number | null;
19483
- USDC: number | null;
19484
- FLIP: number | null;
19485
- USDT: number | null;
19486
- };
19487
- Arbitrum: {
19488
- ETH: number | null;
19489
- USDC: number | null;
19490
- };
19491
- Solana: {
19492
- USDC: number | null;
19493
- SOL: number | null;
19494
- };
19495
- Polkadot: {
19496
- DOT: number | null;
19497
- };
19498
- Assethub?: {
19499
- USDC: number | null;
19500
- USDT: number | null;
19501
- DOT: number | null;
19502
- } | undefined;
19503
- };
19504
- minimum_added_funds_amount: {
19505
- Bitcoin: {
19506
- BTC: number | null;
19507
- };
19508
- Ethereum: {
19509
- ETH: number | null;
19510
- USDC: number | null;
19511
- FLIP: number | null;
19512
- USDT: number | null;
19513
- };
19514
- Arbitrum: {
19515
- ETH: number | null;
19516
- USDC: number | null;
19517
- };
19518
- Solana: {
19519
- USDC: number | null;
19520
- SOL: number | null;
19521
- };
19522
- Polkadot: {
19523
- DOT: number | null;
19524
- };
19525
- Assethub?: {
19526
- USDC: number | null;
19527
- USDT: number | null;
19528
- DOT: number | null;
19529
- } | undefined;
22042
+ base: {
22043
+ chain: "Bitcoin";
22044
+ asset: "BTC";
22045
+ } | {
22046
+ chain: "Polkadot";
22047
+ asset: "DOT";
22048
+ } | {
22049
+ chain: "Ethereum";
22050
+ asset: "FLIP";
22051
+ } | {
22052
+ chain: "Ethereum";
22053
+ asset: "ETH";
22054
+ } | {
22055
+ chain: "Ethereum";
22056
+ asset: "USDC";
22057
+ } | {
22058
+ chain: "Ethereum";
22059
+ asset: "USDT";
22060
+ } | {
22061
+ chain: "Arbitrum";
22062
+ asset: "ETH";
22063
+ } | {
22064
+ chain: "Arbitrum";
22065
+ asset: "USDC";
22066
+ } | {
22067
+ chain: "Solana";
22068
+ asset: "SOL";
22069
+ } | {
22070
+ chain: "Solana";
22071
+ asset: "USDC";
22072
+ } | {
22073
+ chain: "Assethub";
22074
+ asset: "DOT";
22075
+ } | {
22076
+ chain: "Assethub";
22077
+ asset: "USDC";
22078
+ } | {
22079
+ chain: "Assethub";
22080
+ asset: "USDT";
19530
22081
  };
19531
- }>;
19532
- readonly cf_available_pools: z.ZodArray<z.ZodObject<{
19533
- base: z.ZodEffects<z.ZodUnion<[z.ZodObject<{
19534
- chain: z.ZodLiteral<"Bitcoin">;
19535
- asset: z.ZodLiteral<"BTC">;
22082
+ quote: {
22083
+ chain: "Ethereum";
22084
+ asset: "USDC";
22085
+ };
22086
+ }>, "many">;
22087
+ readonly cf_safe_mode_statuses: z.ZodUnion<[z.ZodObject<{
22088
+ emissions: z.ZodObject<{
22089
+ emissions_sync_enabled: z.ZodBoolean;
19536
22090
  }, "strip", z.ZodTypeAny, {
19537
- chain: "Bitcoin";
19538
- asset: "BTC";
22091
+ emissions_sync_enabled: boolean;
19539
22092
  }, {
19540
- chain: "Bitcoin";
19541
- asset: "BTC";
19542
- }>, z.ZodObject<{
19543
- chain: z.ZodLiteral<"Polkadot">;
19544
- asset: z.ZodLiteral<"DOT">;
22093
+ emissions_sync_enabled: boolean;
22094
+ }>;
22095
+ funding: z.ZodObject<{
22096
+ redeem_enabled: z.ZodBoolean;
19545
22097
  }, "strip", z.ZodTypeAny, {
19546
- chain: "Polkadot";
19547
- asset: "DOT";
22098
+ redeem_enabled: boolean;
19548
22099
  }, {
19549
- chain: "Polkadot";
19550
- asset: "DOT";
19551
- }>, z.ZodObject<{
19552
- chain: z.ZodLiteral<"Ethereum">;
19553
- asset: z.ZodLiteral<"FLIP">;
22100
+ redeem_enabled: boolean;
22101
+ }>;
22102
+ swapping: z.ZodObject<{
22103
+ swaps_enabled: z.ZodBoolean;
22104
+ withdrawals_enabled: z.ZodBoolean;
22105
+ broker_registration_enabled: z.ZodBoolean;
19554
22106
  }, "strip", z.ZodTypeAny, {
19555
- chain: "Ethereum";
19556
- asset: "FLIP";
22107
+ swaps_enabled: boolean;
22108
+ withdrawals_enabled: boolean;
22109
+ broker_registration_enabled: boolean;
19557
22110
  }, {
19558
- chain: "Ethereum";
19559
- asset: "FLIP";
19560
- }>, z.ZodObject<{
19561
- chain: z.ZodLiteral<"Ethereum">;
19562
- asset: z.ZodLiteral<"ETH">;
22111
+ swaps_enabled: boolean;
22112
+ withdrawals_enabled: boolean;
22113
+ broker_registration_enabled: boolean;
22114
+ }>;
22115
+ liquidity_provider: z.ZodObject<{
22116
+ deposit_enabled: z.ZodBoolean;
22117
+ withdrawal_enabled: z.ZodBoolean;
22118
+ internal_swaps_enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
19563
22119
  }, "strip", z.ZodTypeAny, {
19564
- chain: "Ethereum";
19565
- asset: "ETH";
22120
+ deposit_enabled: boolean;
22121
+ withdrawal_enabled: boolean;
22122
+ internal_swaps_enabled: boolean;
19566
22123
  }, {
19567
- chain: "Ethereum";
19568
- asset: "ETH";
19569
- }>, z.ZodObject<{
19570
- chain: z.ZodLiteral<"Ethereum">;
19571
- asset: z.ZodLiteral<"USDC">;
22124
+ deposit_enabled: boolean;
22125
+ withdrawal_enabled: boolean;
22126
+ internal_swaps_enabled?: boolean | undefined;
22127
+ }>;
22128
+ validator: z.ZodObject<{
22129
+ authority_rotation_enabled: z.ZodBoolean;
22130
+ start_bidding_enabled: z.ZodBoolean;
22131
+ stop_bidding_enabled: z.ZodBoolean;
19572
22132
  }, "strip", z.ZodTypeAny, {
19573
- chain: "Ethereum";
19574
- asset: "USDC";
22133
+ authority_rotation_enabled: boolean;
22134
+ start_bidding_enabled: boolean;
22135
+ stop_bidding_enabled: boolean;
19575
22136
  }, {
19576
- chain: "Ethereum";
19577
- asset: "USDC";
19578
- }>, z.ZodObject<{
19579
- chain: z.ZodLiteral<"Ethereum">;
19580
- asset: z.ZodLiteral<"USDT">;
22137
+ authority_rotation_enabled: boolean;
22138
+ start_bidding_enabled: boolean;
22139
+ stop_bidding_enabled: boolean;
22140
+ }>;
22141
+ pools: z.ZodObject<{
22142
+ range_order_update_enabled: z.ZodBoolean;
22143
+ limit_order_update_enabled: z.ZodBoolean;
19581
22144
  }, "strip", z.ZodTypeAny, {
19582
- chain: "Ethereum";
19583
- asset: "USDT";
22145
+ range_order_update_enabled: boolean;
22146
+ limit_order_update_enabled: boolean;
19584
22147
  }, {
19585
- chain: "Ethereum";
19586
- asset: "USDT";
19587
- }>, z.ZodObject<{
19588
- chain: z.ZodLiteral<"Arbitrum">;
19589
- asset: z.ZodLiteral<"ETH">;
22148
+ range_order_update_enabled: boolean;
22149
+ limit_order_update_enabled: boolean;
22150
+ }>;
22151
+ trading_strategies: z.ZodDefault<z.ZodOptional<z.ZodObject<{
22152
+ strategy_updates_enabled: z.ZodBoolean;
22153
+ strategy_closure_enabled: z.ZodBoolean;
22154
+ strategy_execution_enabled: z.ZodBoolean;
19590
22155
  }, "strip", z.ZodTypeAny, {
19591
- chain: "Arbitrum";
19592
- asset: "ETH";
22156
+ strategy_updates_enabled: boolean;
22157
+ strategy_closure_enabled: boolean;
22158
+ strategy_execution_enabled: boolean;
19593
22159
  }, {
19594
- chain: "Arbitrum";
19595
- asset: "ETH";
19596
- }>, z.ZodObject<{
19597
- chain: z.ZodLiteral<"Arbitrum">;
19598
- asset: z.ZodLiteral<"USDC">;
22160
+ strategy_updates_enabled: boolean;
22161
+ strategy_closure_enabled: boolean;
22162
+ strategy_execution_enabled: boolean;
22163
+ }>>>;
22164
+ reputation: z.ZodObject<{
22165
+ reporting_enabled: z.ZodBoolean;
19599
22166
  }, "strip", z.ZodTypeAny, {
19600
- chain: "Arbitrum";
19601
- asset: "USDC";
22167
+ reporting_enabled: boolean;
19602
22168
  }, {
19603
- chain: "Arbitrum";
19604
- asset: "USDC";
19605
- }>, z.ZodObject<{
19606
- chain: z.ZodLiteral<"Solana">;
19607
- asset: z.ZodLiteral<"SOL">;
22169
+ reporting_enabled: boolean;
22170
+ }>;
22171
+ asset_balances: z.ZodObject<{
22172
+ reconciliation_enabled: z.ZodBoolean;
19608
22173
  }, "strip", z.ZodTypeAny, {
19609
- chain: "Solana";
19610
- asset: "SOL";
22174
+ reconciliation_enabled: boolean;
19611
22175
  }, {
19612
- chain: "Solana";
19613
- asset: "SOL";
19614
- }>, z.ZodObject<{
19615
- chain: z.ZodLiteral<"Solana">;
19616
- asset: z.ZodLiteral<"USDC">;
22176
+ reconciliation_enabled: boolean;
22177
+ }>;
22178
+ threshold_signature_evm: z.ZodObject<{
22179
+ slashing_enabled: z.ZodBoolean;
19617
22180
  }, "strip", z.ZodTypeAny, {
19618
- chain: "Solana";
19619
- asset: "USDC";
22181
+ slashing_enabled: boolean;
19620
22182
  }, {
19621
- chain: "Solana";
19622
- asset: "USDC";
19623
- }>, z.ZodObject<{
19624
- chain: z.ZodLiteral<"Assethub">;
19625
- asset: z.ZodLiteral<"DOT">;
22183
+ slashing_enabled: boolean;
22184
+ }>;
22185
+ threshold_signature_bitcoin: z.ZodObject<{
22186
+ slashing_enabled: z.ZodBoolean;
19626
22187
  }, "strip", z.ZodTypeAny, {
19627
- chain: "Assethub";
19628
- asset: "DOT";
22188
+ slashing_enabled: boolean;
19629
22189
  }, {
19630
- chain: "Assethub";
19631
- asset: "DOT";
19632
- }>, z.ZodObject<{
19633
- chain: z.ZodLiteral<"Assethub">;
19634
- asset: z.ZodLiteral<"USDC">;
22190
+ slashing_enabled: boolean;
22191
+ }>;
22192
+ threshold_signature_polkadot: z.ZodObject<{
22193
+ slashing_enabled: z.ZodBoolean;
19635
22194
  }, "strip", z.ZodTypeAny, {
19636
- chain: "Assethub";
19637
- asset: "USDC";
22195
+ slashing_enabled: boolean;
22196
+ }, {
22197
+ slashing_enabled: boolean;
22198
+ }>;
22199
+ threshold_signature_solana: z.ZodObject<{
22200
+ slashing_enabled: z.ZodBoolean;
22201
+ }, "strip", z.ZodTypeAny, {
22202
+ slashing_enabled: boolean;
22203
+ }, {
22204
+ slashing_enabled: boolean;
22205
+ }>;
22206
+ broadcast_ethereum: z.ZodObject<{
22207
+ retry_enabled: z.ZodBoolean;
22208
+ }, "strip", z.ZodTypeAny, {
22209
+ retry_enabled: boolean;
22210
+ }, {
22211
+ retry_enabled: boolean;
22212
+ }>;
22213
+ broadcast_bitcoin: z.ZodObject<{
22214
+ retry_enabled: z.ZodBoolean;
22215
+ }, "strip", z.ZodTypeAny, {
22216
+ retry_enabled: boolean;
22217
+ }, {
22218
+ retry_enabled: boolean;
22219
+ }>;
22220
+ broadcast_polkadot: z.ZodObject<{
22221
+ retry_enabled: z.ZodBoolean;
22222
+ }, "strip", z.ZodTypeAny, {
22223
+ retry_enabled: boolean;
22224
+ }, {
22225
+ retry_enabled: boolean;
22226
+ }>;
22227
+ broadcast_arbitrum: z.ZodObject<{
22228
+ retry_enabled: z.ZodBoolean;
22229
+ }, "strip", z.ZodTypeAny, {
22230
+ retry_enabled: boolean;
22231
+ }, {
22232
+ retry_enabled: boolean;
22233
+ }>;
22234
+ broadcast_solana: z.ZodObject<{
22235
+ retry_enabled: z.ZodBoolean;
22236
+ }, "strip", z.ZodTypeAny, {
22237
+ retry_enabled: boolean;
22238
+ }, {
22239
+ retry_enabled: boolean;
22240
+ }>;
22241
+ broadcast_assethub: z.ZodObject<{
22242
+ retry_enabled: z.ZodBoolean;
22243
+ }, "strip", z.ZodTypeAny, {
22244
+ retry_enabled: boolean;
22245
+ }, {
22246
+ retry_enabled: boolean;
22247
+ }>;
22248
+ } & {
22249
+ ingress_egress_ethereum: z.ZodObject<{
22250
+ boost_deposits_enabled: z.ZodBoolean;
22251
+ add_boost_funds_enabled: z.ZodBoolean;
22252
+ stop_boosting_enabled: z.ZodBoolean;
22253
+ deposits_enabled: z.ZodBoolean;
22254
+ }, "strip", z.ZodTypeAny, {
22255
+ boost_deposits_enabled: boolean;
22256
+ add_boost_funds_enabled: boolean;
22257
+ stop_boosting_enabled: boolean;
22258
+ deposits_enabled: boolean;
22259
+ }, {
22260
+ boost_deposits_enabled: boolean;
22261
+ add_boost_funds_enabled: boolean;
22262
+ stop_boosting_enabled: boolean;
22263
+ deposits_enabled: boolean;
22264
+ }>;
22265
+ ingress_egress_bitcoin: z.ZodObject<{
22266
+ boost_deposits_enabled: z.ZodBoolean;
22267
+ add_boost_funds_enabled: z.ZodBoolean;
22268
+ stop_boosting_enabled: z.ZodBoolean;
22269
+ deposits_enabled: z.ZodBoolean;
22270
+ }, "strip", z.ZodTypeAny, {
22271
+ boost_deposits_enabled: boolean;
22272
+ add_boost_funds_enabled: boolean;
22273
+ stop_boosting_enabled: boolean;
22274
+ deposits_enabled: boolean;
22275
+ }, {
22276
+ boost_deposits_enabled: boolean;
22277
+ add_boost_funds_enabled: boolean;
22278
+ stop_boosting_enabled: boolean;
22279
+ deposits_enabled: boolean;
22280
+ }>;
22281
+ ingress_egress_polkadot: z.ZodObject<{
22282
+ boost_deposits_enabled: z.ZodBoolean;
22283
+ add_boost_funds_enabled: z.ZodBoolean;
22284
+ stop_boosting_enabled: z.ZodBoolean;
22285
+ deposits_enabled: z.ZodBoolean;
22286
+ }, "strip", z.ZodTypeAny, {
22287
+ boost_deposits_enabled: boolean;
22288
+ add_boost_funds_enabled: boolean;
22289
+ stop_boosting_enabled: boolean;
22290
+ deposits_enabled: boolean;
19638
22291
  }, {
19639
- chain: "Assethub";
19640
- asset: "USDC";
19641
- }>, z.ZodObject<{
19642
- chain: z.ZodLiteral<"Assethub">;
19643
- asset: z.ZodLiteral<"USDT">;
22292
+ boost_deposits_enabled: boolean;
22293
+ add_boost_funds_enabled: boolean;
22294
+ stop_boosting_enabled: boolean;
22295
+ deposits_enabled: boolean;
22296
+ }>;
22297
+ ingress_egress_arbitrum: z.ZodObject<{
22298
+ boost_deposits_enabled: z.ZodBoolean;
22299
+ add_boost_funds_enabled: z.ZodBoolean;
22300
+ stop_boosting_enabled: z.ZodBoolean;
22301
+ deposits_enabled: z.ZodBoolean;
19644
22302
  }, "strip", z.ZodTypeAny, {
19645
- chain: "Assethub";
19646
- asset: "USDT";
22303
+ boost_deposits_enabled: boolean;
22304
+ add_boost_funds_enabled: boolean;
22305
+ stop_boosting_enabled: boolean;
22306
+ deposits_enabled: boolean;
19647
22307
  }, {
19648
- chain: "Assethub";
19649
- asset: "USDT";
19650
- }>]>, {
19651
- chain: "Bitcoin";
19652
- asset: "BTC";
19653
- } | {
19654
- chain: "Polkadot";
19655
- asset: "DOT";
19656
- } | {
19657
- chain: "Ethereum";
19658
- asset: "FLIP";
19659
- } | {
19660
- chain: "Ethereum";
19661
- asset: "ETH";
19662
- } | {
19663
- chain: "Ethereum";
19664
- asset: "USDT";
19665
- } | {
19666
- chain: "Arbitrum";
19667
- asset: "ETH";
19668
- } | {
19669
- chain: "Arbitrum";
19670
- asset: "USDC";
19671
- } | {
19672
- chain: "Solana";
19673
- asset: "SOL";
19674
- } | {
19675
- chain: "Solana";
19676
- asset: "USDC";
19677
- } | {
19678
- chain: "Assethub";
19679
- asset: "DOT";
19680
- } | {
19681
- chain: "Assethub";
19682
- asset: "USDC";
19683
- } | {
19684
- chain: "Assethub";
19685
- asset: "USDT";
22308
+ boost_deposits_enabled: boolean;
22309
+ add_boost_funds_enabled: boolean;
22310
+ stop_boosting_enabled: boolean;
22311
+ deposits_enabled: boolean;
22312
+ }>;
22313
+ ingress_egress_solana: z.ZodObject<{
22314
+ boost_deposits_enabled: z.ZodBoolean;
22315
+ add_boost_funds_enabled: z.ZodBoolean;
22316
+ stop_boosting_enabled: z.ZodBoolean;
22317
+ deposits_enabled: z.ZodBoolean;
22318
+ }, "strip", z.ZodTypeAny, {
22319
+ boost_deposits_enabled: boolean;
22320
+ add_boost_funds_enabled: boolean;
22321
+ stop_boosting_enabled: boolean;
22322
+ deposits_enabled: boolean;
19686
22323
  }, {
19687
- chain: "Bitcoin";
19688
- asset: "BTC";
19689
- } | {
19690
- chain: "Polkadot";
19691
- asset: "DOT";
19692
- } | {
19693
- chain: "Ethereum";
19694
- asset: "FLIP";
19695
- } | {
19696
- chain: "Ethereum";
19697
- asset: "ETH";
19698
- } | {
19699
- chain: "Ethereum";
19700
- asset: "USDC";
19701
- } | {
19702
- chain: "Ethereum";
19703
- asset: "USDT";
19704
- } | {
19705
- chain: "Arbitrum";
19706
- asset: "ETH";
19707
- } | {
19708
- chain: "Arbitrum";
19709
- asset: "USDC";
19710
- } | {
19711
- chain: "Solana";
19712
- asset: "SOL";
19713
- } | {
19714
- chain: "Solana";
19715
- asset: "USDC";
19716
- } | {
19717
- chain: "Assethub";
19718
- asset: "DOT";
19719
- } | {
19720
- chain: "Assethub";
19721
- asset: "USDC";
19722
- } | {
19723
- chain: "Assethub";
19724
- asset: "USDT";
22324
+ boost_deposits_enabled: boolean;
22325
+ add_boost_funds_enabled: boolean;
22326
+ stop_boosting_enabled: boolean;
22327
+ deposits_enabled: boolean;
19725
22328
  }>;
19726
- quote: z.ZodObject<{
19727
- chain: z.ZodLiteral<"Ethereum">;
19728
- asset: z.ZodLiteral<"USDC">;
22329
+ ingress_egress_assethub: z.ZodObject<{
22330
+ boost_deposits_enabled: z.ZodBoolean;
22331
+ add_boost_funds_enabled: z.ZodBoolean;
22332
+ stop_boosting_enabled: z.ZodBoolean;
22333
+ deposits_enabled: z.ZodBoolean;
19729
22334
  }, "strip", z.ZodTypeAny, {
19730
- chain: "Ethereum";
19731
- asset: "USDC";
22335
+ boost_deposits_enabled: boolean;
22336
+ add_boost_funds_enabled: boolean;
22337
+ stop_boosting_enabled: boolean;
22338
+ deposits_enabled: boolean;
19732
22339
  }, {
19733
- chain: "Ethereum";
19734
- asset: "USDC";
22340
+ boost_deposits_enabled: boolean;
22341
+ add_boost_funds_enabled: boolean;
22342
+ stop_boosting_enabled: boolean;
22343
+ deposits_enabled: boolean;
19735
22344
  }>;
19736
22345
  }, "strip", z.ZodTypeAny, {
19737
- base: {
19738
- chain: "Bitcoin";
19739
- asset: "BTC";
19740
- } | {
19741
- chain: "Polkadot";
19742
- asset: "DOT";
19743
- } | {
19744
- chain: "Ethereum";
19745
- asset: "FLIP";
19746
- } | {
19747
- chain: "Ethereum";
19748
- asset: "ETH";
19749
- } | {
19750
- chain: "Ethereum";
19751
- asset: "USDT";
19752
- } | {
19753
- chain: "Arbitrum";
19754
- asset: "ETH";
19755
- } | {
19756
- chain: "Arbitrum";
19757
- asset: "USDC";
19758
- } | {
19759
- chain: "Solana";
19760
- asset: "SOL";
19761
- } | {
19762
- chain: "Solana";
19763
- asset: "USDC";
19764
- } | {
19765
- chain: "Assethub";
19766
- asset: "DOT";
19767
- } | {
19768
- chain: "Assethub";
19769
- asset: "USDC";
19770
- } | {
19771
- chain: "Assethub";
19772
- asset: "USDT";
22346
+ asset_balances: {
22347
+ reconciliation_enabled: boolean;
22348
+ };
22349
+ liquidity_provider: {
22350
+ deposit_enabled: boolean;
22351
+ withdrawal_enabled: boolean;
22352
+ internal_swaps_enabled: boolean;
22353
+ };
22354
+ validator: {
22355
+ authority_rotation_enabled: boolean;
22356
+ start_bidding_enabled: boolean;
22357
+ stop_bidding_enabled: boolean;
22358
+ };
22359
+ swapping: {
22360
+ swaps_enabled: boolean;
22361
+ withdrawals_enabled: boolean;
22362
+ broker_registration_enabled: boolean;
22363
+ };
22364
+ funding: {
22365
+ redeem_enabled: boolean;
22366
+ };
22367
+ pools: {
22368
+ range_order_update_enabled: boolean;
22369
+ limit_order_update_enabled: boolean;
22370
+ };
22371
+ emissions: {
22372
+ emissions_sync_enabled: boolean;
22373
+ };
22374
+ trading_strategies: {
22375
+ strategy_updates_enabled: boolean;
22376
+ strategy_closure_enabled: boolean;
22377
+ strategy_execution_enabled: boolean;
22378
+ };
22379
+ reputation: {
22380
+ reporting_enabled: boolean;
22381
+ };
22382
+ threshold_signature_evm: {
22383
+ slashing_enabled: boolean;
22384
+ };
22385
+ threshold_signature_bitcoin: {
22386
+ slashing_enabled: boolean;
22387
+ };
22388
+ threshold_signature_polkadot: {
22389
+ slashing_enabled: boolean;
22390
+ };
22391
+ threshold_signature_solana: {
22392
+ slashing_enabled: boolean;
22393
+ };
22394
+ broadcast_ethereum: {
22395
+ retry_enabled: boolean;
22396
+ };
22397
+ broadcast_bitcoin: {
22398
+ retry_enabled: boolean;
22399
+ };
22400
+ broadcast_polkadot: {
22401
+ retry_enabled: boolean;
22402
+ };
22403
+ broadcast_arbitrum: {
22404
+ retry_enabled: boolean;
22405
+ };
22406
+ broadcast_solana: {
22407
+ retry_enabled: boolean;
22408
+ };
22409
+ broadcast_assethub: {
22410
+ retry_enabled: boolean;
22411
+ };
22412
+ ingress_egress_ethereum: {
22413
+ boost_deposits_enabled: boolean;
22414
+ add_boost_funds_enabled: boolean;
22415
+ stop_boosting_enabled: boolean;
22416
+ deposits_enabled: boolean;
22417
+ };
22418
+ ingress_egress_bitcoin: {
22419
+ boost_deposits_enabled: boolean;
22420
+ add_boost_funds_enabled: boolean;
22421
+ stop_boosting_enabled: boolean;
22422
+ deposits_enabled: boolean;
22423
+ };
22424
+ ingress_egress_polkadot: {
22425
+ boost_deposits_enabled: boolean;
22426
+ add_boost_funds_enabled: boolean;
22427
+ stop_boosting_enabled: boolean;
22428
+ deposits_enabled: boolean;
19773
22429
  };
19774
- quote: {
19775
- chain: "Ethereum";
19776
- asset: "USDC";
22430
+ ingress_egress_arbitrum: {
22431
+ boost_deposits_enabled: boolean;
22432
+ add_boost_funds_enabled: boolean;
22433
+ stop_boosting_enabled: boolean;
22434
+ deposits_enabled: boolean;
22435
+ };
22436
+ ingress_egress_solana: {
22437
+ boost_deposits_enabled: boolean;
22438
+ add_boost_funds_enabled: boolean;
22439
+ stop_boosting_enabled: boolean;
22440
+ deposits_enabled: boolean;
22441
+ };
22442
+ ingress_egress_assethub: {
22443
+ boost_deposits_enabled: boolean;
22444
+ add_boost_funds_enabled: boolean;
22445
+ stop_boosting_enabled: boolean;
22446
+ deposits_enabled: boolean;
19777
22447
  };
19778
22448
  }, {
19779
- base: {
19780
- chain: "Bitcoin";
19781
- asset: "BTC";
19782
- } | {
19783
- chain: "Polkadot";
19784
- asset: "DOT";
19785
- } | {
19786
- chain: "Ethereum";
19787
- asset: "FLIP";
19788
- } | {
19789
- chain: "Ethereum";
19790
- asset: "ETH";
19791
- } | {
19792
- chain: "Ethereum";
19793
- asset: "USDC";
19794
- } | {
19795
- chain: "Ethereum";
19796
- asset: "USDT";
19797
- } | {
19798
- chain: "Arbitrum";
19799
- asset: "ETH";
19800
- } | {
19801
- chain: "Arbitrum";
19802
- asset: "USDC";
19803
- } | {
19804
- chain: "Solana";
19805
- asset: "SOL";
19806
- } | {
19807
- chain: "Solana";
19808
- asset: "USDC";
19809
- } | {
19810
- chain: "Assethub";
19811
- asset: "DOT";
19812
- } | {
19813
- chain: "Assethub";
19814
- asset: "USDC";
19815
- } | {
19816
- chain: "Assethub";
19817
- asset: "USDT";
22449
+ asset_balances: {
22450
+ reconciliation_enabled: boolean;
19818
22451
  };
19819
- quote: {
19820
- chain: "Ethereum";
19821
- asset: "USDC";
22452
+ liquidity_provider: {
22453
+ deposit_enabled: boolean;
22454
+ withdrawal_enabled: boolean;
22455
+ internal_swaps_enabled?: boolean | undefined;
19822
22456
  };
19823
- }>, "many">;
19824
- readonly cf_safe_mode_statuses: z.ZodObject<{
22457
+ validator: {
22458
+ authority_rotation_enabled: boolean;
22459
+ start_bidding_enabled: boolean;
22460
+ stop_bidding_enabled: boolean;
22461
+ };
22462
+ swapping: {
22463
+ swaps_enabled: boolean;
22464
+ withdrawals_enabled: boolean;
22465
+ broker_registration_enabled: boolean;
22466
+ };
22467
+ funding: {
22468
+ redeem_enabled: boolean;
22469
+ };
22470
+ pools: {
22471
+ range_order_update_enabled: boolean;
22472
+ limit_order_update_enabled: boolean;
22473
+ };
22474
+ emissions: {
22475
+ emissions_sync_enabled: boolean;
22476
+ };
22477
+ reputation: {
22478
+ reporting_enabled: boolean;
22479
+ };
22480
+ threshold_signature_evm: {
22481
+ slashing_enabled: boolean;
22482
+ };
22483
+ threshold_signature_bitcoin: {
22484
+ slashing_enabled: boolean;
22485
+ };
22486
+ threshold_signature_polkadot: {
22487
+ slashing_enabled: boolean;
22488
+ };
22489
+ threshold_signature_solana: {
22490
+ slashing_enabled: boolean;
22491
+ };
22492
+ broadcast_ethereum: {
22493
+ retry_enabled: boolean;
22494
+ };
22495
+ broadcast_bitcoin: {
22496
+ retry_enabled: boolean;
22497
+ };
22498
+ broadcast_polkadot: {
22499
+ retry_enabled: boolean;
22500
+ };
22501
+ broadcast_arbitrum: {
22502
+ retry_enabled: boolean;
22503
+ };
22504
+ broadcast_solana: {
22505
+ retry_enabled: boolean;
22506
+ };
22507
+ broadcast_assethub: {
22508
+ retry_enabled: boolean;
22509
+ };
22510
+ ingress_egress_ethereum: {
22511
+ boost_deposits_enabled: boolean;
22512
+ add_boost_funds_enabled: boolean;
22513
+ stop_boosting_enabled: boolean;
22514
+ deposits_enabled: boolean;
22515
+ };
22516
+ ingress_egress_bitcoin: {
22517
+ boost_deposits_enabled: boolean;
22518
+ add_boost_funds_enabled: boolean;
22519
+ stop_boosting_enabled: boolean;
22520
+ deposits_enabled: boolean;
22521
+ };
22522
+ ingress_egress_polkadot: {
22523
+ boost_deposits_enabled: boolean;
22524
+ add_boost_funds_enabled: boolean;
22525
+ stop_boosting_enabled: boolean;
22526
+ deposits_enabled: boolean;
22527
+ };
22528
+ ingress_egress_arbitrum: {
22529
+ boost_deposits_enabled: boolean;
22530
+ add_boost_funds_enabled: boolean;
22531
+ stop_boosting_enabled: boolean;
22532
+ deposits_enabled: boolean;
22533
+ };
22534
+ ingress_egress_solana: {
22535
+ boost_deposits_enabled: boolean;
22536
+ add_boost_funds_enabled: boolean;
22537
+ stop_boosting_enabled: boolean;
22538
+ deposits_enabled: boolean;
22539
+ };
22540
+ ingress_egress_assethub: {
22541
+ boost_deposits_enabled: boolean;
22542
+ add_boost_funds_enabled: boolean;
22543
+ stop_boosting_enabled: boolean;
22544
+ deposits_enabled: boolean;
22545
+ };
22546
+ trading_strategies?: {
22547
+ strategy_updates_enabled: boolean;
22548
+ strategy_closure_enabled: boolean;
22549
+ strategy_execution_enabled: boolean;
22550
+ } | undefined;
22551
+ }>, z.ZodObject<{
19825
22552
  emissions: z.ZodObject<{
19826
22553
  emissions_sync_enabled: z.ZodBoolean;
19827
22554
  }, "strip", z.ZodTypeAny, {
@@ -19975,109 +22702,84 @@ declare const rpcResult: {
19975
22702
  }, {
19976
22703
  retry_enabled: boolean;
19977
22704
  }>;
19978
- broadcast_assethub: z.ZodDefault<z.ZodOptional<z.ZodObject<{
22705
+ broadcast_assethub: z.ZodObject<{
19979
22706
  retry_enabled: z.ZodBoolean;
19980
22707
  }, "strip", z.ZodTypeAny, {
19981
22708
  retry_enabled: boolean;
19982
22709
  }, {
19983
22710
  retry_enabled: boolean;
19984
- }>>>;
19985
- ingress_egress_ethereum: z.ZodObject<{
19986
- boost_deposits_enabled: z.ZodBoolean;
22711
+ }>;
22712
+ } & {
22713
+ lending_pools: z.ZodObject<{
19987
22714
  add_boost_funds_enabled: z.ZodBoolean;
19988
22715
  stop_boosting_enabled: z.ZodBoolean;
19989
- deposits_enabled: z.ZodBoolean;
19990
22716
  }, "strip", z.ZodTypeAny, {
19991
- boost_deposits_enabled: boolean;
19992
22717
  add_boost_funds_enabled: boolean;
19993
22718
  stop_boosting_enabled: boolean;
19994
- deposits_enabled: boolean;
19995
22719
  }, {
19996
- boost_deposits_enabled: boolean;
19997
22720
  add_boost_funds_enabled: boolean;
19998
22721
  stop_boosting_enabled: boolean;
22722
+ }>;
22723
+ ingress_egress_ethereum: z.ZodObject<{
22724
+ boost_deposits_enabled: z.ZodBoolean;
22725
+ deposits_enabled: z.ZodBoolean;
22726
+ }, "strip", z.ZodTypeAny, {
22727
+ boost_deposits_enabled: boolean;
22728
+ deposits_enabled: boolean;
22729
+ }, {
22730
+ boost_deposits_enabled: boolean;
19999
22731
  deposits_enabled: boolean;
20000
22732
  }>;
20001
22733
  ingress_egress_bitcoin: z.ZodObject<{
20002
22734
  boost_deposits_enabled: z.ZodBoolean;
20003
- add_boost_funds_enabled: z.ZodBoolean;
20004
- stop_boosting_enabled: z.ZodBoolean;
20005
22735
  deposits_enabled: z.ZodBoolean;
20006
22736
  }, "strip", z.ZodTypeAny, {
20007
22737
  boost_deposits_enabled: boolean;
20008
- add_boost_funds_enabled: boolean;
20009
- stop_boosting_enabled: boolean;
20010
22738
  deposits_enabled: boolean;
20011
22739
  }, {
20012
22740
  boost_deposits_enabled: boolean;
20013
- add_boost_funds_enabled: boolean;
20014
- stop_boosting_enabled: boolean;
20015
22741
  deposits_enabled: boolean;
20016
22742
  }>;
20017
22743
  ingress_egress_polkadot: z.ZodObject<{
20018
22744
  boost_deposits_enabled: z.ZodBoolean;
20019
- add_boost_funds_enabled: z.ZodBoolean;
20020
- stop_boosting_enabled: z.ZodBoolean;
20021
22745
  deposits_enabled: z.ZodBoolean;
20022
22746
  }, "strip", z.ZodTypeAny, {
20023
22747
  boost_deposits_enabled: boolean;
20024
- add_boost_funds_enabled: boolean;
20025
- stop_boosting_enabled: boolean;
20026
22748
  deposits_enabled: boolean;
20027
22749
  }, {
20028
22750
  boost_deposits_enabled: boolean;
20029
- add_boost_funds_enabled: boolean;
20030
- stop_boosting_enabled: boolean;
20031
22751
  deposits_enabled: boolean;
20032
22752
  }>;
20033
22753
  ingress_egress_arbitrum: z.ZodObject<{
20034
22754
  boost_deposits_enabled: z.ZodBoolean;
20035
- add_boost_funds_enabled: z.ZodBoolean;
20036
- stop_boosting_enabled: z.ZodBoolean;
20037
22755
  deposits_enabled: z.ZodBoolean;
20038
22756
  }, "strip", z.ZodTypeAny, {
20039
22757
  boost_deposits_enabled: boolean;
20040
- add_boost_funds_enabled: boolean;
20041
- stop_boosting_enabled: boolean;
20042
22758
  deposits_enabled: boolean;
20043
22759
  }, {
20044
22760
  boost_deposits_enabled: boolean;
20045
- add_boost_funds_enabled: boolean;
20046
- stop_boosting_enabled: boolean;
20047
22761
  deposits_enabled: boolean;
20048
22762
  }>;
20049
22763
  ingress_egress_solana: z.ZodObject<{
20050
22764
  boost_deposits_enabled: z.ZodBoolean;
20051
- add_boost_funds_enabled: z.ZodBoolean;
20052
- stop_boosting_enabled: z.ZodBoolean;
20053
22765
  deposits_enabled: z.ZodBoolean;
20054
22766
  }, "strip", z.ZodTypeAny, {
20055
22767
  boost_deposits_enabled: boolean;
20056
- add_boost_funds_enabled: boolean;
20057
- stop_boosting_enabled: boolean;
20058
22768
  deposits_enabled: boolean;
20059
22769
  }, {
20060
22770
  boost_deposits_enabled: boolean;
20061
- add_boost_funds_enabled: boolean;
20062
- stop_boosting_enabled: boolean;
20063
22771
  deposits_enabled: boolean;
20064
22772
  }>;
20065
- ingress_egress_assethub: z.ZodDefault<z.ZodOptional<z.ZodObject<{
22773
+ ingress_egress_assethub: z.ZodObject<{
20066
22774
  boost_deposits_enabled: z.ZodBoolean;
20067
- add_boost_funds_enabled: z.ZodBoolean;
20068
- stop_boosting_enabled: z.ZodBoolean;
20069
22775
  deposits_enabled: z.ZodBoolean;
20070
22776
  }, "strip", z.ZodTypeAny, {
20071
22777
  boost_deposits_enabled: boolean;
20072
- add_boost_funds_enabled: boolean;
20073
- stop_boosting_enabled: boolean;
20074
22778
  deposits_enabled: boolean;
20075
22779
  }, {
20076
22780
  boost_deposits_enabled: boolean;
20077
- add_boost_funds_enabled: boolean;
20078
- stop_boosting_enabled: boolean;
20079
22781
  deposits_enabled: boolean;
20080
- }>>>;
22782
+ }>;
20081
22783
  }, "strip", z.ZodTypeAny, {
20082
22784
  asset_balances: {
20083
22785
  reconciliation_enabled: boolean;
@@ -20147,39 +22849,31 @@ declare const rpcResult: {
20147
22849
  };
20148
22850
  ingress_egress_ethereum: {
20149
22851
  boost_deposits_enabled: boolean;
20150
- add_boost_funds_enabled: boolean;
20151
- stop_boosting_enabled: boolean;
20152
22852
  deposits_enabled: boolean;
20153
22853
  };
20154
22854
  ingress_egress_bitcoin: {
20155
22855
  boost_deposits_enabled: boolean;
20156
- add_boost_funds_enabled: boolean;
20157
- stop_boosting_enabled: boolean;
20158
22856
  deposits_enabled: boolean;
20159
22857
  };
20160
22858
  ingress_egress_polkadot: {
20161
22859
  boost_deposits_enabled: boolean;
20162
- add_boost_funds_enabled: boolean;
20163
- stop_boosting_enabled: boolean;
20164
22860
  deposits_enabled: boolean;
20165
22861
  };
20166
22862
  ingress_egress_arbitrum: {
20167
22863
  boost_deposits_enabled: boolean;
20168
- add_boost_funds_enabled: boolean;
20169
- stop_boosting_enabled: boolean;
20170
22864
  deposits_enabled: boolean;
20171
22865
  };
20172
22866
  ingress_egress_solana: {
20173
22867
  boost_deposits_enabled: boolean;
20174
- add_boost_funds_enabled: boolean;
20175
- stop_boosting_enabled: boolean;
20176
22868
  deposits_enabled: boolean;
20177
22869
  };
20178
22870
  ingress_egress_assethub: {
20179
22871
  boost_deposits_enabled: boolean;
22872
+ deposits_enabled: boolean;
22873
+ };
22874
+ lending_pools: {
20180
22875
  add_boost_funds_enabled: boolean;
20181
22876
  stop_boosting_enabled: boolean;
20182
- deposits_enabled: boolean;
20183
22877
  };
20184
22878
  }, {
20185
22879
  asset_balances: {
@@ -20240,51 +22934,45 @@ declare const rpcResult: {
20240
22934
  broadcast_solana: {
20241
22935
  retry_enabled: boolean;
20242
22936
  };
22937
+ broadcast_assethub: {
22938
+ retry_enabled: boolean;
22939
+ };
20243
22940
  ingress_egress_ethereum: {
20244
22941
  boost_deposits_enabled: boolean;
20245
- add_boost_funds_enabled: boolean;
20246
- stop_boosting_enabled: boolean;
20247
22942
  deposits_enabled: boolean;
20248
22943
  };
20249
22944
  ingress_egress_bitcoin: {
20250
22945
  boost_deposits_enabled: boolean;
20251
- add_boost_funds_enabled: boolean;
20252
- stop_boosting_enabled: boolean;
20253
22946
  deposits_enabled: boolean;
20254
22947
  };
20255
22948
  ingress_egress_polkadot: {
20256
22949
  boost_deposits_enabled: boolean;
20257
- add_boost_funds_enabled: boolean;
20258
- stop_boosting_enabled: boolean;
20259
22950
  deposits_enabled: boolean;
20260
22951
  };
20261
22952
  ingress_egress_arbitrum: {
20262
22953
  boost_deposits_enabled: boolean;
20263
- add_boost_funds_enabled: boolean;
20264
- stop_boosting_enabled: boolean;
20265
22954
  deposits_enabled: boolean;
20266
22955
  };
20267
22956
  ingress_egress_solana: {
20268
22957
  boost_deposits_enabled: boolean;
22958
+ deposits_enabled: boolean;
22959
+ };
22960
+ ingress_egress_assethub: {
22961
+ boost_deposits_enabled: boolean;
22962
+ deposits_enabled: boolean;
22963
+ };
22964
+ lending_pools: {
20269
22965
  add_boost_funds_enabled: boolean;
20270
22966
  stop_boosting_enabled: boolean;
20271
- deposits_enabled: boolean;
20272
22967
  };
20273
22968
  trading_strategies?: {
20274
22969
  strategy_updates_enabled: boolean;
20275
22970
  strategy_closure_enabled: boolean;
20276
22971
  strategy_execution_enabled: boolean;
20277
22972
  } | undefined;
20278
- broadcast_assethub?: {
20279
- retry_enabled: boolean;
20280
- } | undefined;
20281
- ingress_egress_assethub?: {
20282
- boost_deposits_enabled: boolean;
20283
- add_boost_funds_enabled: boolean;
20284
- stop_boosting_enabled: boolean;
20285
- deposits_enabled: boolean;
20286
- } | undefined;
20287
- }>;
22973
+ }>]>;
22974
+ readonly broker_encode_cf_parameters: z.ZodEffects<z.ZodString, `0x${string}`, string>;
22975
+ readonly cf_encode_cf_parameters: z.ZodEffects<z.ZodString, `0x${string}`, string>;
20288
22976
  };
20289
22977
  type RpcMethod = keyof RpcRequest;
20290
22978
  type RpcResponse<T extends RpcMethod> = z.input<(typeof rpcResult)[T]>;