@chainflip/rpc 2.0.6-wbtc-dev.4 → 2.0.7-wbtc-dev.2

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/types.d.cts DELETED
@@ -1,87 +0,0 @@
1
- import { z } from 'zod';
2
- import { RpcResult, RpcResponse } from './common.cjs';
3
- export { RpcMethod, RpcRequest as RpcParams } from './common.cjs';
4
- import { unregistered, broker, validator, liquidityProvider, operator } from './parsers.cjs';
5
- export { RpcLimitOrder, RpcRangeOrder } from './parsers.cjs';
6
- import '@chainflip/utils/chainflip';
7
- import '@chainflip/utils/types';
8
-
9
- type CfAccountInfo = RpcResult<'cf_account_info'>;
10
- type CfAccounts = RpcResult<'cf_accounts'>;
11
- type CfAuctionState = RpcResult<'cf_auction_state'>;
12
- type CfMonitoringSimulateAuction = RpcResult<'cf_monitoring_simulate_auction'>;
13
- type CfAvailablePools = RpcResult<'cf_available_pools'>;
14
- type CfBoostPoolDetails = RpcResult<'cf_boost_pool_details'>;
15
- type CfBoostPoolPendingFees = RpcResult<'cf_boost_pool_pending_fees'>;
16
- type CfBoostPoolsDepth = RpcResult<'cf_boost_pools_depth'>;
17
- type CfEncodeCfParameters = RpcResult<'cf_encode_cf_parameters'>;
18
- type CfEnvironment = RpcResult<'cf_environment'>;
19
- type CfFailedCallArbitrum = RpcResult<'cf_failed_call_arbitrum'>;
20
- type CfFailedCallEthereum = RpcResult<'cf_failed_call_ethereum'>;
21
- type CfFlipSupply = RpcResult<'cf_flip_supply'>;
22
- type CfFundingEnvironment = RpcResult<'cf_funding_environment'>;
23
- type CfGetTradingStrategies = RpcResult<'cf_get_trading_strategies'>;
24
- type CfGetTradingStrategyLimits = RpcResult<'cf_get_trading_strategy_limits'>;
25
- type CfIngressEgressEnvironment = RpcResult<'cf_ingress_egress_environment'>;
26
- type CfPoolDepth = RpcResult<'cf_pool_depth'>;
27
- type CfPoolOrderbook = RpcResult<'cf_pool_orderbook'>;
28
- type CfPoolOrders = RpcResult<'cf_pool_orders'>;
29
- type CfPoolPriceV2 = RpcResult<'cf_pool_price_v2'>;
30
- type CfPoolsEnvironment = RpcResult<'cf_pools_environment'>;
31
- type CfRequestSwapParameterEncoding = RpcResult<'cf_request_swap_parameter_encoding'>;
32
- type CfSafeModeStatuses = RpcResult<'cf_safe_mode_statuses'>;
33
- type CfSupportedAssets = RpcResult<'cf_supported_assets'>;
34
- type CfSwappingEnvironment = RpcResult<'cf_swapping_environment'>;
35
- type CfSwapRate = RpcResult<'cf_swap_rate'>;
36
- type CfSwapRateV2 = RpcResult<'cf_swap_rate_v2'>;
37
- type CfSwapRateV3 = RpcResult<'cf_swap_rate_v3'>;
38
- type CfOraclePrices = RpcResult<'cf_oracle_prices'>;
39
- type CfLendingPools = RpcResult<'cf_lending_pools'>;
40
- type CfLendingConfig = RpcResult<'cf_lending_config'>;
41
- type CfLoanAccounts = RpcResult<'cf_loan_accounts'>;
42
- type CfLendingPoolSupplyBalances = RpcResult<'cf_lending_pool_supply_balances'>;
43
- type CfVaultAddresses = RpcResult<'cf_get_vault_addresses'>;
44
- type CfAccountInfoResponse = RpcResponse<'cf_account_info'>;
45
- type CfAccountsResponse = RpcResponse<'cf_accounts'>;
46
- type CfAuctionStateResponse = RpcResponse<'cf_auction_state'>;
47
- type CfMonitoringSimulateAuctionResponse = RpcResponse<'cf_monitoring_simulate_auction'>;
48
- type CfAvailablePoolsResponse = RpcResponse<'cf_available_pools'>;
49
- type CfBoostPoolDetailsResponse = RpcResponse<'cf_boost_pool_details'>;
50
- type CfBoostPoolPendingFeesResponse = RpcResponse<'cf_boost_pool_pending_fees'>;
51
- type CfBoostPoolsDepthResponse = RpcResponse<'cf_boost_pools_depth'>;
52
- type CfEncodeCfParametersResponse = RpcResponse<'cf_encode_cf_parameters'>;
53
- type CfEnvironmentResponse = RpcResponse<'cf_environment'>;
54
- type CfFailedCallArbitrumResponse = RpcResponse<'cf_failed_call_arbitrum'>;
55
- type CfFailedCallEthereumResponse = RpcResponse<'cf_failed_call_ethereum'>;
56
- type CfFlipSupplyResponse = RpcResponse<'cf_flip_supply'>;
57
- type CfFundingEnvironmentResponse = RpcResponse<'cf_funding_environment'>;
58
- type CfGetTradingStrategiesResponse = RpcResponse<'cf_get_trading_strategies'>;
59
- type CfGetTradingStrategyLimitsResponse = RpcResponse<'cf_get_trading_strategy_limits'>;
60
- type CfIngressEgressEnvironmentResponse = RpcResponse<'cf_ingress_egress_environment'>;
61
- type CfPoolDepthResponse = RpcResponse<'cf_pool_depth'>;
62
- type CfPoolOrderbookResponse = RpcResponse<'cf_pool_orderbook'>;
63
- type CfPoolOrdersResponse = RpcResponse<'cf_pool_orders'>;
64
- type CfPoolPriceV2Response = RpcResponse<'cf_pool_price_v2'>;
65
- type CfPoolsEnvironmentResponse = RpcResponse<'cf_pools_environment'>;
66
- type CfRequestSwapParameterEncodingResponse = RpcResponse<'cf_request_swap_parameter_encoding'>;
67
- type CfSafeModeStatusesResponse = RpcResponse<'cf_safe_mode_statuses'>;
68
- type CfSupportedAssetsResponse = RpcResponse<'cf_supported_assets'>;
69
- type CfSwappingEnvironmentResponse = RpcResponse<'cf_swapping_environment'>;
70
- type CfSwapRateResponse = RpcResponse<'cf_swap_rate'>;
71
- type CfSwapRateV2Response = RpcResponse<'cf_swap_rate_v2'>;
72
- type CfSwapRateV3Response = RpcResponse<'cf_swap_rate_v3'>;
73
- type CfOraclePricesResponse = RpcResponse<'cf_oracle_prices'>;
74
- type CfLendingPoolsResponse = RpcResponse<'cf_lending_pools'>;
75
- type CfLendingConfigResponse = RpcResponse<'cf_lending_config'>;
76
- type CfLoanAccountsResponse = RpcResponse<'cf_loan_accounts'>;
77
- type CfLendingPoolSupplyBalancesResponse = RpcResponse<'cf_lending_pool_supply_balances'>;
78
- type CfVaultAddressesResponse = RpcResponse<'cf_get_vault_addresses'>;
79
- type CfUnregisteredAccount = z.output<typeof unregistered>;
80
- type CfBrokerAccount = z.output<typeof broker>;
81
- type CfValidatorAccount = z.output<typeof validator>;
82
- type CfLiquidityProviderAccount = z.output<typeof liquidityProvider>;
83
- type CfOperatorAccount = z.output<typeof operator>;
84
- type LpTotalBalances = RpcResult<'lp_total_balances'>;
85
- type LpTotalBalancesResponse = RpcResponse<'lp_total_balances'>;
86
-
87
- 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 CfEncodeCfParameters, type CfEncodeCfParametersResponse, 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 CfGetTradingStrategyLimits, type CfGetTradingStrategyLimitsResponse, type CfIngressEgressEnvironment, type CfIngressEgressEnvironmentResponse, type CfLendingConfig, type CfLendingConfigResponse, type CfLendingPoolSupplyBalances, type CfLendingPoolSupplyBalancesResponse, type CfLendingPools, type CfLendingPoolsResponse, type CfLiquidityProviderAccount, type CfLoanAccounts, type CfLoanAccountsResponse, type CfMonitoringSimulateAuction, type CfMonitoringSimulateAuctionResponse, type CfOperatorAccount, type CfOraclePrices, type CfOraclePricesResponse, 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 CfVaultAddresses, type CfVaultAddressesResponse, type LpTotalBalances, type LpTotalBalancesResponse, RpcResult };