@chainflip/rpc 1.9.4 → 1.9.5
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.cjs +3 -1
- package/dist/common.d.cts +465 -0
- package/dist/common.d.ts +465 -0
- package/dist/common.mjs +4 -2
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/parsers.cjs +113 -1
- package/dist/parsers.d.cts +465 -1
- package/dist/parsers.d.ts +465 -1
- package/dist/parsers.mjs +112 -0
- package/dist/types.d.cts +3 -1
- package/dist/types.d.ts +3 -1
- package/package.json +3 -3
package/dist/parsers.d.ts
CHANGED
|
@@ -21757,5 +21757,469 @@ declare const cfAvailablePools: z.ZodArray<z.ZodObject<{
|
|
|
21757
21757
|
asset: "USDC";
|
|
21758
21758
|
};
|
|
21759
21759
|
}>, "many">;
|
|
21760
|
+
declare const cfSafeModeStatuses: z.ZodObject<{
|
|
21761
|
+
emissions: z.ZodObject<{
|
|
21762
|
+
emissions_sync_enabled: z.ZodBoolean;
|
|
21763
|
+
}, "strip", z.ZodTypeAny, {
|
|
21764
|
+
emissions_sync_enabled: boolean;
|
|
21765
|
+
}, {
|
|
21766
|
+
emissions_sync_enabled: boolean;
|
|
21767
|
+
}>;
|
|
21768
|
+
funding: z.ZodObject<{
|
|
21769
|
+
redeem_enabled: z.ZodBoolean;
|
|
21770
|
+
}, "strip", z.ZodTypeAny, {
|
|
21771
|
+
redeem_enabled: boolean;
|
|
21772
|
+
}, {
|
|
21773
|
+
redeem_enabled: boolean;
|
|
21774
|
+
}>;
|
|
21775
|
+
swapping: z.ZodObject<{
|
|
21776
|
+
swaps_enabled: z.ZodBoolean;
|
|
21777
|
+
withdrawals_enabled: z.ZodBoolean;
|
|
21778
|
+
broker_registration_enabled: z.ZodBoolean;
|
|
21779
|
+
}, "strip", z.ZodTypeAny, {
|
|
21780
|
+
swaps_enabled: boolean;
|
|
21781
|
+
withdrawals_enabled: boolean;
|
|
21782
|
+
broker_registration_enabled: boolean;
|
|
21783
|
+
}, {
|
|
21784
|
+
swaps_enabled: boolean;
|
|
21785
|
+
withdrawals_enabled: boolean;
|
|
21786
|
+
broker_registration_enabled: boolean;
|
|
21787
|
+
}>;
|
|
21788
|
+
liquidity_provider: z.ZodObject<{
|
|
21789
|
+
deposit_enabled: z.ZodBoolean;
|
|
21790
|
+
withdrawal_enabled: z.ZodBoolean;
|
|
21791
|
+
internal_swaps_enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
21792
|
+
}, "strip", z.ZodTypeAny, {
|
|
21793
|
+
deposit_enabled: boolean;
|
|
21794
|
+
withdrawal_enabled: boolean;
|
|
21795
|
+
internal_swaps_enabled: boolean;
|
|
21796
|
+
}, {
|
|
21797
|
+
deposit_enabled: boolean;
|
|
21798
|
+
withdrawal_enabled: boolean;
|
|
21799
|
+
internal_swaps_enabled?: boolean | undefined;
|
|
21800
|
+
}>;
|
|
21801
|
+
validator: z.ZodObject<{
|
|
21802
|
+
authority_rotation_enabled: z.ZodBoolean;
|
|
21803
|
+
start_bidding_enabled: z.ZodBoolean;
|
|
21804
|
+
stop_bidding_enabled: z.ZodBoolean;
|
|
21805
|
+
}, "strip", z.ZodTypeAny, {
|
|
21806
|
+
authority_rotation_enabled: boolean;
|
|
21807
|
+
start_bidding_enabled: boolean;
|
|
21808
|
+
stop_bidding_enabled: boolean;
|
|
21809
|
+
}, {
|
|
21810
|
+
authority_rotation_enabled: boolean;
|
|
21811
|
+
start_bidding_enabled: boolean;
|
|
21812
|
+
stop_bidding_enabled: boolean;
|
|
21813
|
+
}>;
|
|
21814
|
+
pools: z.ZodObject<{
|
|
21815
|
+
range_order_update_enabled: z.ZodBoolean;
|
|
21816
|
+
limit_order_update_enabled: z.ZodBoolean;
|
|
21817
|
+
}, "strip", z.ZodTypeAny, {
|
|
21818
|
+
range_order_update_enabled: boolean;
|
|
21819
|
+
limit_order_update_enabled: boolean;
|
|
21820
|
+
}, {
|
|
21821
|
+
range_order_update_enabled: boolean;
|
|
21822
|
+
limit_order_update_enabled: boolean;
|
|
21823
|
+
}>;
|
|
21824
|
+
trading_strategies: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
21825
|
+
strategy_updates_enabled: z.ZodBoolean;
|
|
21826
|
+
strategy_closure_enabled: z.ZodBoolean;
|
|
21827
|
+
strategy_execution_enabled: z.ZodBoolean;
|
|
21828
|
+
}, "strip", z.ZodTypeAny, {
|
|
21829
|
+
strategy_updates_enabled: boolean;
|
|
21830
|
+
strategy_closure_enabled: boolean;
|
|
21831
|
+
strategy_execution_enabled: boolean;
|
|
21832
|
+
}, {
|
|
21833
|
+
strategy_updates_enabled: boolean;
|
|
21834
|
+
strategy_closure_enabled: boolean;
|
|
21835
|
+
strategy_execution_enabled: boolean;
|
|
21836
|
+
}>>>;
|
|
21837
|
+
reputation: z.ZodObject<{
|
|
21838
|
+
reporting_enabled: z.ZodBoolean;
|
|
21839
|
+
}, "strip", z.ZodTypeAny, {
|
|
21840
|
+
reporting_enabled: boolean;
|
|
21841
|
+
}, {
|
|
21842
|
+
reporting_enabled: boolean;
|
|
21843
|
+
}>;
|
|
21844
|
+
asset_balances: z.ZodObject<{
|
|
21845
|
+
reconciliation_enabled: z.ZodBoolean;
|
|
21846
|
+
}, "strip", z.ZodTypeAny, {
|
|
21847
|
+
reconciliation_enabled: boolean;
|
|
21848
|
+
}, {
|
|
21849
|
+
reconciliation_enabled: boolean;
|
|
21850
|
+
}>;
|
|
21851
|
+
threshold_signature_evm: z.ZodObject<{
|
|
21852
|
+
slashing_enabled: z.ZodBoolean;
|
|
21853
|
+
}, "strip", z.ZodTypeAny, {
|
|
21854
|
+
slashing_enabled: boolean;
|
|
21855
|
+
}, {
|
|
21856
|
+
slashing_enabled: boolean;
|
|
21857
|
+
}>;
|
|
21858
|
+
threshold_signature_bitcoin: z.ZodObject<{
|
|
21859
|
+
slashing_enabled: z.ZodBoolean;
|
|
21860
|
+
}, "strip", z.ZodTypeAny, {
|
|
21861
|
+
slashing_enabled: boolean;
|
|
21862
|
+
}, {
|
|
21863
|
+
slashing_enabled: boolean;
|
|
21864
|
+
}>;
|
|
21865
|
+
threshold_signature_polkadot: z.ZodObject<{
|
|
21866
|
+
slashing_enabled: z.ZodBoolean;
|
|
21867
|
+
}, "strip", z.ZodTypeAny, {
|
|
21868
|
+
slashing_enabled: boolean;
|
|
21869
|
+
}, {
|
|
21870
|
+
slashing_enabled: boolean;
|
|
21871
|
+
}>;
|
|
21872
|
+
threshold_signature_solana: z.ZodObject<{
|
|
21873
|
+
slashing_enabled: z.ZodBoolean;
|
|
21874
|
+
}, "strip", z.ZodTypeAny, {
|
|
21875
|
+
slashing_enabled: boolean;
|
|
21876
|
+
}, {
|
|
21877
|
+
slashing_enabled: boolean;
|
|
21878
|
+
}>;
|
|
21879
|
+
broadcast_ethereum: z.ZodObject<{
|
|
21880
|
+
retry_enabled: z.ZodBoolean;
|
|
21881
|
+
}, "strip", z.ZodTypeAny, {
|
|
21882
|
+
retry_enabled: boolean;
|
|
21883
|
+
}, {
|
|
21884
|
+
retry_enabled: boolean;
|
|
21885
|
+
}>;
|
|
21886
|
+
broadcast_bitcoin: z.ZodObject<{
|
|
21887
|
+
retry_enabled: z.ZodBoolean;
|
|
21888
|
+
}, "strip", z.ZodTypeAny, {
|
|
21889
|
+
retry_enabled: boolean;
|
|
21890
|
+
}, {
|
|
21891
|
+
retry_enabled: boolean;
|
|
21892
|
+
}>;
|
|
21893
|
+
broadcast_polkadot: z.ZodObject<{
|
|
21894
|
+
retry_enabled: z.ZodBoolean;
|
|
21895
|
+
}, "strip", z.ZodTypeAny, {
|
|
21896
|
+
retry_enabled: boolean;
|
|
21897
|
+
}, {
|
|
21898
|
+
retry_enabled: boolean;
|
|
21899
|
+
}>;
|
|
21900
|
+
broadcast_arbitrum: z.ZodObject<{
|
|
21901
|
+
retry_enabled: z.ZodBoolean;
|
|
21902
|
+
}, "strip", z.ZodTypeAny, {
|
|
21903
|
+
retry_enabled: boolean;
|
|
21904
|
+
}, {
|
|
21905
|
+
retry_enabled: boolean;
|
|
21906
|
+
}>;
|
|
21907
|
+
broadcast_solana: z.ZodObject<{
|
|
21908
|
+
retry_enabled: z.ZodBoolean;
|
|
21909
|
+
}, "strip", z.ZodTypeAny, {
|
|
21910
|
+
retry_enabled: boolean;
|
|
21911
|
+
}, {
|
|
21912
|
+
retry_enabled: boolean;
|
|
21913
|
+
}>;
|
|
21914
|
+
broadcast_assethub: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
21915
|
+
retry_enabled: z.ZodBoolean;
|
|
21916
|
+
}, "strip", z.ZodTypeAny, {
|
|
21917
|
+
retry_enabled: boolean;
|
|
21918
|
+
}, {
|
|
21919
|
+
retry_enabled: boolean;
|
|
21920
|
+
}>>>;
|
|
21921
|
+
ingress_egress_ethereum: z.ZodObject<{
|
|
21922
|
+
boost_deposits_enabled: z.ZodBoolean;
|
|
21923
|
+
add_boost_funds_enabled: z.ZodBoolean;
|
|
21924
|
+
stop_boosting_enabled: z.ZodBoolean;
|
|
21925
|
+
deposits_enabled: z.ZodBoolean;
|
|
21926
|
+
}, "strip", z.ZodTypeAny, {
|
|
21927
|
+
boost_deposits_enabled: boolean;
|
|
21928
|
+
add_boost_funds_enabled: boolean;
|
|
21929
|
+
stop_boosting_enabled: boolean;
|
|
21930
|
+
deposits_enabled: boolean;
|
|
21931
|
+
}, {
|
|
21932
|
+
boost_deposits_enabled: boolean;
|
|
21933
|
+
add_boost_funds_enabled: boolean;
|
|
21934
|
+
stop_boosting_enabled: boolean;
|
|
21935
|
+
deposits_enabled: boolean;
|
|
21936
|
+
}>;
|
|
21937
|
+
ingress_egress_bitcoin: z.ZodObject<{
|
|
21938
|
+
boost_deposits_enabled: z.ZodBoolean;
|
|
21939
|
+
add_boost_funds_enabled: z.ZodBoolean;
|
|
21940
|
+
stop_boosting_enabled: z.ZodBoolean;
|
|
21941
|
+
deposits_enabled: z.ZodBoolean;
|
|
21942
|
+
}, "strip", z.ZodTypeAny, {
|
|
21943
|
+
boost_deposits_enabled: boolean;
|
|
21944
|
+
add_boost_funds_enabled: boolean;
|
|
21945
|
+
stop_boosting_enabled: boolean;
|
|
21946
|
+
deposits_enabled: boolean;
|
|
21947
|
+
}, {
|
|
21948
|
+
boost_deposits_enabled: boolean;
|
|
21949
|
+
add_boost_funds_enabled: boolean;
|
|
21950
|
+
stop_boosting_enabled: boolean;
|
|
21951
|
+
deposits_enabled: boolean;
|
|
21952
|
+
}>;
|
|
21953
|
+
ingress_egress_polkadot: z.ZodObject<{
|
|
21954
|
+
boost_deposits_enabled: z.ZodBoolean;
|
|
21955
|
+
add_boost_funds_enabled: z.ZodBoolean;
|
|
21956
|
+
stop_boosting_enabled: z.ZodBoolean;
|
|
21957
|
+
deposits_enabled: z.ZodBoolean;
|
|
21958
|
+
}, "strip", z.ZodTypeAny, {
|
|
21959
|
+
boost_deposits_enabled: boolean;
|
|
21960
|
+
add_boost_funds_enabled: boolean;
|
|
21961
|
+
stop_boosting_enabled: boolean;
|
|
21962
|
+
deposits_enabled: boolean;
|
|
21963
|
+
}, {
|
|
21964
|
+
boost_deposits_enabled: boolean;
|
|
21965
|
+
add_boost_funds_enabled: boolean;
|
|
21966
|
+
stop_boosting_enabled: boolean;
|
|
21967
|
+
deposits_enabled: boolean;
|
|
21968
|
+
}>;
|
|
21969
|
+
ingress_egress_arbitrum: z.ZodObject<{
|
|
21970
|
+
boost_deposits_enabled: z.ZodBoolean;
|
|
21971
|
+
add_boost_funds_enabled: z.ZodBoolean;
|
|
21972
|
+
stop_boosting_enabled: z.ZodBoolean;
|
|
21973
|
+
deposits_enabled: z.ZodBoolean;
|
|
21974
|
+
}, "strip", z.ZodTypeAny, {
|
|
21975
|
+
boost_deposits_enabled: boolean;
|
|
21976
|
+
add_boost_funds_enabled: boolean;
|
|
21977
|
+
stop_boosting_enabled: boolean;
|
|
21978
|
+
deposits_enabled: boolean;
|
|
21979
|
+
}, {
|
|
21980
|
+
boost_deposits_enabled: boolean;
|
|
21981
|
+
add_boost_funds_enabled: boolean;
|
|
21982
|
+
stop_boosting_enabled: boolean;
|
|
21983
|
+
deposits_enabled: boolean;
|
|
21984
|
+
}>;
|
|
21985
|
+
ingress_egress_solana: z.ZodObject<{
|
|
21986
|
+
boost_deposits_enabled: z.ZodBoolean;
|
|
21987
|
+
add_boost_funds_enabled: z.ZodBoolean;
|
|
21988
|
+
stop_boosting_enabled: z.ZodBoolean;
|
|
21989
|
+
deposits_enabled: z.ZodBoolean;
|
|
21990
|
+
}, "strip", z.ZodTypeAny, {
|
|
21991
|
+
boost_deposits_enabled: boolean;
|
|
21992
|
+
add_boost_funds_enabled: boolean;
|
|
21993
|
+
stop_boosting_enabled: boolean;
|
|
21994
|
+
deposits_enabled: boolean;
|
|
21995
|
+
}, {
|
|
21996
|
+
boost_deposits_enabled: boolean;
|
|
21997
|
+
add_boost_funds_enabled: boolean;
|
|
21998
|
+
stop_boosting_enabled: boolean;
|
|
21999
|
+
deposits_enabled: boolean;
|
|
22000
|
+
}>;
|
|
22001
|
+
ingress_egress_assethub: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
22002
|
+
boost_deposits_enabled: z.ZodBoolean;
|
|
22003
|
+
add_boost_funds_enabled: z.ZodBoolean;
|
|
22004
|
+
stop_boosting_enabled: z.ZodBoolean;
|
|
22005
|
+
deposits_enabled: z.ZodBoolean;
|
|
22006
|
+
}, "strip", z.ZodTypeAny, {
|
|
22007
|
+
boost_deposits_enabled: boolean;
|
|
22008
|
+
add_boost_funds_enabled: boolean;
|
|
22009
|
+
stop_boosting_enabled: boolean;
|
|
22010
|
+
deposits_enabled: boolean;
|
|
22011
|
+
}, {
|
|
22012
|
+
boost_deposits_enabled: boolean;
|
|
22013
|
+
add_boost_funds_enabled: boolean;
|
|
22014
|
+
stop_boosting_enabled: boolean;
|
|
22015
|
+
deposits_enabled: boolean;
|
|
22016
|
+
}>>>;
|
|
22017
|
+
}, "strip", z.ZodTypeAny, {
|
|
22018
|
+
asset_balances: {
|
|
22019
|
+
reconciliation_enabled: boolean;
|
|
22020
|
+
};
|
|
22021
|
+
liquidity_provider: {
|
|
22022
|
+
deposit_enabled: boolean;
|
|
22023
|
+
withdrawal_enabled: boolean;
|
|
22024
|
+
internal_swaps_enabled: boolean;
|
|
22025
|
+
};
|
|
22026
|
+
validator: {
|
|
22027
|
+
authority_rotation_enabled: boolean;
|
|
22028
|
+
start_bidding_enabled: boolean;
|
|
22029
|
+
stop_bidding_enabled: boolean;
|
|
22030
|
+
};
|
|
22031
|
+
swapping: {
|
|
22032
|
+
swaps_enabled: boolean;
|
|
22033
|
+
withdrawals_enabled: boolean;
|
|
22034
|
+
broker_registration_enabled: boolean;
|
|
22035
|
+
};
|
|
22036
|
+
funding: {
|
|
22037
|
+
redeem_enabled: boolean;
|
|
22038
|
+
};
|
|
22039
|
+
pools: {
|
|
22040
|
+
range_order_update_enabled: boolean;
|
|
22041
|
+
limit_order_update_enabled: boolean;
|
|
22042
|
+
};
|
|
22043
|
+
emissions: {
|
|
22044
|
+
emissions_sync_enabled: boolean;
|
|
22045
|
+
};
|
|
22046
|
+
trading_strategies: {
|
|
22047
|
+
strategy_updates_enabled: boolean;
|
|
22048
|
+
strategy_closure_enabled: boolean;
|
|
22049
|
+
strategy_execution_enabled: boolean;
|
|
22050
|
+
};
|
|
22051
|
+
reputation: {
|
|
22052
|
+
reporting_enabled: boolean;
|
|
22053
|
+
};
|
|
22054
|
+
threshold_signature_evm: {
|
|
22055
|
+
slashing_enabled: boolean;
|
|
22056
|
+
};
|
|
22057
|
+
threshold_signature_bitcoin: {
|
|
22058
|
+
slashing_enabled: boolean;
|
|
22059
|
+
};
|
|
22060
|
+
threshold_signature_polkadot: {
|
|
22061
|
+
slashing_enabled: boolean;
|
|
22062
|
+
};
|
|
22063
|
+
threshold_signature_solana: {
|
|
22064
|
+
slashing_enabled: boolean;
|
|
22065
|
+
};
|
|
22066
|
+
broadcast_ethereum: {
|
|
22067
|
+
retry_enabled: boolean;
|
|
22068
|
+
};
|
|
22069
|
+
broadcast_bitcoin: {
|
|
22070
|
+
retry_enabled: boolean;
|
|
22071
|
+
};
|
|
22072
|
+
broadcast_polkadot: {
|
|
22073
|
+
retry_enabled: boolean;
|
|
22074
|
+
};
|
|
22075
|
+
broadcast_arbitrum: {
|
|
22076
|
+
retry_enabled: boolean;
|
|
22077
|
+
};
|
|
22078
|
+
broadcast_solana: {
|
|
22079
|
+
retry_enabled: boolean;
|
|
22080
|
+
};
|
|
22081
|
+
broadcast_assethub: {
|
|
22082
|
+
retry_enabled: boolean;
|
|
22083
|
+
};
|
|
22084
|
+
ingress_egress_ethereum: {
|
|
22085
|
+
boost_deposits_enabled: boolean;
|
|
22086
|
+
add_boost_funds_enabled: boolean;
|
|
22087
|
+
stop_boosting_enabled: boolean;
|
|
22088
|
+
deposits_enabled: boolean;
|
|
22089
|
+
};
|
|
22090
|
+
ingress_egress_bitcoin: {
|
|
22091
|
+
boost_deposits_enabled: boolean;
|
|
22092
|
+
add_boost_funds_enabled: boolean;
|
|
22093
|
+
stop_boosting_enabled: boolean;
|
|
22094
|
+
deposits_enabled: boolean;
|
|
22095
|
+
};
|
|
22096
|
+
ingress_egress_polkadot: {
|
|
22097
|
+
boost_deposits_enabled: boolean;
|
|
22098
|
+
add_boost_funds_enabled: boolean;
|
|
22099
|
+
stop_boosting_enabled: boolean;
|
|
22100
|
+
deposits_enabled: boolean;
|
|
22101
|
+
};
|
|
22102
|
+
ingress_egress_arbitrum: {
|
|
22103
|
+
boost_deposits_enabled: boolean;
|
|
22104
|
+
add_boost_funds_enabled: boolean;
|
|
22105
|
+
stop_boosting_enabled: boolean;
|
|
22106
|
+
deposits_enabled: boolean;
|
|
22107
|
+
};
|
|
22108
|
+
ingress_egress_solana: {
|
|
22109
|
+
boost_deposits_enabled: boolean;
|
|
22110
|
+
add_boost_funds_enabled: boolean;
|
|
22111
|
+
stop_boosting_enabled: boolean;
|
|
22112
|
+
deposits_enabled: boolean;
|
|
22113
|
+
};
|
|
22114
|
+
ingress_egress_assethub: {
|
|
22115
|
+
boost_deposits_enabled: boolean;
|
|
22116
|
+
add_boost_funds_enabled: boolean;
|
|
22117
|
+
stop_boosting_enabled: boolean;
|
|
22118
|
+
deposits_enabled: boolean;
|
|
22119
|
+
};
|
|
22120
|
+
}, {
|
|
22121
|
+
asset_balances: {
|
|
22122
|
+
reconciliation_enabled: boolean;
|
|
22123
|
+
};
|
|
22124
|
+
liquidity_provider: {
|
|
22125
|
+
deposit_enabled: boolean;
|
|
22126
|
+
withdrawal_enabled: boolean;
|
|
22127
|
+
internal_swaps_enabled?: boolean | undefined;
|
|
22128
|
+
};
|
|
22129
|
+
validator: {
|
|
22130
|
+
authority_rotation_enabled: boolean;
|
|
22131
|
+
start_bidding_enabled: boolean;
|
|
22132
|
+
stop_bidding_enabled: boolean;
|
|
22133
|
+
};
|
|
22134
|
+
swapping: {
|
|
22135
|
+
swaps_enabled: boolean;
|
|
22136
|
+
withdrawals_enabled: boolean;
|
|
22137
|
+
broker_registration_enabled: boolean;
|
|
22138
|
+
};
|
|
22139
|
+
funding: {
|
|
22140
|
+
redeem_enabled: boolean;
|
|
22141
|
+
};
|
|
22142
|
+
pools: {
|
|
22143
|
+
range_order_update_enabled: boolean;
|
|
22144
|
+
limit_order_update_enabled: boolean;
|
|
22145
|
+
};
|
|
22146
|
+
emissions: {
|
|
22147
|
+
emissions_sync_enabled: boolean;
|
|
22148
|
+
};
|
|
22149
|
+
reputation: {
|
|
22150
|
+
reporting_enabled: boolean;
|
|
22151
|
+
};
|
|
22152
|
+
threshold_signature_evm: {
|
|
22153
|
+
slashing_enabled: boolean;
|
|
22154
|
+
};
|
|
22155
|
+
threshold_signature_bitcoin: {
|
|
22156
|
+
slashing_enabled: boolean;
|
|
22157
|
+
};
|
|
22158
|
+
threshold_signature_polkadot: {
|
|
22159
|
+
slashing_enabled: boolean;
|
|
22160
|
+
};
|
|
22161
|
+
threshold_signature_solana: {
|
|
22162
|
+
slashing_enabled: boolean;
|
|
22163
|
+
};
|
|
22164
|
+
broadcast_ethereum: {
|
|
22165
|
+
retry_enabled: boolean;
|
|
22166
|
+
};
|
|
22167
|
+
broadcast_bitcoin: {
|
|
22168
|
+
retry_enabled: boolean;
|
|
22169
|
+
};
|
|
22170
|
+
broadcast_polkadot: {
|
|
22171
|
+
retry_enabled: boolean;
|
|
22172
|
+
};
|
|
22173
|
+
broadcast_arbitrum: {
|
|
22174
|
+
retry_enabled: boolean;
|
|
22175
|
+
};
|
|
22176
|
+
broadcast_solana: {
|
|
22177
|
+
retry_enabled: boolean;
|
|
22178
|
+
};
|
|
22179
|
+
ingress_egress_ethereum: {
|
|
22180
|
+
boost_deposits_enabled: boolean;
|
|
22181
|
+
add_boost_funds_enabled: boolean;
|
|
22182
|
+
stop_boosting_enabled: boolean;
|
|
22183
|
+
deposits_enabled: boolean;
|
|
22184
|
+
};
|
|
22185
|
+
ingress_egress_bitcoin: {
|
|
22186
|
+
boost_deposits_enabled: boolean;
|
|
22187
|
+
add_boost_funds_enabled: boolean;
|
|
22188
|
+
stop_boosting_enabled: boolean;
|
|
22189
|
+
deposits_enabled: boolean;
|
|
22190
|
+
};
|
|
22191
|
+
ingress_egress_polkadot: {
|
|
22192
|
+
boost_deposits_enabled: boolean;
|
|
22193
|
+
add_boost_funds_enabled: boolean;
|
|
22194
|
+
stop_boosting_enabled: boolean;
|
|
22195
|
+
deposits_enabled: boolean;
|
|
22196
|
+
};
|
|
22197
|
+
ingress_egress_arbitrum: {
|
|
22198
|
+
boost_deposits_enabled: boolean;
|
|
22199
|
+
add_boost_funds_enabled: boolean;
|
|
22200
|
+
stop_boosting_enabled: boolean;
|
|
22201
|
+
deposits_enabled: boolean;
|
|
22202
|
+
};
|
|
22203
|
+
ingress_egress_solana: {
|
|
22204
|
+
boost_deposits_enabled: boolean;
|
|
22205
|
+
add_boost_funds_enabled: boolean;
|
|
22206
|
+
stop_boosting_enabled: boolean;
|
|
22207
|
+
deposits_enabled: boolean;
|
|
22208
|
+
};
|
|
22209
|
+
trading_strategies?: {
|
|
22210
|
+
strategy_updates_enabled: boolean;
|
|
22211
|
+
strategy_closure_enabled: boolean;
|
|
22212
|
+
strategy_execution_enabled: boolean;
|
|
22213
|
+
} | undefined;
|
|
22214
|
+
broadcast_assethub?: {
|
|
22215
|
+
retry_enabled: boolean;
|
|
22216
|
+
} | undefined;
|
|
22217
|
+
ingress_egress_assethub?: {
|
|
22218
|
+
boost_deposits_enabled: boolean;
|
|
22219
|
+
add_boost_funds_enabled: boolean;
|
|
22220
|
+
stop_boosting_enabled: boolean;
|
|
22221
|
+
deposits_enabled: boolean;
|
|
22222
|
+
} | undefined;
|
|
22223
|
+
}>;
|
|
21760
22224
|
|
|
21761
|
-
export { type AssetAndChain, type RpcLimitOrder, type RpcRangeOrder, broker, brokerRequestSwapDepositAddress, cfAccountInfo, cfAccounts, cfAuctionState, cfAvailablePools, cfBoostPoolDetails, cfBoostPoolPendingFees, cfBoostPoolsDepth, cfEnvironment, cfFailedCallEvm, cfFlipSuppy, cfFundingEnvironment, cfGetTradingStrategies, cfIngressEgressEnvironment, cfPoolDepth, cfPoolOrderbook, cfPoolOrders, cfPoolPriceV2, cfPoolsEnvironment, cfSupportedAssets, cfSwapRate, cfSwapRateV2, cfSwapRateV3, cfSwappingEnvironment, cfTradingStrategy, chainGetBlockHash, ethereumAddress, hexString, liquidityProvider, lpTotalBalances, numberOrHex, requestSwapParameterEncoding, rpcResponse, stateGetMetadata, stateGetRuntimeVersion, u256, unregistered, validator };
|
|
22225
|
+
export { type AssetAndChain, type RpcLimitOrder, type RpcRangeOrder, broker, brokerRequestSwapDepositAddress, cfAccountInfo, cfAccounts, cfAuctionState, cfAvailablePools, cfBoostPoolDetails, cfBoostPoolPendingFees, cfBoostPoolsDepth, cfEnvironment, cfFailedCallEvm, cfFlipSuppy, cfFundingEnvironment, cfGetTradingStrategies, cfIngressEgressEnvironment, cfPoolDepth, cfPoolOrderbook, cfPoolOrders, cfPoolPriceV2, cfPoolsEnvironment, cfSafeModeStatuses, cfSupportedAssets, cfSwapRate, cfSwapRateV2, cfSwapRateV3, cfSwappingEnvironment, cfTradingStrategy, chainGetBlockHash, ethereumAddress, hexString, liquidityProvider, lpTotalBalances, numberOrHex, requestSwapParameterEncoding, rpcResponse, stateGetMetadata, stateGetRuntimeVersion, u256, unregistered, validator };
|
package/dist/parsers.mjs
CHANGED
|
@@ -368,6 +368,117 @@ var cfAvailablePools = z.array(
|
|
|
368
368
|
quote: z.object({ chain: z.literal("Ethereum"), asset: z.literal("USDC") })
|
|
369
369
|
})
|
|
370
370
|
);
|
|
371
|
+
var cfSafeModeStatuses = z.object({
|
|
372
|
+
emissions: z.object({
|
|
373
|
+
emissions_sync_enabled: z.boolean()
|
|
374
|
+
}),
|
|
375
|
+
funding: z.object({
|
|
376
|
+
redeem_enabled: z.boolean()
|
|
377
|
+
}),
|
|
378
|
+
swapping: z.object({
|
|
379
|
+
swaps_enabled: z.boolean(),
|
|
380
|
+
withdrawals_enabled: z.boolean(),
|
|
381
|
+
broker_registration_enabled: z.boolean()
|
|
382
|
+
}),
|
|
383
|
+
liquidity_provider: z.object({
|
|
384
|
+
deposit_enabled: z.boolean(),
|
|
385
|
+
withdrawal_enabled: z.boolean(),
|
|
386
|
+
internal_swaps_enabled: z.boolean().optional().default(false)
|
|
387
|
+
}),
|
|
388
|
+
validator: z.object({
|
|
389
|
+
authority_rotation_enabled: z.boolean(),
|
|
390
|
+
start_bidding_enabled: z.boolean(),
|
|
391
|
+
stop_bidding_enabled: z.boolean()
|
|
392
|
+
}),
|
|
393
|
+
pools: z.object({
|
|
394
|
+
range_order_update_enabled: z.boolean(),
|
|
395
|
+
limit_order_update_enabled: z.boolean()
|
|
396
|
+
}),
|
|
397
|
+
trading_strategies: z.object({
|
|
398
|
+
strategy_updates_enabled: z.boolean(),
|
|
399
|
+
strategy_closure_enabled: z.boolean(),
|
|
400
|
+
strategy_execution_enabled: z.boolean()
|
|
401
|
+
}).optional().default({
|
|
402
|
+
strategy_updates_enabled: false,
|
|
403
|
+
strategy_closure_enabled: false,
|
|
404
|
+
strategy_execution_enabled: false
|
|
405
|
+
}),
|
|
406
|
+
reputation: z.object({
|
|
407
|
+
reporting_enabled: z.boolean()
|
|
408
|
+
}),
|
|
409
|
+
asset_balances: z.object({
|
|
410
|
+
reconciliation_enabled: z.boolean()
|
|
411
|
+
}),
|
|
412
|
+
threshold_signature_evm: z.object({
|
|
413
|
+
slashing_enabled: z.boolean()
|
|
414
|
+
}),
|
|
415
|
+
threshold_signature_bitcoin: z.object({
|
|
416
|
+
slashing_enabled: z.boolean()
|
|
417
|
+
}),
|
|
418
|
+
threshold_signature_polkadot: z.object({
|
|
419
|
+
slashing_enabled: z.boolean()
|
|
420
|
+
}),
|
|
421
|
+
threshold_signature_solana: z.object({
|
|
422
|
+
slashing_enabled: z.boolean()
|
|
423
|
+
}),
|
|
424
|
+
broadcast_ethereum: z.object({
|
|
425
|
+
retry_enabled: z.boolean()
|
|
426
|
+
}),
|
|
427
|
+
broadcast_bitcoin: z.object({
|
|
428
|
+
retry_enabled: z.boolean()
|
|
429
|
+
}),
|
|
430
|
+
broadcast_polkadot: z.object({
|
|
431
|
+
retry_enabled: z.boolean()
|
|
432
|
+
}),
|
|
433
|
+
broadcast_arbitrum: z.object({
|
|
434
|
+
retry_enabled: z.boolean()
|
|
435
|
+
}),
|
|
436
|
+
broadcast_solana: z.object({
|
|
437
|
+
retry_enabled: z.boolean()
|
|
438
|
+
}),
|
|
439
|
+
broadcast_assethub: z.object({ retry_enabled: z.boolean() }).optional().default({ retry_enabled: false }),
|
|
440
|
+
ingress_egress_ethereum: z.object({
|
|
441
|
+
boost_deposits_enabled: z.boolean(),
|
|
442
|
+
add_boost_funds_enabled: z.boolean(),
|
|
443
|
+
stop_boosting_enabled: z.boolean(),
|
|
444
|
+
deposits_enabled: z.boolean()
|
|
445
|
+
}),
|
|
446
|
+
ingress_egress_bitcoin: z.object({
|
|
447
|
+
boost_deposits_enabled: z.boolean(),
|
|
448
|
+
add_boost_funds_enabled: z.boolean(),
|
|
449
|
+
stop_boosting_enabled: z.boolean(),
|
|
450
|
+
deposits_enabled: z.boolean()
|
|
451
|
+
}),
|
|
452
|
+
ingress_egress_polkadot: z.object({
|
|
453
|
+
boost_deposits_enabled: z.boolean(),
|
|
454
|
+
add_boost_funds_enabled: z.boolean(),
|
|
455
|
+
stop_boosting_enabled: z.boolean(),
|
|
456
|
+
deposits_enabled: z.boolean()
|
|
457
|
+
}),
|
|
458
|
+
ingress_egress_arbitrum: z.object({
|
|
459
|
+
boost_deposits_enabled: z.boolean(),
|
|
460
|
+
add_boost_funds_enabled: z.boolean(),
|
|
461
|
+
stop_boosting_enabled: z.boolean(),
|
|
462
|
+
deposits_enabled: z.boolean()
|
|
463
|
+
}),
|
|
464
|
+
ingress_egress_solana: z.object({
|
|
465
|
+
boost_deposits_enabled: z.boolean(),
|
|
466
|
+
add_boost_funds_enabled: z.boolean(),
|
|
467
|
+
stop_boosting_enabled: z.boolean(),
|
|
468
|
+
deposits_enabled: z.boolean()
|
|
469
|
+
}),
|
|
470
|
+
ingress_egress_assethub: z.object({
|
|
471
|
+
boost_deposits_enabled: z.boolean(),
|
|
472
|
+
add_boost_funds_enabled: z.boolean(),
|
|
473
|
+
stop_boosting_enabled: z.boolean(),
|
|
474
|
+
deposits_enabled: z.boolean()
|
|
475
|
+
}).optional().default({
|
|
476
|
+
boost_deposits_enabled: false,
|
|
477
|
+
add_boost_funds_enabled: false,
|
|
478
|
+
stop_boosting_enabled: false,
|
|
479
|
+
deposits_enabled: false
|
|
480
|
+
})
|
|
481
|
+
});
|
|
371
482
|
export {
|
|
372
483
|
broker,
|
|
373
484
|
brokerRequestSwapDepositAddress,
|
|
@@ -389,6 +500,7 @@ export {
|
|
|
389
500
|
cfPoolOrders,
|
|
390
501
|
cfPoolPriceV2,
|
|
391
502
|
cfPoolsEnvironment,
|
|
503
|
+
cfSafeModeStatuses,
|
|
392
504
|
cfSupportedAssets,
|
|
393
505
|
cfSwapRate,
|
|
394
506
|
cfSwapRateV2,
|
package/dist/types.d.cts
CHANGED
|
@@ -30,6 +30,7 @@ type CfSwapRateV2 = RpcResult<'cf_swap_rate_v2'>;
|
|
|
30
30
|
type CfSwapRateV3 = RpcResult<'cf_swap_rate_v3'>;
|
|
31
31
|
type CfGetTradingStrategies = RpcResult<'cf_get_trading_strategies'>;
|
|
32
32
|
type CfAvailablePools = RpcResult<'cf_available_pools'>;
|
|
33
|
+
type CfSafeModeStatuses = RpcResult<'cf_safe_mode_statuses'>;
|
|
33
34
|
type CfAccountInfoResponse = RpcResponse<'cf_account_info'>;
|
|
34
35
|
type CfAccountsResponse = RpcResponse<'cf_accounts'>;
|
|
35
36
|
type CfAuctionStateResponse = RpcResponse<'cf_auction_state'>;
|
|
@@ -55,6 +56,7 @@ type CfSwapRateV2Response = RpcResponse<'cf_swap_rate_v2'>;
|
|
|
55
56
|
type CfSwapRateV3Response = RpcResponse<'cf_swap_rate_v3'>;
|
|
56
57
|
type CfGetTradingStrategiesResponse = RpcResponse<'cf_get_trading_strategies'>;
|
|
57
58
|
type CfAvailablePoolsResponse = RpcResponse<'cf_available_pools'>;
|
|
59
|
+
type CfSafeModeStatusesResponse = RpcResponse<'cf_safe_mode_statuses'>;
|
|
58
60
|
type CfUnregisteredAccount = z.output<typeof unregistered>;
|
|
59
61
|
type CfBrokerAccount = z.output<typeof broker>;
|
|
60
62
|
type CfValidatorAccount = z.output<typeof validator>;
|
|
@@ -62,4 +64,4 @@ type CfLiquidityProviderAccount = z.output<typeof liquidityProvider>;
|
|
|
62
64
|
type LpTotalBalances = RpcResult<'lp_total_balances'>;
|
|
63
65
|
type LpTotalBalancesResponse = RpcResponse<'lp_total_balances'>;
|
|
64
66
|
|
|
65
|
-
export { type CfAccountInfo, type CfAccountInfoResponse, type CfAccounts, type CfAccountsResponse, type CfAuctionState, type CfAuctionStateResponse, type CfAvailablePools, type CfAvailablePoolsResponse, type CfBoostPoolDetails, type CfBoostPoolDetailsResponse, type CfBoostPoolPendingFees, type CfBoostPoolPendingFeesResponse, type CfBoostPoolsDepth, type CfBoostPoolsDepthResponse, type CfBrokerAccount, type CfEnvironment, type CfEnvironmentResponse, type CfFailedCallArbitrum, type CfFailedCallArbitrumResponse, type CfFailedCallEthereum, type CfFailedCallEthereumResponse, type CfFlipSupply, type CfFlipSupplyResponse, type CfFundingEnvironment, type CfFundingEnvironmentResponse, type CfGetTradingStrategies, type CfGetTradingStrategiesResponse, type CfIngressEgressEnvironment, type CfIngressEgressEnvironmentResponse, type CfLiquidityProviderAccount, type CfPoolDepth, type CfPoolDepthResponse, type CfPoolOrderbook, type CfPoolOrderbookResponse, type CfPoolOrders, type CfPoolOrdersResponse, type CfPoolPriceV2, type CfPoolPriceV2Response, type CfPoolsEnvironment, type CfPoolsEnvironmentResponse, type CfRequestSwapParameterEncoding, type CfRequestSwapParameterEncodingResponse, type CfSupportedAssets, type CfSupportedAssetsResponse, type CfSwapRate, type CfSwapRateResponse, type CfSwapRateV2, type CfSwapRateV2Response, type CfSwapRateV3, type CfSwapRateV3Response, type CfSwappingEnvironment, type CfSwappingEnvironmentResponse, type CfUnregisteredAccount, type CfValidatorAccount, type LpTotalBalances, type LpTotalBalancesResponse, RpcResult };
|
|
67
|
+
export { type CfAccountInfo, type CfAccountInfoResponse, type CfAccounts, type CfAccountsResponse, type CfAuctionState, type CfAuctionStateResponse, type CfAvailablePools, type CfAvailablePoolsResponse, type CfBoostPoolDetails, type CfBoostPoolDetailsResponse, type CfBoostPoolPendingFees, type CfBoostPoolPendingFeesResponse, type CfBoostPoolsDepth, type CfBoostPoolsDepthResponse, type CfBrokerAccount, type CfEnvironment, type CfEnvironmentResponse, type CfFailedCallArbitrum, type CfFailedCallArbitrumResponse, type CfFailedCallEthereum, type CfFailedCallEthereumResponse, type CfFlipSupply, type CfFlipSupplyResponse, type CfFundingEnvironment, type CfFundingEnvironmentResponse, type CfGetTradingStrategies, type CfGetTradingStrategiesResponse, type CfIngressEgressEnvironment, type CfIngressEgressEnvironmentResponse, type CfLiquidityProviderAccount, type CfPoolDepth, type CfPoolDepthResponse, type CfPoolOrderbook, type CfPoolOrderbookResponse, type CfPoolOrders, type CfPoolOrdersResponse, type CfPoolPriceV2, type CfPoolPriceV2Response, type CfPoolsEnvironment, type CfPoolsEnvironmentResponse, type CfRequestSwapParameterEncoding, type CfRequestSwapParameterEncodingResponse, type CfSafeModeStatuses, type CfSafeModeStatusesResponse, type CfSupportedAssets, type CfSupportedAssetsResponse, type CfSwapRate, type CfSwapRateResponse, type CfSwapRateV2, type CfSwapRateV2Response, type CfSwapRateV3, type CfSwapRateV3Response, type CfSwappingEnvironment, type CfSwappingEnvironmentResponse, type CfUnregisteredAccount, type CfValidatorAccount, type LpTotalBalances, type LpTotalBalancesResponse, RpcResult };
|
package/dist/types.d.ts
CHANGED
|
@@ -30,6 +30,7 @@ type CfSwapRateV2 = RpcResult<'cf_swap_rate_v2'>;
|
|
|
30
30
|
type CfSwapRateV3 = RpcResult<'cf_swap_rate_v3'>;
|
|
31
31
|
type CfGetTradingStrategies = RpcResult<'cf_get_trading_strategies'>;
|
|
32
32
|
type CfAvailablePools = RpcResult<'cf_available_pools'>;
|
|
33
|
+
type CfSafeModeStatuses = RpcResult<'cf_safe_mode_statuses'>;
|
|
33
34
|
type CfAccountInfoResponse = RpcResponse<'cf_account_info'>;
|
|
34
35
|
type CfAccountsResponse = RpcResponse<'cf_accounts'>;
|
|
35
36
|
type CfAuctionStateResponse = RpcResponse<'cf_auction_state'>;
|
|
@@ -55,6 +56,7 @@ type CfSwapRateV2Response = RpcResponse<'cf_swap_rate_v2'>;
|
|
|
55
56
|
type CfSwapRateV3Response = RpcResponse<'cf_swap_rate_v3'>;
|
|
56
57
|
type CfGetTradingStrategiesResponse = RpcResponse<'cf_get_trading_strategies'>;
|
|
57
58
|
type CfAvailablePoolsResponse = RpcResponse<'cf_available_pools'>;
|
|
59
|
+
type CfSafeModeStatusesResponse = RpcResponse<'cf_safe_mode_statuses'>;
|
|
58
60
|
type CfUnregisteredAccount = z.output<typeof unregistered>;
|
|
59
61
|
type CfBrokerAccount = z.output<typeof broker>;
|
|
60
62
|
type CfValidatorAccount = z.output<typeof validator>;
|
|
@@ -62,4 +64,4 @@ type CfLiquidityProviderAccount = z.output<typeof liquidityProvider>;
|
|
|
62
64
|
type LpTotalBalances = RpcResult<'lp_total_balances'>;
|
|
63
65
|
type LpTotalBalancesResponse = RpcResponse<'lp_total_balances'>;
|
|
64
66
|
|
|
65
|
-
export { type CfAccountInfo, type CfAccountInfoResponse, type CfAccounts, type CfAccountsResponse, type CfAuctionState, type CfAuctionStateResponse, type CfAvailablePools, type CfAvailablePoolsResponse, type CfBoostPoolDetails, type CfBoostPoolDetailsResponse, type CfBoostPoolPendingFees, type CfBoostPoolPendingFeesResponse, type CfBoostPoolsDepth, type CfBoostPoolsDepthResponse, type CfBrokerAccount, type CfEnvironment, type CfEnvironmentResponse, type CfFailedCallArbitrum, type CfFailedCallArbitrumResponse, type CfFailedCallEthereum, type CfFailedCallEthereumResponse, type CfFlipSupply, type CfFlipSupplyResponse, type CfFundingEnvironment, type CfFundingEnvironmentResponse, type CfGetTradingStrategies, type CfGetTradingStrategiesResponse, type CfIngressEgressEnvironment, type CfIngressEgressEnvironmentResponse, type CfLiquidityProviderAccount, type CfPoolDepth, type CfPoolDepthResponse, type CfPoolOrderbook, type CfPoolOrderbookResponse, type CfPoolOrders, type CfPoolOrdersResponse, type CfPoolPriceV2, type CfPoolPriceV2Response, type CfPoolsEnvironment, type CfPoolsEnvironmentResponse, type CfRequestSwapParameterEncoding, type CfRequestSwapParameterEncodingResponse, type CfSupportedAssets, type CfSupportedAssetsResponse, type CfSwapRate, type CfSwapRateResponse, type CfSwapRateV2, type CfSwapRateV2Response, type CfSwapRateV3, type CfSwapRateV3Response, type CfSwappingEnvironment, type CfSwappingEnvironmentResponse, type CfUnregisteredAccount, type CfValidatorAccount, type LpTotalBalances, type LpTotalBalancesResponse, RpcResult };
|
|
67
|
+
export { type CfAccountInfo, type CfAccountInfoResponse, type CfAccounts, type CfAccountsResponse, type CfAuctionState, type CfAuctionStateResponse, type CfAvailablePools, type CfAvailablePoolsResponse, type CfBoostPoolDetails, type CfBoostPoolDetailsResponse, type CfBoostPoolPendingFees, type CfBoostPoolPendingFeesResponse, type CfBoostPoolsDepth, type CfBoostPoolsDepthResponse, type CfBrokerAccount, type CfEnvironment, type CfEnvironmentResponse, type CfFailedCallArbitrum, type CfFailedCallArbitrumResponse, type CfFailedCallEthereum, type CfFailedCallEthereumResponse, type CfFlipSupply, type CfFlipSupplyResponse, type CfFundingEnvironment, type CfFundingEnvironmentResponse, type CfGetTradingStrategies, type CfGetTradingStrategiesResponse, type CfIngressEgressEnvironment, type CfIngressEgressEnvironmentResponse, type CfLiquidityProviderAccount, type CfPoolDepth, type CfPoolDepthResponse, type CfPoolOrderbook, type CfPoolOrderbookResponse, type CfPoolOrders, type CfPoolOrdersResponse, type CfPoolPriceV2, type CfPoolPriceV2Response, type CfPoolsEnvironment, type CfPoolsEnvironmentResponse, type CfRequestSwapParameterEncoding, type CfRequestSwapParameterEncodingResponse, type CfSafeModeStatuses, type CfSafeModeStatusesResponse, type CfSupportedAssets, type CfSupportedAssetsResponse, type CfSwapRate, type CfSwapRateResponse, type CfSwapRateV2, type CfSwapRateV2Response, type CfSwapRateV3, type CfSwapRateV3Response, type CfSwappingEnvironment, type CfSwappingEnvironmentResponse, type CfUnregisteredAccount, type CfValidatorAccount, type LpTotalBalances, type LpTotalBalancesResponse, RpcResult };
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@chainflip/rpc",
|
|
3
|
-
"version": "1.9.
|
|
3
|
+
"version": "1.9.5",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"dependencies": {
|
|
6
|
-
"@chainflip/utils": "0.8.
|
|
6
|
+
"@chainflip/utils": "0.8.6",
|
|
7
7
|
"zod": "^3.24.2"
|
|
8
8
|
},
|
|
9
9
|
"devDependencies": {
|
|
10
|
-
"@types/node": "^22.14.
|
|
10
|
+
"@types/node": "^22.14.1",
|
|
11
11
|
"@types/ws": "^8.18.1",
|
|
12
12
|
"ws": "^8.18.1"
|
|
13
13
|
},
|