@chainflip/rpc 2.2.0 → 2.2.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/common.cjs +2 -1
- package/dist/common.d.cts +6214 -2122
- package/dist/common.d.mts +6214 -2122
- package/dist/common.mjs +3 -2
- package/dist/index.d.cts +2 -2
- package/dist/index.d.mts +2 -2
- package/dist/parsers.cjs +22 -30
- package/dist/parsers.d.cts +14990 -11142
- package/dist/parsers.d.mts +14990 -11142
- package/dist/parsers.mjs +22 -31
- package/dist/types.d.cts +3 -1
- package/dist/types.d.mts +3 -1
- package/package.json +1 -1
package/dist/parsers.mjs
CHANGED
|
@@ -18,24 +18,24 @@ const numberOrHex = z.union([
|
|
|
18
18
|
numericString
|
|
19
19
|
]).transform((n) => BigInt(n));
|
|
20
20
|
const tronAddress = z.string().refine(isValidTronAddress, { message: "Invalid tron address" });
|
|
21
|
-
const chainAssetMapFactory = (parser,
|
|
21
|
+
const chainAssetMapFactory = (parser, _defaultValue) => z.object({
|
|
22
22
|
Bitcoin: z.object({ BTC: parser }),
|
|
23
23
|
Ethereum: z.object({
|
|
24
24
|
ETH: parser,
|
|
25
25
|
USDC: parser,
|
|
26
26
|
FLIP: parser,
|
|
27
27
|
USDT: parser,
|
|
28
|
-
WBTC: parser
|
|
28
|
+
WBTC: parser
|
|
29
29
|
}),
|
|
30
30
|
Arbitrum: z.object({
|
|
31
31
|
ETH: parser,
|
|
32
32
|
USDC: parser,
|
|
33
|
-
USDT: parser
|
|
33
|
+
USDT: parser
|
|
34
34
|
}),
|
|
35
35
|
Solana: z.object({
|
|
36
36
|
SOL: parser,
|
|
37
37
|
USDC: parser,
|
|
38
|
-
USDT: parser
|
|
38
|
+
USDT: parser
|
|
39
39
|
}),
|
|
40
40
|
Assethub: z.object({
|
|
41
41
|
DOT: parser,
|
|
@@ -44,29 +44,26 @@ const chainAssetMapFactory = (parser, defaultValue) => z.object({
|
|
|
44
44
|
}),
|
|
45
45
|
Tron: z.object({
|
|
46
46
|
TRX: parser,
|
|
47
|
-
USDT: parser
|
|
48
|
-
}).default({
|
|
49
|
-
TRX: defaultValue,
|
|
50
|
-
USDT: defaultValue
|
|
47
|
+
USDT: parser
|
|
51
48
|
})
|
|
52
49
|
});
|
|
53
|
-
const chainBaseAssetMapFactory = (parser,
|
|
50
|
+
const chainBaseAssetMapFactory = (parser, _defaultValue) => z.object({
|
|
54
51
|
Bitcoin: z.object({ BTC: parser }),
|
|
55
52
|
Ethereum: z.object({
|
|
56
53
|
ETH: parser,
|
|
57
54
|
FLIP: parser,
|
|
58
55
|
USDT: parser,
|
|
59
|
-
WBTC: parser
|
|
56
|
+
WBTC: parser
|
|
60
57
|
}),
|
|
61
58
|
Arbitrum: z.object({
|
|
62
59
|
ETH: parser,
|
|
63
60
|
USDC: parser,
|
|
64
|
-
USDT: parser
|
|
61
|
+
USDT: parser
|
|
65
62
|
}),
|
|
66
63
|
Solana: z.object({
|
|
67
64
|
SOL: parser,
|
|
68
65
|
USDC: parser,
|
|
69
|
-
USDT: parser
|
|
66
|
+
USDT: parser
|
|
70
67
|
}),
|
|
71
68
|
Assethub: z.object({
|
|
72
69
|
DOT: parser,
|
|
@@ -75,19 +72,16 @@ const chainBaseAssetMapFactory = (parser, defaultValue) => z.object({
|
|
|
75
72
|
}),
|
|
76
73
|
Tron: z.object({
|
|
77
74
|
TRX: parser,
|
|
78
|
-
USDT: parser
|
|
79
|
-
}).default({
|
|
80
|
-
TRX: defaultValue,
|
|
81
|
-
USDT: defaultValue
|
|
75
|
+
USDT: parser
|
|
82
76
|
})
|
|
83
77
|
});
|
|
84
|
-
const chainMapFactory = (parser,
|
|
78
|
+
const chainMapFactory = (parser, _defaultValue = null) => z.object({
|
|
85
79
|
Bitcoin: parser,
|
|
86
80
|
Ethereum: parser,
|
|
87
81
|
Arbitrum: parser,
|
|
88
82
|
Solana: parser,
|
|
89
83
|
Assethub: parser,
|
|
90
|
-
Tron: parser
|
|
84
|
+
Tron: parser
|
|
91
85
|
});
|
|
92
86
|
const rpcAssetSchema = z.union([
|
|
93
87
|
z.object({
|
|
@@ -360,6 +354,7 @@ const delegationStatus = z.object({
|
|
|
360
354
|
bid: numberOrHex
|
|
361
355
|
});
|
|
362
356
|
const accountInfoCommon = {
|
|
357
|
+
account_id: accountId,
|
|
363
358
|
vanity_name: z.string().optional(),
|
|
364
359
|
flip_balance: numberOrHex,
|
|
365
360
|
asset_balances: chainAssetMapFactory(numberOrHex, 0),
|
|
@@ -462,6 +457,7 @@ const cfAccountInfo = z.discriminatedUnion("role", [
|
|
|
462
457
|
}
|
|
463
458
|
}
|
|
464
459
|
});
|
|
460
|
+
const cfAllAccountInfos = z.array(cfAccountInfo);
|
|
465
461
|
const cfAccounts = z.array(z.tuple([accountId, z.string()]));
|
|
466
462
|
const cfPoolPriceV2 = z.object({
|
|
467
463
|
sell: numberOrHex.nullable(),
|
|
@@ -683,8 +679,6 @@ const cfSafeModeStatuses = z.object({
|
|
|
683
679
|
borrowing: cfSupportedAssets,
|
|
684
680
|
add_lender_funds: cfSupportedAssets,
|
|
685
681
|
withdraw_lender_funds: cfSupportedAssets,
|
|
686
|
-
add_collateral: cfSupportedAssets.optional(),
|
|
687
|
-
remove_collateral: cfSupportedAssets.optional(),
|
|
688
682
|
liquidations_enabled: z.boolean()
|
|
689
683
|
}),
|
|
690
684
|
broadcast_ethereum: broadcastPalletSafeModeStatuses,
|
|
@@ -693,14 +687,14 @@ const cfSafeModeStatuses = z.object({
|
|
|
693
687
|
broadcast_arbitrum: broadcastPalletSafeModeStatuses,
|
|
694
688
|
broadcast_solana: broadcastPalletSafeModeStatuses,
|
|
695
689
|
broadcast_assethub: broadcastPalletSafeModeStatuses,
|
|
696
|
-
broadcast_tron: broadcastPalletSafeModeStatuses
|
|
690
|
+
broadcast_tron: broadcastPalletSafeModeStatuses,
|
|
697
691
|
ingress_egress_ethereum: ingressEgressPalletSafeModeStatuses,
|
|
698
692
|
ingress_egress_bitcoin: ingressEgressPalletSafeModeStatuses,
|
|
699
693
|
ingress_egress_polkadot: ingressEgressPalletSafeModeStatuses,
|
|
700
694
|
ingress_egress_arbitrum: ingressEgressPalletSafeModeStatuses,
|
|
701
695
|
ingress_egress_solana: ingressEgressPalletSafeModeStatuses,
|
|
702
696
|
ingress_egress_assethub: ingressEgressPalletSafeModeStatuses,
|
|
703
|
-
ingress_egress_tron: ingressEgressPalletSafeModeStatuses
|
|
697
|
+
ingress_egress_tron: ingressEgressPalletSafeModeStatuses,
|
|
704
698
|
witnesser: z.enum([
|
|
705
699
|
"CodeRed",
|
|
706
700
|
"CodeGreen",
|
|
@@ -719,7 +713,7 @@ const cfLendingPools = z.array(z.object({
|
|
|
719
713
|
total_amount: numberOrHex,
|
|
720
714
|
available_amount: numberOrHex,
|
|
721
715
|
utilisation_rate: z.number(),
|
|
722
|
-
utilisation_cap: z.number()
|
|
716
|
+
utilisation_cap: z.number(),
|
|
723
717
|
current_interest_rate: z.number(),
|
|
724
718
|
origination_fee: z.number(),
|
|
725
719
|
liquidation_fee: z.number(),
|
|
@@ -733,7 +727,6 @@ const cfLendingPools = z.array(z.object({
|
|
|
733
727
|
const cfLendingConfig = z.object({
|
|
734
728
|
ltv_thresholds: z.object({
|
|
735
729
|
target: z.number(),
|
|
736
|
-
topup: z.number().nullish(),
|
|
737
730
|
soft_liquidation: z.number(),
|
|
738
731
|
soft_liquidation_abort: z.number(),
|
|
739
732
|
hard_liquidation: z.number(),
|
|
@@ -757,23 +750,21 @@ const cfLendingConfig = z.object({
|
|
|
757
750
|
fee_swap_max_oracle_slippage: z.number(),
|
|
758
751
|
minimum_loan_amount_usd: numberOrHex,
|
|
759
752
|
minimum_supply_amount_usd: numberOrHex,
|
|
760
|
-
minimum_update_loan_amount_usd: numberOrHex
|
|
761
|
-
minimum_update_collateral_amount_usd: numberOrHex.optional()
|
|
753
|
+
minimum_update_loan_amount_usd: numberOrHex
|
|
762
754
|
});
|
|
763
755
|
const cfLoan = z.object({
|
|
764
756
|
loan_id: z.number(),
|
|
765
757
|
asset: rpcAssetSchema,
|
|
766
758
|
principal_amount: numberOrHex,
|
|
767
|
-
loan_type: z.union([z.object({ User: accountId }), z.object({ Boost: numberOrHex })])
|
|
768
|
-
created_at: z.number()
|
|
759
|
+
loan_type: z.union([z.object({ User: accountId }), z.object({ Boost: numberOrHex })]),
|
|
760
|
+
created_at: z.number(),
|
|
769
761
|
broker: z.object({
|
|
770
762
|
account: accountId,
|
|
771
763
|
bps: z.number()
|
|
772
|
-
}).
|
|
764
|
+
}).nullable()
|
|
773
765
|
});
|
|
774
766
|
const cfLoanAccount = z.object({
|
|
775
767
|
account: accountId,
|
|
776
|
-
collateral_topup_asset: rpcAssetSchema.nullish(),
|
|
777
768
|
ltv_ratio: numberOrHex.nullable(),
|
|
778
769
|
collateral: z.array(z.intersection(rpcAssetSchema, z.object({ amount: numberOrHex }))),
|
|
779
770
|
loans: z.array(cfLoan),
|
|
@@ -885,4 +876,4 @@ const cfVaultAddresses = z.object({
|
|
|
885
876
|
const cfAllLoans = z.array(cfLoan);
|
|
886
877
|
|
|
887
878
|
//#endregion
|
|
888
|
-
export { accountInfoCommon, broker, brokerRequestAccountCreationDepositAddress, brokerRequestSwapDepositAddress, cfAccountInfo, cfAccounts, cfAllLoans, cfAuctionState, cfAvailablePools, cfBoostPoolDetails, cfBoostPoolPendingFees, cfBoostPoolsDepth, cfEnvironment, cfFailedCallEvm, cfFlipSuppy, cfFundingEnvironment, cfGetTradingStrategies, cfGetTradingStrategyLimits, cfIngressEgressEnvironment, cfIngressEgressEvents, cfLendingConfig, cfLendingPoolSupplyBalances, cfLendingPools, cfLoanAccount, cfLoanAccounts, cfMonitoringSimulateAuction, cfOraclePrices, cfPoolDepth, cfPoolOrderbook, cfPoolOrders, cfPoolPriceV2, cfPoolsEnvironment, cfSafeModeStatuses, cfSupportedAssets, cfSwapRate, cfSwapRateV2, cfSwapRateV3, cfSwappingEnvironment, cfTradingStrategy, cfVaultAddresses, chainGetBlockHash, ethereumAddress, hexString, liquidityProvider, lpTotalBalances, numberOrHex, numericString, operator, requestSwapParameterEncoding, rpcResponse, stateGetMetadata, stateGetRuntimeVersion, tronAddress, u256, unregistered, validator };
|
|
879
|
+
export { accountInfoCommon, broker, brokerRequestAccountCreationDepositAddress, brokerRequestSwapDepositAddress, cfAccountInfo, cfAccounts, cfAllAccountInfos, cfAllLoans, cfAuctionState, cfAvailablePools, cfBoostPoolDetails, cfBoostPoolPendingFees, cfBoostPoolsDepth, cfEnvironment, cfFailedCallEvm, cfFlipSuppy, cfFundingEnvironment, cfGetTradingStrategies, cfGetTradingStrategyLimits, cfIngressEgressEnvironment, cfIngressEgressEvents, cfLendingConfig, cfLendingPoolSupplyBalances, cfLendingPools, cfLoanAccount, cfLoanAccounts, cfMonitoringSimulateAuction, cfOraclePrices, cfPoolDepth, cfPoolOrderbook, cfPoolOrders, cfPoolPriceV2, cfPoolsEnvironment, cfSafeModeStatuses, cfSupportedAssets, cfSwapRate, cfSwapRateV2, cfSwapRateV3, cfSwappingEnvironment, cfTradingStrategy, cfVaultAddresses, chainGetBlockHash, ethereumAddress, hexString, liquidityProvider, lpTotalBalances, numberOrHex, numericString, operator, requestSwapParameterEncoding, rpcResponse, stateGetMetadata, stateGetRuntimeVersion, tronAddress, u256, unregistered, validator };
|
package/dist/types.d.cts
CHANGED
|
@@ -41,6 +41,7 @@ type CfLoanAccounts = RpcResult<'cf_loan_accounts'>;
|
|
|
41
41
|
type CfLendingPoolSupplyBalances = RpcResult<'cf_lending_pool_supply_balances'>;
|
|
42
42
|
type CfVaultAddresses = RpcResult<'cf_get_vault_addresses'>;
|
|
43
43
|
type CfAllLoans = RpcResult<'cf_all_loans'>;
|
|
44
|
+
type CfAllAccountInfos = RpcResult<'cf_all_account_infos'>;
|
|
44
45
|
type CfAccountInfoResponse = RpcResponse<'cf_account_info'>;
|
|
45
46
|
type CfAccountsResponse = RpcResponse<'cf_accounts'>;
|
|
46
47
|
type CfAuctionStateResponse = RpcResponse<'cf_auction_state'>;
|
|
@@ -79,6 +80,7 @@ type CfLoanAccountsResponse = RpcResponse<'cf_loan_accounts'>;
|
|
|
79
80
|
type CfLendingPoolSupplyBalancesResponse = RpcResponse<'cf_lending_pool_supply_balances'>;
|
|
80
81
|
type CfVaultAddressesResponse = RpcResponse<'cf_get_vault_addresses'>;
|
|
81
82
|
type CfAllLoansResponse = RpcResponse<'cf_all_loans'>;
|
|
83
|
+
type CfAllAccountInfosResponse = RpcResponse<'cf_all_account_infos'>;
|
|
82
84
|
type CfUnregisteredAccount = z.output<typeof unregistered>;
|
|
83
85
|
type CfBrokerAccount = z.output<typeof broker>;
|
|
84
86
|
type CfValidatorAccount = z.output<typeof validator>;
|
|
@@ -87,4 +89,4 @@ type CfOperatorAccount = z.output<typeof operator>;
|
|
|
87
89
|
type LpTotalBalances = RpcResult<'lp_total_balances'>;
|
|
88
90
|
type LpTotalBalancesResponse = RpcResponse<'lp_total_balances'>;
|
|
89
91
|
//#endregion
|
|
90
|
-
export { CfAccountInfo, CfAccountInfoResponse, CfAccounts, CfAccountsResponse, CfAllLoans, CfAllLoansResponse, CfAuctionState, CfAuctionStateResponse, CfAvailablePools, CfAvailablePoolsResponse, CfBoostPoolDetails, CfBoostPoolDetailsResponse, CfBoostPoolPendingFees, CfBoostPoolPendingFeesResponse, CfBoostPoolsDepth, CfBoostPoolsDepthResponse, CfBrokerAccount, CfEncodeCfParameters, CfEncodeCfParametersResponse, CfEnvironment, CfEnvironmentResponse, CfFailedCallArbitrum, CfFailedCallArbitrumResponse, CfFailedCallEthereum, CfFailedCallEthereumResponse, CfFailedCallTron, CfFailedCallTronResponse, CfFlipSupply, CfFlipSupplyResponse, CfFundingEnvironment, CfFundingEnvironmentResponse, CfGetTradingStrategies, CfGetTradingStrategiesResponse, CfGetTradingStrategyLimits, CfGetTradingStrategyLimitsResponse, CfIngressEgressEnvironment, CfIngressEgressEnvironmentResponse, CfIngressEgressEvents, CfIngressEgressEventsResponse, CfLendingConfig, CfLendingConfigResponse, CfLendingPoolSupplyBalances, CfLendingPoolSupplyBalancesResponse, CfLendingPools, CfLendingPoolsResponse, CfLiquidityProviderAccount, CfLoanAccounts, CfLoanAccountsResponse, CfMonitoringSimulateAuction, CfMonitoringSimulateAuctionResponse, CfOperatorAccount, CfOraclePrices, CfOraclePricesResponse, CfPoolDepth, CfPoolDepthResponse, CfPoolOrderbook, CfPoolOrderbookResponse, CfPoolOrders, CfPoolOrdersResponse, CfPoolPriceV2, CfPoolPriceV2Response, CfPoolsEnvironment, CfPoolsEnvironmentResponse, CfRequestSwapParameterEncoding, CfRequestSwapParameterEncodingResponse, CfSafeModeStatuses, CfSafeModeStatusesResponse, CfSupportedAssets, CfSupportedAssetsResponse, CfSwapRate, CfSwapRateResponse, CfSwapRateV2, CfSwapRateV2Response, CfSwapRateV3, CfSwapRateV3Response, CfSwappingEnvironment, CfSwappingEnvironmentResponse, CfUnregisteredAccount, CfValidatorAccount, CfVaultAddresses, CfVaultAddressesResponse, LpTotalBalances, LpTotalBalancesResponse, type RpcLimitOrder, type RpcMethod, type RpcRequest as RpcParams, type RpcRangeOrder, type RpcResult };
|
|
92
|
+
export { CfAccountInfo, CfAccountInfoResponse, CfAccounts, CfAccountsResponse, CfAllAccountInfos, CfAllAccountInfosResponse, CfAllLoans, CfAllLoansResponse, CfAuctionState, CfAuctionStateResponse, CfAvailablePools, CfAvailablePoolsResponse, CfBoostPoolDetails, CfBoostPoolDetailsResponse, CfBoostPoolPendingFees, CfBoostPoolPendingFeesResponse, CfBoostPoolsDepth, CfBoostPoolsDepthResponse, CfBrokerAccount, CfEncodeCfParameters, CfEncodeCfParametersResponse, CfEnvironment, CfEnvironmentResponse, CfFailedCallArbitrum, CfFailedCallArbitrumResponse, CfFailedCallEthereum, CfFailedCallEthereumResponse, CfFailedCallTron, CfFailedCallTronResponse, CfFlipSupply, CfFlipSupplyResponse, CfFundingEnvironment, CfFundingEnvironmentResponse, CfGetTradingStrategies, CfGetTradingStrategiesResponse, CfGetTradingStrategyLimits, CfGetTradingStrategyLimitsResponse, CfIngressEgressEnvironment, CfIngressEgressEnvironmentResponse, CfIngressEgressEvents, CfIngressEgressEventsResponse, CfLendingConfig, CfLendingConfigResponse, CfLendingPoolSupplyBalances, CfLendingPoolSupplyBalancesResponse, CfLendingPools, CfLendingPoolsResponse, CfLiquidityProviderAccount, CfLoanAccounts, CfLoanAccountsResponse, CfMonitoringSimulateAuction, CfMonitoringSimulateAuctionResponse, CfOperatorAccount, CfOraclePrices, CfOraclePricesResponse, CfPoolDepth, CfPoolDepthResponse, CfPoolOrderbook, CfPoolOrderbookResponse, CfPoolOrders, CfPoolOrdersResponse, CfPoolPriceV2, CfPoolPriceV2Response, CfPoolsEnvironment, CfPoolsEnvironmentResponse, CfRequestSwapParameterEncoding, CfRequestSwapParameterEncodingResponse, CfSafeModeStatuses, CfSafeModeStatusesResponse, CfSupportedAssets, CfSupportedAssetsResponse, CfSwapRate, CfSwapRateResponse, CfSwapRateV2, CfSwapRateV2Response, CfSwapRateV3, CfSwapRateV3Response, CfSwappingEnvironment, CfSwappingEnvironmentResponse, CfUnregisteredAccount, CfValidatorAccount, CfVaultAddresses, CfVaultAddressesResponse, LpTotalBalances, LpTotalBalancesResponse, type RpcLimitOrder, type RpcMethod, type RpcRequest as RpcParams, type RpcRangeOrder, type RpcResult };
|
package/dist/types.d.mts
CHANGED
|
@@ -41,6 +41,7 @@ type CfLoanAccounts = RpcResult<'cf_loan_accounts'>;
|
|
|
41
41
|
type CfLendingPoolSupplyBalances = RpcResult<'cf_lending_pool_supply_balances'>;
|
|
42
42
|
type CfVaultAddresses = RpcResult<'cf_get_vault_addresses'>;
|
|
43
43
|
type CfAllLoans = RpcResult<'cf_all_loans'>;
|
|
44
|
+
type CfAllAccountInfos = RpcResult<'cf_all_account_infos'>;
|
|
44
45
|
type CfAccountInfoResponse = RpcResponse<'cf_account_info'>;
|
|
45
46
|
type CfAccountsResponse = RpcResponse<'cf_accounts'>;
|
|
46
47
|
type CfAuctionStateResponse = RpcResponse<'cf_auction_state'>;
|
|
@@ -79,6 +80,7 @@ type CfLoanAccountsResponse = RpcResponse<'cf_loan_accounts'>;
|
|
|
79
80
|
type CfLendingPoolSupplyBalancesResponse = RpcResponse<'cf_lending_pool_supply_balances'>;
|
|
80
81
|
type CfVaultAddressesResponse = RpcResponse<'cf_get_vault_addresses'>;
|
|
81
82
|
type CfAllLoansResponse = RpcResponse<'cf_all_loans'>;
|
|
83
|
+
type CfAllAccountInfosResponse = RpcResponse<'cf_all_account_infos'>;
|
|
82
84
|
type CfUnregisteredAccount = z.output<typeof unregistered>;
|
|
83
85
|
type CfBrokerAccount = z.output<typeof broker>;
|
|
84
86
|
type CfValidatorAccount = z.output<typeof validator>;
|
|
@@ -87,4 +89,4 @@ type CfOperatorAccount = z.output<typeof operator>;
|
|
|
87
89
|
type LpTotalBalances = RpcResult<'lp_total_balances'>;
|
|
88
90
|
type LpTotalBalancesResponse = RpcResponse<'lp_total_balances'>;
|
|
89
91
|
//#endregion
|
|
90
|
-
export { CfAccountInfo, CfAccountInfoResponse, CfAccounts, CfAccountsResponse, CfAllLoans, CfAllLoansResponse, CfAuctionState, CfAuctionStateResponse, CfAvailablePools, CfAvailablePoolsResponse, CfBoostPoolDetails, CfBoostPoolDetailsResponse, CfBoostPoolPendingFees, CfBoostPoolPendingFeesResponse, CfBoostPoolsDepth, CfBoostPoolsDepthResponse, CfBrokerAccount, CfEncodeCfParameters, CfEncodeCfParametersResponse, CfEnvironment, CfEnvironmentResponse, CfFailedCallArbitrum, CfFailedCallArbitrumResponse, CfFailedCallEthereum, CfFailedCallEthereumResponse, CfFailedCallTron, CfFailedCallTronResponse, CfFlipSupply, CfFlipSupplyResponse, CfFundingEnvironment, CfFundingEnvironmentResponse, CfGetTradingStrategies, CfGetTradingStrategiesResponse, CfGetTradingStrategyLimits, CfGetTradingStrategyLimitsResponse, CfIngressEgressEnvironment, CfIngressEgressEnvironmentResponse, CfIngressEgressEvents, CfIngressEgressEventsResponse, CfLendingConfig, CfLendingConfigResponse, CfLendingPoolSupplyBalances, CfLendingPoolSupplyBalancesResponse, CfLendingPools, CfLendingPoolsResponse, CfLiquidityProviderAccount, CfLoanAccounts, CfLoanAccountsResponse, CfMonitoringSimulateAuction, CfMonitoringSimulateAuctionResponse, CfOperatorAccount, CfOraclePrices, CfOraclePricesResponse, CfPoolDepth, CfPoolDepthResponse, CfPoolOrderbook, CfPoolOrderbookResponse, CfPoolOrders, CfPoolOrdersResponse, CfPoolPriceV2, CfPoolPriceV2Response, CfPoolsEnvironment, CfPoolsEnvironmentResponse, CfRequestSwapParameterEncoding, CfRequestSwapParameterEncodingResponse, CfSafeModeStatuses, CfSafeModeStatusesResponse, CfSupportedAssets, CfSupportedAssetsResponse, CfSwapRate, CfSwapRateResponse, CfSwapRateV2, CfSwapRateV2Response, CfSwapRateV3, CfSwapRateV3Response, CfSwappingEnvironment, CfSwappingEnvironmentResponse, CfUnregisteredAccount, CfValidatorAccount, CfVaultAddresses, CfVaultAddressesResponse, LpTotalBalances, LpTotalBalancesResponse, type RpcLimitOrder, type RpcMethod, type RpcRequest as RpcParams, type RpcRangeOrder, type RpcResult };
|
|
92
|
+
export { CfAccountInfo, CfAccountInfoResponse, CfAccounts, CfAccountsResponse, CfAllAccountInfos, CfAllAccountInfosResponse, CfAllLoans, CfAllLoansResponse, CfAuctionState, CfAuctionStateResponse, CfAvailablePools, CfAvailablePoolsResponse, CfBoostPoolDetails, CfBoostPoolDetailsResponse, CfBoostPoolPendingFees, CfBoostPoolPendingFeesResponse, CfBoostPoolsDepth, CfBoostPoolsDepthResponse, CfBrokerAccount, CfEncodeCfParameters, CfEncodeCfParametersResponse, CfEnvironment, CfEnvironmentResponse, CfFailedCallArbitrum, CfFailedCallArbitrumResponse, CfFailedCallEthereum, CfFailedCallEthereumResponse, CfFailedCallTron, CfFailedCallTronResponse, CfFlipSupply, CfFlipSupplyResponse, CfFundingEnvironment, CfFundingEnvironmentResponse, CfGetTradingStrategies, CfGetTradingStrategiesResponse, CfGetTradingStrategyLimits, CfGetTradingStrategyLimitsResponse, CfIngressEgressEnvironment, CfIngressEgressEnvironmentResponse, CfIngressEgressEvents, CfIngressEgressEventsResponse, CfLendingConfig, CfLendingConfigResponse, CfLendingPoolSupplyBalances, CfLendingPoolSupplyBalancesResponse, CfLendingPools, CfLendingPoolsResponse, CfLiquidityProviderAccount, CfLoanAccounts, CfLoanAccountsResponse, CfMonitoringSimulateAuction, CfMonitoringSimulateAuctionResponse, CfOperatorAccount, CfOraclePrices, CfOraclePricesResponse, CfPoolDepth, CfPoolDepthResponse, CfPoolOrderbook, CfPoolOrderbookResponse, CfPoolOrders, CfPoolOrdersResponse, CfPoolPriceV2, CfPoolPriceV2Response, CfPoolsEnvironment, CfPoolsEnvironmentResponse, CfRequestSwapParameterEncoding, CfRequestSwapParameterEncodingResponse, CfSafeModeStatuses, CfSafeModeStatusesResponse, CfSupportedAssets, CfSupportedAssetsResponse, CfSwapRate, CfSwapRateResponse, CfSwapRateV2, CfSwapRateV2Response, CfSwapRateV3, CfSwapRateV3Response, CfSwappingEnvironment, CfSwappingEnvironmentResponse, CfUnregisteredAccount, CfValidatorAccount, CfVaultAddresses, CfVaultAddressesResponse, LpTotalBalances, LpTotalBalancesResponse, type RpcLimitOrder, type RpcMethod, type RpcRequest as RpcParams, type RpcRangeOrder, type RpcResult };
|