@sodax/dapp-kit 0.0.1-rc.13 → 0.0.1-rc.14
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/hooks/mm/useUserReservesData.d.ts.map +1 -1
- package/dist/hooks/provider/useSpokeProvider.d.ts.map +1 -1
- package/dist/hooks/shared/useEstimateGas.d.ts.map +1 -1
- package/dist/hooks/swap/useCreateIntentOrder.d.ts +2 -6
- package/dist/hooks/swap/useCreateIntentOrder.d.ts.map +1 -1
- package/dist/index.js +11 -5
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +12 -6
- package/dist/index.mjs.map +1 -1
- package/package.json +4 -4
- package/src/hooks/mm/useUserReservesData.ts +10 -9
- package/src/hooks/provider/useSpokeProvider.ts +9 -0
- package/src/hooks/shared/useEstimateGas.ts +0 -2
- package/src/hooks/swap/useCreateIntentOrder.ts +2 -5
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useUserReservesData.d.ts","sourceRoot":"","sources":["../../../src/hooks/mm/useUserReservesData.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,cAAc,CAAC;
|
|
1
|
+
{"version":3,"file":"useUserReservesData.d.ts","sourceRoot":"","sources":["../../../src/hooks/mm/useUserReservesData.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,cAAc,CAAC;AAM5C,wBAAgB,mBAAmB,CAAC,YAAY,EAAE,OAAO,EAAE,OAAO,EAAE,MAAM,GAAG,SAAS,+DAiCrF"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useSpokeProvider.d.ts","sourceRoot":"","sources":["../../../src/hooks/provider/useSpokeProvider.ts"],"names":[],"mappings":"AAAA,OAAO,EAYL,KAAK,aAAa,EAClB,KAAK,eAAe,
|
|
1
|
+
{"version":3,"file":"useSpokeProvider.d.ts","sourceRoot":"","sources":["../../../src/hooks/provider/useSpokeProvider.ts"],"names":[],"mappings":"AAAA,OAAO,EAYL,KAAK,aAAa,EAClB,KAAK,eAAe,EAMrB,MAAM,YAAY,CAAC;AACpB,OAAO,KAAK,EAIV,YAAY,EAIb,MAAM,cAAc,CAAC;AAItB;;;;;;;;;;;;;GAaG;AACH,wBAAgB,gBAAgB,CAC9B,YAAY,EAAE,YAAY,GAAG,SAAS,EACtC,cAAc,CAAC,EAAE,eAAe,GAAG,SAAS,GAC3C,aAAa,GAAG,SAAS,CA2D3B"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useEstimateGas.d.ts","sourceRoot":"","sources":["../../../src/hooks/shared/useEstimateGas.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,wBAAwB,EAAE,KAAK,aAAa,EAAgB,KAAK,YAAY,EAAE,MAAM,YAAY,CAAC;AAChH,OAAO,EAAe,KAAK,iBAAiB,EAAE,MAAM,uBAAuB,CAAC;AAE5E,wBAAgB,cAAc,CAAC,CAAC,SAAS,aAAa,GAAG,aAAa,EACpE,aAAa,EAAE,CAAC,GAAG,SAAS,GAC3B,iBAAiB,CAAC,wBAAwB,CAAC,CAAC,CAAC,EAAE,KAAK,EAAE,YAAY,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,
|
|
1
|
+
{"version":3,"file":"useEstimateGas.d.ts","sourceRoot":"","sources":["../../../src/hooks/shared/useEstimateGas.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,wBAAwB,EAAE,KAAK,aAAa,EAAgB,KAAK,YAAY,EAAE,MAAM,YAAY,CAAC;AAChH,OAAO,EAAe,KAAK,iBAAiB,EAAE,MAAM,uBAAuB,CAAC;AAE5E,wBAAgB,cAAc,CAAC,CAAC,SAAS,aAAa,GAAG,aAAa,EACpE,aAAa,EAAE,CAAC,GAAG,SAAS,GAC3B,iBAAiB,CAAC,wBAAwB,CAAC,CAAC,CAAC,EAAE,KAAK,EAAE,YAAY,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAY9E"}
|
|
@@ -1,10 +1,6 @@
|
|
|
1
|
-
import type { CreateIntentParams, SolverExecutionResponse, Result, IntentErrorCode, Intent,
|
|
1
|
+
import type { CreateIntentParams, SolverExecutionResponse, Result, IntentErrorCode, Intent, IntentError, SpokeProvider, Hex } from '@sodax/sdk';
|
|
2
2
|
import { type UseMutationResult } from '@tanstack/react-query';
|
|
3
|
-
type CreateIntentResult = Result<[
|
|
4
|
-
SolverExecutionResponse,
|
|
5
|
-
Intent,
|
|
6
|
-
PacketData
|
|
7
|
-
], IntentError<IntentErrorCode>>;
|
|
3
|
+
type CreateIntentResult = Result<[SolverExecutionResponse, Intent, Hex], IntentError<IntentErrorCode>>;
|
|
8
4
|
/**
|
|
9
5
|
* Hook for creating and submitting an intent order for cross-chain swaps.
|
|
10
6
|
* Uses React Query's useMutation for better state management and caching.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useCreateIntentOrder.d.ts","sourceRoot":"","sources":["../../../src/hooks/swap/useCreateIntentOrder.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EACV,kBAAkB,EAClB,uBAAuB,EACvB,MAAM,EACN,eAAe,EACf,MAAM,EACN,
|
|
1
|
+
{"version":3,"file":"useCreateIntentOrder.d.ts","sourceRoot":"","sources":["../../../src/hooks/swap/useCreateIntentOrder.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EACV,kBAAkB,EAClB,uBAAuB,EACvB,MAAM,EACN,eAAe,EACf,MAAM,EACN,WAAW,EACX,aAAa,EACb,GAAG,EACJ,MAAM,YAAY,CAAC;AACpB,OAAO,EAAe,KAAK,iBAAiB,EAAE,MAAM,uBAAuB,CAAC;AAE5E,KAAK,kBAAkB,GAAG,MAAM,CAAC,CAAC,uBAAuB,EAAE,MAAM,EAAE,GAAG,CAAC,EAAE,WAAW,CAAC,eAAe,CAAC,CAAC,CAAC;AAEvG;;;;;;;;;;;;;;;;;;;;;;GAsBG;AACH,wBAAgB,oBAAoB,CAClC,aAAa,EAAE,aAAa,GAAG,SAAS,GACvC,iBAAiB,CAAC,kBAAkB,EAAE,KAAK,EAAE,kBAAkB,CAAC,CAWlE"}
|
package/dist/index.js
CHANGED
|
@@ -44,6 +44,12 @@ function useSpokeProvider(spokeChainId, walletProvider) {
|
|
|
44
44
|
if (!_walletProvider) return void 0;
|
|
45
45
|
if (!spokeChainId) return void 0;
|
|
46
46
|
if (xChainType === "EVM") {
|
|
47
|
+
if (spokeChainId === sdk.SONIC_MAINNET_CHAIN_ID) {
|
|
48
|
+
return new sdk.SonicSpokeProvider(
|
|
49
|
+
_walletProvider,
|
|
50
|
+
sdk.spokeChainConfig[spokeChainId]
|
|
51
|
+
);
|
|
52
|
+
}
|
|
47
53
|
return new sdk.EvmSpokeProvider(
|
|
48
54
|
_walletProvider,
|
|
49
55
|
sdk.spokeChainConfig[spokeChainId]
|
|
@@ -181,16 +187,16 @@ function useUserReservesData(spokeChainId, address) {
|
|
|
181
187
|
const { sodax } = useSodaxContext();
|
|
182
188
|
const hubChainId = sodax.config?.hubProviderConfig?.chainConfig.chain.id ?? "sonic";
|
|
183
189
|
const hubProvider = useHubProvider();
|
|
190
|
+
const spokeProvider = useSpokeProvider(spokeChainId);
|
|
184
191
|
const { data: userReserves } = reactQuery.useQuery({
|
|
185
192
|
queryKey: ["userReserves", spokeChainId, address],
|
|
186
193
|
queryFn: async () => {
|
|
187
|
-
if (!hubProvider || !address) {
|
|
194
|
+
if (!hubProvider || !spokeProvider || !address) {
|
|
188
195
|
return;
|
|
189
196
|
}
|
|
190
|
-
const
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
addressBytes,
|
|
197
|
+
const hubWalletAddress = await sdk.WalletAbstractionService.getUserHubWalletAddress(
|
|
198
|
+
address,
|
|
199
|
+
spokeProvider,
|
|
194
200
|
hubProvider
|
|
195
201
|
);
|
|
196
202
|
const moneyMarketConfig = sdk.getMoneyMarketConfig(hubChainId);
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/contexts/index.ts","../src/hooks/shared/useSodaxContext.ts","../src/hooks/shared/useEstimateGas.ts","../src/hooks/provider/useHubProvider.ts","../src/hooks/provider/useSpokeProvider.ts","../src/hooks/mm/useBorrow.ts","../src/hooks/mm/useRepay.ts","../src/hooks/mm/useSupply.ts","../src/hooks/mm/useWithdraw.ts","../src/hooks/mm/useUserReservesData.ts","../src/hooks/mm/useReservesData.ts","../src/hooks/mm/useMMAllowance.ts","../src/hooks/mm/useMMApprove.ts","../src/hooks/swap/useQuote.ts","../src/hooks/swap/useCreateIntentOrder.ts","../src/hooks/swap/useStatus.ts","../src/hooks/swap/useSwapAllowance.ts","../src/hooks/swap/useSwapApprove.ts","../src/providers/SodaxProvider.tsx","../src/core/index.ts"],"names":["createContext","useContext","useMutation","SpokeService","getXChainType","useWalletProvider","useMemo","EvmSpokeProvider","spokeChainConfig","SuiSpokeProvider","IconSpokeProvider","InjectiveSpokeProvider","StellarSpokeProvider","SolanaSpokeProvider","parseUnits","useQuery","encodeAddress","EvmWalletAbstraction","getMoneyMarketConfig","useQueryClient","Sodax","getHubChainConfig","EvmHubProvider","React","hubAssets"],"mappings":"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","file":"index.js","sourcesContent":["import { createContext } from 'react';\nimport type { EvmHubProvider, Sodax } from '@sodax/sdk';\n\nexport interface SodaxContextType {\n sodax: Sodax;\n testnet: boolean;\n hubProvider: EvmHubProvider | undefined;\n}\n\nexport const SodaxContext = createContext<SodaxContextType | null>(null);\n","import { SodaxContext, type SodaxContextType } from '@/contexts';\nimport { useContext } from 'react';\n\n/**\n * Hook to access the Sodax context which provides access to the Sodax SDK instance and chain configuration\n * @throws {Error} If used outside of a SodaxProvider\n * @returns {SodaxContextType} The Sodax context containing SDK instance and configuration\n */\n\nexport const useSodaxContext = (): SodaxContextType => {\n const context = useContext(SodaxContext);\n if (!context) {\n throw new Error('useSodaxContext must be used within a SodaxProvider');\n }\n return context;\n};\n","import { type GetEstimateGasReturnType, type SpokeProvider, SpokeService, type TxReturnType } from '@sodax/sdk';\nimport { useMutation, type UseMutationResult } from '@tanstack/react-query';\n\nexport function useEstimateGas<T extends SpokeProvider = SpokeProvider>(\n spokeProvider: T | undefined,\n): UseMutationResult<GetEstimateGasReturnType<T>, Error, TxReturnType<T, true>> {\n\n return useMutation<GetEstimateGasReturnType<T>, Error, TxReturnType<T, true>>({\n mutationFn: async (rawTx: TxReturnType<T, true>) => {\n if (!spokeProvider) {\n throw new Error('spokeProvider is not found');\n }\n\n const response = await SpokeService.estimateGas(rawTx, spokeProvider);\n\n return response;\n },\n });\n}\n\n","import type { EvmHubProvider } from '@sodax/sdk';\nimport { useSodaxContext } from '../shared/useSodaxContext';\n\nexport function useHubProvider(): EvmHubProvider | undefined {\n const { hubProvider } = useSodaxContext();\n\n return hubProvider;\n}\n","import {\n EvmSpokeProvider,\n spokeChainConfig,\n type SuiSpokeChainConfig,\n SuiSpokeProvider,\n type EvmSpokeChainConfig,\n IconSpokeProvider,\n type IconSpokeChainConfig,\n InjectiveSpokeProvider,\n type InjectiveSpokeChainConfig,\n StellarSpokeProvider,\n type StellarSpokeChainConfig,\n type SpokeProvider,\n type IWalletProvider,\n SolanaSpokeProvider,\n type SolanaChainConfig,\n} from '@sodax/sdk';\nimport type {\n IEvmWalletProvider,\n IIconWalletProvider,\n ISuiWalletProvider,\n SpokeChainId,\n IInjectiveWalletProvider,\n IStellarWalletProvider,\n ISolanaWalletProvider,\n} from '@sodax/types';\nimport { getXChainType, useWalletProvider } from '@sodax/wallet-sdk';\nimport { useMemo } from 'react';\n\n/**\n * Hook to get the appropriate spoke provider based on the chain type.\n * Supports EVM, SUI, ICON and INJECTIVE chains.\n *\n * @param {SpokeChainId | undefined} spokeChainId - The spoke chain ID to get the provider for\n * @param {IWalletProvider | undefined} walletProvider - The wallet provider to use\n * @returns {SpokeProvider | undefined} The appropriate spoke provider instance for the given chain ID, or undefined if invalid/unsupported\n *\n * @example\n * ```tsx\n * // Using a specific SpokeChainId and wallet provider\n * const spokeProvider = useSpokeProvider(spokeChainId, walletProvider);\n * ```\n */\nexport function useSpokeProvider(\n spokeChainId: SpokeChainId | undefined,\n walletProvider?: IWalletProvider | undefined,\n): SpokeProvider | undefined {\n const xChainType = getXChainType(spokeChainId);\n const walletProvider_ = useWalletProvider(spokeChainId);\n const _walletProvider = walletProvider ?? walletProvider_;\n\n const spokeProvider = useMemo(() => {\n if (!_walletProvider) return undefined;\n if (!spokeChainId) return undefined;\n\n if (xChainType === 'EVM') {\n return new EvmSpokeProvider(\n _walletProvider as IEvmWalletProvider,\n spokeChainConfig[spokeChainId] as EvmSpokeChainConfig,\n );\n }\n if (xChainType === 'SUI') {\n return new SuiSpokeProvider(\n spokeChainConfig[spokeChainId] as SuiSpokeChainConfig,\n _walletProvider as ISuiWalletProvider,\n );\n }\n if (xChainType === 'ICON') {\n return new IconSpokeProvider(\n _walletProvider as IIconWalletProvider,\n spokeChainConfig[spokeChainId] as IconSpokeChainConfig,\n );\n }\n if (xChainType === 'INJECTIVE') {\n return new InjectiveSpokeProvider(\n spokeChainConfig[spokeChainId] as InjectiveSpokeChainConfig,\n _walletProvider as IInjectiveWalletProvider,\n );\n }\n\n if (xChainType === 'STELLAR') {\n const stellarConfig = spokeChainConfig[spokeChainId] as StellarSpokeChainConfig;\n return new StellarSpokeProvider(_walletProvider as IStellarWalletProvider, stellarConfig, {\n horizonRpcUrl: stellarConfig.horizonRpcUrl,\n sorobanRpcUrl: stellarConfig.sorobanRpcUrl,\n });\n }\n\n if (xChainType === 'SOLANA') {\n return new SolanaSpokeProvider(\n _walletProvider as ISolanaWalletProvider,\n spokeChainConfig[spokeChainId] as SolanaChainConfig,\n );\n }\n\n return undefined;\n }, [spokeChainId, xChainType, _walletProvider]);\n\n return spokeProvider;\n}\n","import type { XToken } from '@sodax/types';\nimport { useMutation, type UseMutationResult } from '@tanstack/react-query';\nimport { parseUnits } from 'viem';\nimport { useSodaxContext } from '../shared/useSodaxContext';\nimport type { SpokeProvider } from '@sodax/sdk';\ninterface BorrowResponse {\n ok: true;\n value: [string, string];\n}\n\n/**\n * Hook for borrowing tokens from the Sodax money market.\n *\n * This hook provides functionality to borrow tokens from the money market protocol,\n * handling the entire borrow process including transaction creation, submission,\n * and cross-chain communication.\n *\n * @param {XToken} spokeToken - The token to borrow from the spoke chain. Must be an XToken with valid address and chain information.\n * @param {SpokeProvider} spokeProvider - The spoke provider to use for the borrow transaction. Must be a valid SpokeProvider instance.\n *\n * @returns {UseMutationResult<BorrowResponse, Error, string>} A mutation result object with the following properties:\n * - mutateAsync: Function to execute the borrow transaction\n * - isPending: Boolean indicating if a transaction is in progress\n * - error: Error object if the last transaction failed, null otherwise\n *\n * @example\n * ```typescript\n * const { mutateAsync: borrow, isPending, error } = useBorrow(spokeToken);\n * await borrow('100');\n * ```\n *\n * @throws {Error} When:\n * - spokeProvider is not available\n * - Transaction execution fails\n */\nexport function useBorrow(\n spokeToken: XToken,\n spokeProvider: SpokeProvider | undefined,\n): UseMutationResult<BorrowResponse, Error, string> {\n const { sodax } = useSodaxContext();\n\n return useMutation<BorrowResponse, Error, string>({\n mutationFn: async (amount: string) => {\n if (!spokeProvider) {\n throw new Error('spokeProvider is not found');\n }\n\n const response = await sodax.moneyMarket.borrow(\n {\n token: spokeToken.address,\n amount: parseUnits(amount, 18),\n action: 'borrow',\n },\n spokeProvider,\n );\n\n if (!response.ok) {\n throw new Error('Failed to borrow tokens');\n }\n\n console.log('Borrow transaction submitted:', response);\n return response;\n },\n });\n}\n","import type { SpokeProvider } from '@sodax/sdk';\nimport type { XToken } from '@sodax/types';\nimport { useMutation, type UseMutationResult } from '@tanstack/react-query';\nimport { parseUnits } from 'viem';\nimport { useSodaxContext } from '../shared/useSodaxContext';\n\ninterface RepayResponse {\n ok: true;\n value: [string, string];\n}\n\n/**\n * Hook for repaying borrowed tokens to the Sodax money market.\n *\n * This hook provides functionality to repay borrowed tokens back to the money market protocol,\n * handling the entire repayment process including transaction creation, submission,\n * and cross-chain communication.\n *\n * @param {XToken} spokeToken - The token to repay on the spoke chain. Must be an XToken with valid address and chain information.\n * @param {SpokeProvider} spokeProvider - The spoke provider to use for the repay transaction. Must be a valid SpokeProvider instance.\n *\n * @returns {UseMutationResult<RepayResponse, Error, string>} A mutation result object with the following properties:\n * - mutateAsync: Function to execute the repay transaction\n * - isPending: Boolean indicating if a transaction is in progress\n * - error: Error object if the last transaction failed, null otherwise\n *\n * @example\n * ```typescript\n * const { mutateAsync: repay, isPending, error } = useRepay(spokeToken);\n * await repay('100');\n * ```\n *\n * @throws {Error} When:\n * - spokeProvider is not available\n * - Transaction execution fails\n */\nexport function useRepay(\n spokeToken: XToken,\n spokeProvider: SpokeProvider | undefined,\n): UseMutationResult<RepayResponse, Error, string> {\n const { sodax } = useSodaxContext();\n\n return useMutation<RepayResponse, Error, string>({\n mutationFn: async (amount: string) => {\n if (!spokeProvider) {\n throw new Error('spokeProvider is not found');\n }\n\n const response = await sodax.moneyMarket.repay(\n {\n token: spokeToken.address,\n amount: parseUnits(amount, spokeToken.decimals),\n action: 'repay',\n },\n spokeProvider,\n );\n\n if (!response.ok) {\n throw new Error('Failed to repay tokens');\n }\n\n console.log('Repay transaction submitted:', response);\n return response;\n },\n });\n}\n","import type { SpokeProvider } from '@sodax/sdk';\nimport type { XToken } from '@sodax/types';\nimport { useMutation, type UseMutationResult } from '@tanstack/react-query';\nimport { parseUnits } from 'viem';\nimport { useSodaxContext } from '../shared/useSodaxContext';\n\ninterface SupplyResponse {\n ok: true;\n value: [string, string];\n}\n\n/**\n * Hook for supplying tokens to the Sodax money market.\n *\n * This hook provides functionality to supply tokens to the money market protocol,\n * handling the entire supply process including transaction creation, submission,\n * and cross-chain communication.\n *\n * @param {XToken} spokeToken - The token to supply on the spoke chain. Must be an XToken with valid address and chain information.\n * @param {SpokeProvider} spokeProvider - The spoke provider to use for the supply transaction. Must be a valid SpokeProvider instance.\n *\n * @returns {UseMutationResult<SupplyResponse, Error, string>} A mutation result object with the following properties:\n * - mutateAsync: Function to execute the supply transaction\n * - isPending: Boolean indicating if a transaction is in progress\n * - error: Error object if the last transaction failed, null otherwise\n *\n * @example\n * ```typescript\n * const { mutateAsync: supply, isPending, error } = useSupply(spokeToken);\n * await supply('100');\n * ```\n *\n * @throws {Error} When:\n * - spokeProvider is not available\n */\nexport function useSupply(\n spokeToken: XToken,\n spokeProvider: SpokeProvider | undefined,\n): UseMutationResult<SupplyResponse, Error, string> {\n const { sodax } = useSodaxContext();\n\n return useMutation<SupplyResponse, Error, string>({\n mutationFn: async (amount: string) => {\n if (!spokeProvider) {\n throw new Error('spokeProvider is not found');\n }\n\n const response = await sodax.moneyMarket.supply(\n {\n token: spokeToken.address,\n amount: parseUnits(amount, spokeToken.decimals),\n action: 'supply',\n },\n spokeProvider,\n );\n\n if (!response.ok) {\n throw new Error('Failed to supply tokens');\n }\n\n console.log('Supply transaction submitted:', response);\n return response;\n },\n });\n}\n","import type { SpokeProvider } from '@sodax/sdk';\nimport type { XToken } from '@sodax/types';\nimport { useMutation, type UseMutationResult } from '@tanstack/react-query';\nimport { parseUnits } from 'viem';\nimport { useSodaxContext } from '../shared/useSodaxContext';\n\ninterface WithdrawResponse {\n ok: true;\n value: [string, string];\n}\n\n/**\n * Hook for withdrawing supplied tokens from the Sodax money market.\n *\n * This hook provides functionality to withdraw previously supplied tokens from the money market protocol,\n * handling the entire withdrawal process including transaction creation, submission,\n * and cross-chain communication.\n *\n * @param {XToken} spokeToken - The token to withdraw from the spoke chain. Must be an XToken with valid address and chain information.\n * @param {SpokeProvider} spokeProvider - The spoke provider to use for the withdraw transaction. Must be a valid SpokeProvider instance.\n *\n * @returns {UseMutationResult<WithdrawResponse, Error, string>} A mutation result object with the following properties:\n * - mutateAsync: Function to execute the withdraw transaction\n * - isPending: Boolean indicating if a transaction is in progress\n * @example\n * ```typescript\n * const { mutateAsync: withdraw, isPending, error } = useWithdraw(spokeToken);\n * await withdraw('100');\n * ```\n *\n * @throws {Error} When:\n * - spokeProvider is not available\n * - Transaction execution fails\n */\nexport function useWithdraw(\n spokeToken: XToken,\n spokeProvider: SpokeProvider | undefined,\n): UseMutationResult<WithdrawResponse, Error, string> {\n const { sodax } = useSodaxContext();\n\n return useMutation<WithdrawResponse, Error, string>({\n mutationFn: async (amount: string) => {\n if (!spokeProvider) {\n throw new Error('spokeProvider is not found');\n }\n\n const response = await sodax.moneyMarket.withdraw(\n {\n token: spokeToken.address,\n // vault token on hub chain decimals is 18\n amount: parseUnits(amount, 18),\n action: 'withdraw',\n },\n spokeProvider,\n );\n\n if (!response.ok) {\n throw new Error('Failed to withdraw tokens');\n }\n\n console.log('Withdraw transaction submitted:', response);\n return response;\n },\n });\n}\n","import { encodeAddress, EvmWalletAbstraction, getMoneyMarketConfig, type EvmHubProvider } from '@sodax/sdk';\nimport type { HubChainId, SpokeChainId } from '@sodax/types';\nimport type { ChainId } from '@sodax/types';\nimport { useQuery } from '@tanstack/react-query';\nimport { useHubProvider } from '../provider/useHubProvider';\nimport { useSodaxContext } from '../shared/useSodaxContext';\n\nexport function useUserReservesData(spokeChainId: ChainId, address: string | undefined) {\n const { sodax } = useSodaxContext();\n const hubChainId = (sodax.config?.hubProviderConfig?.chainConfig.chain.id ?? 'sonic') as HubChainId;\n const hubProvider = useHubProvider();\n\n const { data: userReserves } = useQuery({\n queryKey: ['userReserves', spokeChainId, address],\n queryFn: async () => {\n if (!hubProvider || !address) {\n return;\n }\n\n const addressBytes = encodeAddress(spokeChainId, address);\n const hubWalletAddress = await EvmWalletAbstraction.getUserHubWalletAddress(\n spokeChainId as SpokeChainId,\n addressBytes,\n hubProvider as EvmHubProvider,\n );\n\n const moneyMarketConfig = getMoneyMarketConfig(hubChainId);\n const [res] = await sodax.moneyMarket.getUserReservesData(\n hubWalletAddress as `0x${string}`,\n moneyMarketConfig.uiPoolDataProvider,\n moneyMarketConfig.poolAddressesProvider,\n );\n\n return res;\n },\n enabled: !!spokeChainId && !!hubProvider && !!address,\n refetchInterval: 5000,\n });\n\n return userReserves;\n}\n","import { getMoneyMarketConfig } from '@sodax/sdk';\nimport type { HubChainId } from '@sodax/types';\nimport { useQuery } from '@tanstack/react-query';\nimport { useSodaxContext } from '../shared/useSodaxContext';\n/**\n * Hook for fetching reserves data from the Sodax money market.\n *\n * This hook provides access to the current state of all reserves in the money market protocol,\n * including liquidity, interest rates, and other key metrics. The data is automatically\n * fetched and cached using React Query.\n *\n * @example\n * ```typescript\n * const { data: reservesData, isLoading, error } = useReservesData();\n * ```\n *\n * @returns A React Query result object containing:\n * - data: The reserves data when available\n * - isLoading: Loading state indicator\n * - error: Any error that occurred during data fetching\n */\n\nexport function useReservesData() {\n const { sodax } = useSodaxContext();\n const hubChainId = (sodax.config?.hubProviderConfig?.chainConfig.chain.id ?? 'sonic') as HubChainId;\n\n return useQuery({\n queryKey: ['reservesData'],\n queryFn: async () => {\n const moneyMarketConfig = getMoneyMarketConfig(hubChainId);\n return await sodax.moneyMarket.getReservesData(\n moneyMarketConfig.uiPoolDataProvider,\n moneyMarketConfig.poolAddressesProvider,\n );\n },\n });\n}\n","import { useQuery, type UseQueryResult } from '@tanstack/react-query';\nimport type { XToken } from '@sodax/types';\nimport { useSodaxContext } from '../shared/useSodaxContext';\nimport { parseUnits } from 'viem';\nimport type { MoneyMarketAction, SpokeProvider } from '@sodax/sdk';\n\n/**\n * Hook for checking token allowance for money market operations.\n *\n * This hook verifies if the user has approved enough tokens for a specific money market action\n * (borrow/repay). It automatically queries and tracks the allowance status.\n *\n * @param {XToken} token - The token to check allowance for. Must be an XToken with valid address and chain information.\n * @param {string} amount - The amount to check allowance for, as a decimal string\n * @param {MoneyMarketAction} action - The money market action to check allowance for ('borrow' or 'repay')\n * @param {SpokeProvider} spokeProvider - The spoke provider to use for allowance checks\n *\n * @returns {UseQueryResult<boolean, Error>} A React Query result containing:\n * - data: Boolean indicating if allowance is sufficient\n * - isLoading: Loading state indicator\n * - error: Any error that occurred during the check\n *\n * @example\n * ```typescript\n * const { data: hasAllowed, isLoading } = useMMAllowance(token, \"100\", \"repay\", provider);\n * ```\n */\nexport function useMMAllowance(\n token: XToken,\n amount: string,\n action: MoneyMarketAction,\n spokeProvider: SpokeProvider | undefined,\n): UseQueryResult<boolean, Error> {\n const { sodax } = useSodaxContext();\n\n return useQuery({\n queryKey: ['allowance', token.address, amount, action],\n queryFn: async () => {\n if (!spokeProvider) throw new Error('Spoke provider is required');\n const allowance = await sodax.moneyMarket.isAllowanceValid(\n {\n token: token.address,\n amount: parseUnits(amount, token.decimals),\n action,\n },\n spokeProvider,\n );\n if (allowance.ok) {\n return allowance.value;\n }\n return false;\n },\n enabled: !!spokeProvider,\n });\n}\n","import { useSodaxContext } from '../shared/useSodaxContext';\nimport type { XToken } from '@sodax/types';\nimport { parseUnits } from 'viem';\nimport { useMutation, useQueryClient } from '@tanstack/react-query';\nimport type { MoneyMarketAction, SpokeProvider } from '@sodax/sdk';\n\ninterface UseApproveReturn {\n approve: ({ amount, action }: { amount: string; action: MoneyMarketAction }) => Promise<boolean>;\n isLoading: boolean;\n error: Error | null;\n resetError: () => void;\n}\n\n/**\n * Hook for approving token spending for money market actions\n * @param token The token to approve spending for\n * @param spokeProvider The spoke provider instance for the chain\n * @returns Object containing approve function, loading state, error state and reset function\n * @example\n * ```tsx\n * const { approve, isLoading, error } = useMMApprove(token, spokeProvider);\n *\n * // Approve tokens for supply action\n * await approve({ amount: \"100\", action: \"supply\" });\n * ```\n */\n\nexport function useMMApprove(token: XToken, spokeProvider: SpokeProvider | undefined): UseApproveReturn {\n const { sodax } = useSodaxContext();\n const queryClient = useQueryClient();\n\n const {\n mutateAsync: approve,\n isPending,\n error,\n reset: resetError,\n } = useMutation({\n mutationFn: async ({ amount, action }: { amount: string; action: MoneyMarketAction }) => {\n if (!spokeProvider) {\n throw new Error('Spoke provider not found');\n }\n const allowance = await sodax.moneyMarket.approve(\n {\n token: token.address,\n amount: parseUnits(amount, token.decimals),\n action,\n },\n spokeProvider,\n );\n if (!allowance.ok) {\n throw new Error('Failed to approve tokens');\n }\n return allowance.ok;\n },\n onSuccess: () => {\n // Invalidate allowance query to refetch the new allowance\n queryClient.invalidateQueries({ queryKey: ['allowance', token.address] });\n },\n });\n\n return {\n approve,\n isLoading: isPending,\n error: error,\n resetError,\n };\n}\n","import type { SolverErrorResponse, SolverIntentQuoteRequest, SolverIntentQuoteResponse, Result } from '@sodax/sdk';\nimport { useSodaxContext } from '../shared/useSodaxContext';\nimport { useQuery, type UseQueryResult } from '@tanstack/react-query';\n\n/**\n * Hook for fetching a quote for an intent-based swap.\n *\n * This hook provides real-time quote data for an intent-based swap.\n *\n * @param {SolverIntentQuoteRequest | undefined} payload - The intent quote request parameters. If undefined, the query will be disabled.\n *\n * @returns {UseQueryResult<Result<SolverIntentQuoteResponse, SolverErrorResponse> | undefined>} A query result object containing:\n * - data: The quote result from the solver\n * - isLoading: Boolean indicating if the quote is being fetched\n * - error: Error object if the quote request failed\n * - refetch: Function to manually trigger a quote refresh\n *\n * @example\n * ```typescript\n * const { data: quote, isLoading } = useQuote({\n * token_src: '0x...',\n * token_src_blockchain_id: '1',\n * token_dst: '0x...',\n * token_dst_blockchain_id: '2',\n * amount: '1000000000000000000',\n * quote_type: 'exact_input',\n * });\n *\n * if (isLoading) return <div>Loading quote...</div>;\n * if (quote) {\n * console.log('Quote received:', quote);\n * }\n * ```\n *\n * @remarks\n * - The quote is automatically refreshed every 3 seconds\n * - The query is disabled when payload is undefined\n * - Uses React Query for efficient caching and state management\n */\nexport const useQuote = (\n payload: SolverIntentQuoteRequest | undefined,\n): UseQueryResult<Result<SolverIntentQuoteResponse, SolverErrorResponse> | undefined> => {\n const { sodax } = useSodaxContext();\n return useQuery({\n queryKey: [payload],\n queryFn: async () => {\n if (!payload) {\n return undefined;\n }\n return sodax.solver.getQuote(payload);\n },\n enabled: !!payload,\n refetchInterval: 3000,\n });\n};\n","import { useSodaxContext } from '../shared/useSodaxContext';\nimport type {\n CreateIntentParams,\n SolverExecutionResponse,\n Result,\n IntentErrorCode,\n Intent,\n PacketData,\n IntentError,\n SpokeProvider,\n} from '@sodax/sdk';\nimport { useMutation, type UseMutationResult } from '@tanstack/react-query';\n\ntype CreateIntentResult = Result<\n [SolverExecutionResponse, Intent, PacketData],\n IntentError<IntentErrorCode>\n>;\n\n/**\n * Hook for creating and submitting an intent order for cross-chain swaps.\n * Uses React Query's useMutation for better state management and caching.\n *\n * @param {SpokeProvider} spokeProvider - The spoke provider to use for the swap\n * @returns {UseMutationResult} Mutation result object containing mutation function and state\n *\n * @example\n * ```typescript\n * const { mutateAsync: createIntent, isPending } = useCreateIntentOrder(spokeProvider);\n *\n * const handleSwap = async () => {\n * const result = await createIntent({\n * token_src: '0x...',\n * token_src_blockchain_id: 'arbitrum',\n * token_dst: '0x...',\n * token_dst_blockchain_id: 'polygon',\n * amount: '1000000000000000000',\n * min_output_amount: '900000000000000000'\n * });\n * };\n * ```\n */\nexport function useCreateIntentOrder(\n spokeProvider: SpokeProvider | undefined,\n): UseMutationResult<CreateIntentResult, Error, CreateIntentParams> {\n const { sodax } = useSodaxContext();\n\n return useMutation<CreateIntentResult, Error, CreateIntentParams>({\n mutationFn: async (params: CreateIntentParams) => {\n if (!spokeProvider) {\n throw new Error('Spoke provider not found');\n }\n return sodax.solver.createAndSubmitIntent(params, spokeProvider);\n },\n });\n}\n","import type { Hex, SolverErrorResponse, SolverIntentStatusResponse, Result } from '@sodax/sdk';\nimport { useQuery, type UseQueryResult } from '@tanstack/react-query';\nimport { useSodaxContext } from '../shared/useSodaxContext';\n\n/**\n * Hook for monitoring the status of an intent-based swap.\n *\n * This hook provides real-time status updates for an intent-based swap transaction.\n *\n * @param {Hex} intent_tx_hash - The transaction hash of the intent order on the hub chain\n *\n * @returns {UseQueryResult<Result<SolverIntentStatusResponse, SolverErrorResponse> | undefined>} A query result object containing:\n * - data: The status result from the solver\n * - isLoading: Boolean indicating if the status is being fetched\n * - error: Error object if the status request failed\n * - refetch: Function to manually trigger a status refresh\n *\n * @example\n * ```typescript\n * const { data: status, isLoading } = useStatus('0x...');\n *\n * if (isLoading) return <div>Loading status...</div>;\n * if (status?.ok) {\n * console.log('Status:', status.value);\n * }\n * ```\n *\n * @remarks\n * - The status is automatically refreshed every 3 seconds\n * - Uses React Query for efficient caching and state management\n */\n\nexport const useStatus = (\n intent_tx_hash: Hex,\n): UseQueryResult<Result<SolverIntentStatusResponse, SolverErrorResponse> | undefined> => {\n const { sodax } = useSodaxContext();\n return useQuery({\n queryKey: [intent_tx_hash],\n queryFn: async () => {\n return sodax.solver.getStatus({ intent_tx_hash });\n },\n refetchInterval: 3000, // 3s\n });\n};\n","import { useQuery, type UseQueryResult } from '@tanstack/react-query';\nimport { useSodaxContext } from '../shared/useSodaxContext';\nimport type { CreateIntentParams, SpokeProvider } from '@sodax/sdk';\n\n/**\n * Hook for checking token allowance for money market operations.\n *\n * This hook verifies if the user has approved enough tokens for a specific money market action\n * (borrow/repay). It automatically queries and tracks the allowance status.\n *\n * @param {CreateIntentParams} params - The parameters for the intent to check allowance for.\n * @param {SpokeProvider} spokeProvider - The spoke provider to use for allowance checks\n *\n * @returns {UseQueryResult<boolean, Error>} A React Query result containing:\n * - data: Boolean indicating if allowance is sufficient\n * - isLoading: Loading state indicator\n * - error: Any error that occurred during the check\n *\n * @example\n * ```typescript\n * const { data: hasAllowed, isLoading } = useMMAllowance(params, spokeProvider);\n * ```\n */\nexport function useSwapAllowance(\n params: CreateIntentParams | undefined,\n spokeProvider: SpokeProvider | undefined,\n): UseQueryResult<boolean, Error> {\n const { sodax } = useSodaxContext();\n\n return useQuery({\n queryKey: ['allowance', params],\n queryFn: async () => {\n if (!spokeProvider || !params) {\n return false;\n }\n const allowance = await sodax.solver.isAllowanceValid(params, spokeProvider);\n if (allowance.ok) {\n return allowance.value;\n }\n return false;\n },\n enabled: !!spokeProvider && !!params,\n });\n}\n","import { useSodaxContext } from '../shared/useSodaxContext';\nimport type { Token } from '@sodax/types';\nimport { type Address, parseUnits } from 'viem';\nimport { useMutation, useQueryClient } from '@tanstack/react-query';\nimport type { SpokeProvider } from '@sodax/sdk';\n\ninterface UseApproveReturn {\n approve: ({ amount }: { amount: string }) => Promise<boolean>;\n isLoading: boolean;\n error: Error | null;\n resetError: () => void;\n}\n\n/**\n * Hook for approving token spending for money market actions\n * @param token The token to approve spending for\n * @param spokeProvider The spoke provider instance for the chain\n * @returns Object containing approve function, loading state, error state and reset function\n * @example\n * ```tsx\n * const { approve, isLoading, error } = useApprove(token, spokeProvider);\n *\n * // Approve tokens for supply action\n * await approve({ amount: \"100\", action: \"supply\" });\n * ```\n */\n\nexport function useSwapApprove(token: Token | undefined, spokeProvider: SpokeProvider | undefined): UseApproveReturn {\n const { sodax } = useSodaxContext();\n const queryClient = useQueryClient();\n\n const {\n mutateAsync: approve,\n isPending,\n error,\n reset: resetError,\n } = useMutation({\n mutationFn: async ({ amount }: { amount: string }) => {\n if (!spokeProvider) {\n throw new Error('Spoke provider not found');\n }\n if (!token) {\n throw new Error('Token not found');\n }\n\n const allowance = await sodax.solver.approve(\n token.address as Address,\n parseUnits(amount, token.decimals),\n spokeProvider,\n );\n if (!allowance.ok) {\n throw new Error('Failed to approve tokens');\n }\n return allowance.ok;\n },\n onSuccess: () => {\n // Invalidate allowance query to refetch the new allowance\n queryClient.invalidateQueries({ queryKey: ['allowance', token?.address] });\n },\n });\n\n return {\n approve,\n isLoading: isPending,\n error: error,\n resetError,\n };\n}\n","import type { ReactNode, ReactElement } from 'react';\nimport { EvmHubProvider, getHubChainConfig, Sodax, type SodaxConfig } from '@sodax/sdk';\nimport { SodaxContext } from '@/contexts';\nimport React, { useMemo } from 'react';\n\ninterface SodaxProviderProps {\n children: ReactNode;\n testnet?: boolean;\n config: SodaxConfig;\n}\n\nexport const SodaxProvider = ({ children, testnet = false, config }: SodaxProviderProps): ReactElement => {\n const sodax = new Sodax(config);\n\n const hubChainId = config?.hubProviderConfig?.chainConfig.chain.id;\n const hubRpcUrl = config?.hubProviderConfig?.hubRpcUrl;\n\n const hubProvider = useMemo(() => {\n if (hubChainId && hubRpcUrl) {\n const hubChainCfg = getHubChainConfig(hubChainId);\n\n return new EvmHubProvider({\n hubRpcUrl: hubRpcUrl,\n chainConfig: hubChainCfg,\n });\n }\n return undefined;\n }, [hubChainId, hubRpcUrl]);\n\n return <SodaxContext.Provider value={{ sodax, testnet, hubProvider }}>{children}</SodaxContext.Provider>;\n};\n","import type { ChainId } from '@sodax/types';\n\nimport { hubAssets } from '@sodax/sdk';\n\nexport const getSpokeTokenAddressByVault = (spokeChainId: ChainId, vault: string) => {\n const tokens = hubAssets[spokeChainId];\n const address = Object.keys(tokens).find(\n tokenAddress => tokens[tokenAddress].vault.toLowerCase() === vault.toLowerCase(),\n );\n\n return address;\n};\n"]}
|
|
1
|
+
{"version":3,"sources":["../src/contexts/index.ts","../src/hooks/shared/useSodaxContext.ts","../src/hooks/shared/useEstimateGas.ts","../src/hooks/provider/useHubProvider.ts","../src/hooks/provider/useSpokeProvider.ts","../src/hooks/mm/useBorrow.ts","../src/hooks/mm/useRepay.ts","../src/hooks/mm/useSupply.ts","../src/hooks/mm/useWithdraw.ts","../src/hooks/mm/useUserReservesData.ts","../src/hooks/mm/useReservesData.ts","../src/hooks/mm/useMMAllowance.ts","../src/hooks/mm/useMMApprove.ts","../src/hooks/swap/useQuote.ts","../src/hooks/swap/useCreateIntentOrder.ts","../src/hooks/swap/useStatus.ts","../src/hooks/swap/useSwapAllowance.ts","../src/hooks/swap/useSwapApprove.ts","../src/providers/SodaxProvider.tsx","../src/core/index.ts"],"names":["createContext","useContext","useMutation","SpokeService","getXChainType","useWalletProvider","useMemo","SONIC_MAINNET_CHAIN_ID","SonicSpokeProvider","spokeChainConfig","EvmSpokeProvider","SuiSpokeProvider","IconSpokeProvider","InjectiveSpokeProvider","StellarSpokeProvider","SolanaSpokeProvider","parseUnits","useQuery","WalletAbstractionService","getMoneyMarketConfig","useQueryClient","Sodax","getHubChainConfig","EvmHubProvider","React","hubAssets"],"mappings":"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","file":"index.js","sourcesContent":["import { createContext } from 'react';\nimport type { EvmHubProvider, Sodax } from '@sodax/sdk';\n\nexport interface SodaxContextType {\n sodax: Sodax;\n testnet: boolean;\n hubProvider: EvmHubProvider | undefined;\n}\n\nexport const SodaxContext = createContext<SodaxContextType | null>(null);\n","import { SodaxContext, type SodaxContextType } from '@/contexts';\nimport { useContext } from 'react';\n\n/**\n * Hook to access the Sodax context which provides access to the Sodax SDK instance and chain configuration\n * @throws {Error} If used outside of a SodaxProvider\n * @returns {SodaxContextType} The Sodax context containing SDK instance and configuration\n */\n\nexport const useSodaxContext = (): SodaxContextType => {\n const context = useContext(SodaxContext);\n if (!context) {\n throw new Error('useSodaxContext must be used within a SodaxProvider');\n }\n return context;\n};\n","import { type GetEstimateGasReturnType, type SpokeProvider, SpokeService, type TxReturnType } from '@sodax/sdk';\nimport { useMutation, type UseMutationResult } from '@tanstack/react-query';\n\nexport function useEstimateGas<T extends SpokeProvider = SpokeProvider>(\n spokeProvider: T | undefined,\n): UseMutationResult<GetEstimateGasReturnType<T>, Error, TxReturnType<T, true>> {\n return useMutation<GetEstimateGasReturnType<T>, Error, TxReturnType<T, true>>({\n mutationFn: async (rawTx: TxReturnType<T, true>) => {\n if (!spokeProvider) {\n throw new Error('spokeProvider is not found');\n }\n\n const response = await SpokeService.estimateGas(rawTx, spokeProvider);\n\n return response;\n },\n });\n}\n","import type { EvmHubProvider } from '@sodax/sdk';\nimport { useSodaxContext } from '../shared/useSodaxContext';\n\nexport function useHubProvider(): EvmHubProvider | undefined {\n const { hubProvider } = useSodaxContext();\n\n return hubProvider;\n}\n","import {\n EvmSpokeProvider,\n spokeChainConfig,\n type SuiSpokeChainConfig,\n SuiSpokeProvider,\n type EvmSpokeChainConfig,\n IconSpokeProvider,\n type IconSpokeChainConfig,\n InjectiveSpokeProvider,\n type InjectiveSpokeChainConfig,\n StellarSpokeProvider,\n type StellarSpokeChainConfig,\n type SpokeProvider,\n type IWalletProvider,\n SolanaSpokeProvider,\n type SolanaChainConfig,\n SONIC_MAINNET_CHAIN_ID,\n SonicSpokeProvider,\n type SonicSpokeChainConfig,\n} from '@sodax/sdk';\nimport type {\n IEvmWalletProvider,\n IIconWalletProvider,\n ISuiWalletProvider,\n SpokeChainId,\n IInjectiveWalletProvider,\n IStellarWalletProvider,\n ISolanaWalletProvider,\n} from '@sodax/types';\nimport { getXChainType, useWalletProvider } from '@sodax/wallet-sdk';\nimport { useMemo } from 'react';\n\n/**\n * Hook to get the appropriate spoke provider based on the chain type.\n * Supports EVM, SUI, ICON and INJECTIVE chains.\n *\n * @param {SpokeChainId | undefined} spokeChainId - The spoke chain ID to get the provider for\n * @param {IWalletProvider | undefined} walletProvider - The wallet provider to use\n * @returns {SpokeProvider | undefined} The appropriate spoke provider instance for the given chain ID, or undefined if invalid/unsupported\n *\n * @example\n * ```tsx\n * // Using a specific SpokeChainId and wallet provider\n * const spokeProvider = useSpokeProvider(spokeChainId, walletProvider);\n * ```\n */\nexport function useSpokeProvider(\n spokeChainId: SpokeChainId | undefined,\n walletProvider?: IWalletProvider | undefined,\n): SpokeProvider | undefined {\n const xChainType = getXChainType(spokeChainId);\n const walletProvider_ = useWalletProvider(spokeChainId);\n const _walletProvider = walletProvider ?? walletProvider_;\n\n const spokeProvider = useMemo(() => {\n if (!_walletProvider) return undefined;\n if (!spokeChainId) return undefined;\n\n if (xChainType === 'EVM') {\n if (spokeChainId === SONIC_MAINNET_CHAIN_ID) {\n return new SonicSpokeProvider(\n _walletProvider as IEvmWalletProvider,\n spokeChainConfig[spokeChainId] as SonicSpokeChainConfig,\n );\n }\n return new EvmSpokeProvider(\n _walletProvider as IEvmWalletProvider,\n spokeChainConfig[spokeChainId] as EvmSpokeChainConfig,\n );\n }\n if (xChainType === 'SUI') {\n return new SuiSpokeProvider(\n spokeChainConfig[spokeChainId] as SuiSpokeChainConfig,\n _walletProvider as ISuiWalletProvider,\n );\n }\n if (xChainType === 'ICON') {\n return new IconSpokeProvider(\n _walletProvider as IIconWalletProvider,\n spokeChainConfig[spokeChainId] as IconSpokeChainConfig,\n );\n }\n if (xChainType === 'INJECTIVE') {\n return new InjectiveSpokeProvider(\n spokeChainConfig[spokeChainId] as InjectiveSpokeChainConfig,\n _walletProvider as IInjectiveWalletProvider,\n );\n }\n\n if (xChainType === 'STELLAR') {\n const stellarConfig = spokeChainConfig[spokeChainId] as StellarSpokeChainConfig;\n return new StellarSpokeProvider(_walletProvider as IStellarWalletProvider, stellarConfig, {\n horizonRpcUrl: stellarConfig.horizonRpcUrl,\n sorobanRpcUrl: stellarConfig.sorobanRpcUrl,\n });\n }\n\n if (xChainType === 'SOLANA') {\n return new SolanaSpokeProvider(\n _walletProvider as ISolanaWalletProvider,\n spokeChainConfig[spokeChainId] as SolanaChainConfig,\n );\n }\n\n return undefined;\n }, [spokeChainId, xChainType, _walletProvider]);\n\n return spokeProvider;\n}\n","import type { XToken } from '@sodax/types';\nimport { useMutation, type UseMutationResult } from '@tanstack/react-query';\nimport { parseUnits } from 'viem';\nimport { useSodaxContext } from '../shared/useSodaxContext';\nimport type { SpokeProvider } from '@sodax/sdk';\ninterface BorrowResponse {\n ok: true;\n value: [string, string];\n}\n\n/**\n * Hook for borrowing tokens from the Sodax money market.\n *\n * This hook provides functionality to borrow tokens from the money market protocol,\n * handling the entire borrow process including transaction creation, submission,\n * and cross-chain communication.\n *\n * @param {XToken} spokeToken - The token to borrow from the spoke chain. Must be an XToken with valid address and chain information.\n * @param {SpokeProvider} spokeProvider - The spoke provider to use for the borrow transaction. Must be a valid SpokeProvider instance.\n *\n * @returns {UseMutationResult<BorrowResponse, Error, string>} A mutation result object with the following properties:\n * - mutateAsync: Function to execute the borrow transaction\n * - isPending: Boolean indicating if a transaction is in progress\n * - error: Error object if the last transaction failed, null otherwise\n *\n * @example\n * ```typescript\n * const { mutateAsync: borrow, isPending, error } = useBorrow(spokeToken);\n * await borrow('100');\n * ```\n *\n * @throws {Error} When:\n * - spokeProvider is not available\n * - Transaction execution fails\n */\nexport function useBorrow(\n spokeToken: XToken,\n spokeProvider: SpokeProvider | undefined,\n): UseMutationResult<BorrowResponse, Error, string> {\n const { sodax } = useSodaxContext();\n\n return useMutation<BorrowResponse, Error, string>({\n mutationFn: async (amount: string) => {\n if (!spokeProvider) {\n throw new Error('spokeProvider is not found');\n }\n\n const response = await sodax.moneyMarket.borrow(\n {\n token: spokeToken.address,\n amount: parseUnits(amount, 18),\n action: 'borrow',\n },\n spokeProvider,\n );\n\n if (!response.ok) {\n throw new Error('Failed to borrow tokens');\n }\n\n console.log('Borrow transaction submitted:', response);\n return response;\n },\n });\n}\n","import type { SpokeProvider } from '@sodax/sdk';\nimport type { XToken } from '@sodax/types';\nimport { useMutation, type UseMutationResult } from '@tanstack/react-query';\nimport { parseUnits } from 'viem';\nimport { useSodaxContext } from '../shared/useSodaxContext';\n\ninterface RepayResponse {\n ok: true;\n value: [string, string];\n}\n\n/**\n * Hook for repaying borrowed tokens to the Sodax money market.\n *\n * This hook provides functionality to repay borrowed tokens back to the money market protocol,\n * handling the entire repayment process including transaction creation, submission,\n * and cross-chain communication.\n *\n * @param {XToken} spokeToken - The token to repay on the spoke chain. Must be an XToken with valid address and chain information.\n * @param {SpokeProvider} spokeProvider - The spoke provider to use for the repay transaction. Must be a valid SpokeProvider instance.\n *\n * @returns {UseMutationResult<RepayResponse, Error, string>} A mutation result object with the following properties:\n * - mutateAsync: Function to execute the repay transaction\n * - isPending: Boolean indicating if a transaction is in progress\n * - error: Error object if the last transaction failed, null otherwise\n *\n * @example\n * ```typescript\n * const { mutateAsync: repay, isPending, error } = useRepay(spokeToken);\n * await repay('100');\n * ```\n *\n * @throws {Error} When:\n * - spokeProvider is not available\n * - Transaction execution fails\n */\nexport function useRepay(\n spokeToken: XToken,\n spokeProvider: SpokeProvider | undefined,\n): UseMutationResult<RepayResponse, Error, string> {\n const { sodax } = useSodaxContext();\n\n return useMutation<RepayResponse, Error, string>({\n mutationFn: async (amount: string) => {\n if (!spokeProvider) {\n throw new Error('spokeProvider is not found');\n }\n\n const response = await sodax.moneyMarket.repay(\n {\n token: spokeToken.address,\n amount: parseUnits(amount, spokeToken.decimals),\n action: 'repay',\n },\n spokeProvider,\n );\n\n if (!response.ok) {\n throw new Error('Failed to repay tokens');\n }\n\n console.log('Repay transaction submitted:', response);\n return response;\n },\n });\n}\n","import type { SpokeProvider } from '@sodax/sdk';\nimport type { XToken } from '@sodax/types';\nimport { useMutation, type UseMutationResult } from '@tanstack/react-query';\nimport { parseUnits } from 'viem';\nimport { useSodaxContext } from '../shared/useSodaxContext';\n\ninterface SupplyResponse {\n ok: true;\n value: [string, string];\n}\n\n/**\n * Hook for supplying tokens to the Sodax money market.\n *\n * This hook provides functionality to supply tokens to the money market protocol,\n * handling the entire supply process including transaction creation, submission,\n * and cross-chain communication.\n *\n * @param {XToken} spokeToken - The token to supply on the spoke chain. Must be an XToken with valid address and chain information.\n * @param {SpokeProvider} spokeProvider - The spoke provider to use for the supply transaction. Must be a valid SpokeProvider instance.\n *\n * @returns {UseMutationResult<SupplyResponse, Error, string>} A mutation result object with the following properties:\n * - mutateAsync: Function to execute the supply transaction\n * - isPending: Boolean indicating if a transaction is in progress\n * - error: Error object if the last transaction failed, null otherwise\n *\n * @example\n * ```typescript\n * const { mutateAsync: supply, isPending, error } = useSupply(spokeToken);\n * await supply('100');\n * ```\n *\n * @throws {Error} When:\n * - spokeProvider is not available\n */\nexport function useSupply(\n spokeToken: XToken,\n spokeProvider: SpokeProvider | undefined,\n): UseMutationResult<SupplyResponse, Error, string> {\n const { sodax } = useSodaxContext();\n\n return useMutation<SupplyResponse, Error, string>({\n mutationFn: async (amount: string) => {\n if (!spokeProvider) {\n throw new Error('spokeProvider is not found');\n }\n\n const response = await sodax.moneyMarket.supply(\n {\n token: spokeToken.address,\n amount: parseUnits(amount, spokeToken.decimals),\n action: 'supply',\n },\n spokeProvider,\n );\n\n if (!response.ok) {\n throw new Error('Failed to supply tokens');\n }\n\n console.log('Supply transaction submitted:', response);\n return response;\n },\n });\n}\n","import type { SpokeProvider } from '@sodax/sdk';\nimport type { XToken } from '@sodax/types';\nimport { useMutation, type UseMutationResult } from '@tanstack/react-query';\nimport { parseUnits } from 'viem';\nimport { useSodaxContext } from '../shared/useSodaxContext';\n\ninterface WithdrawResponse {\n ok: true;\n value: [string, string];\n}\n\n/**\n * Hook for withdrawing supplied tokens from the Sodax money market.\n *\n * This hook provides functionality to withdraw previously supplied tokens from the money market protocol,\n * handling the entire withdrawal process including transaction creation, submission,\n * and cross-chain communication.\n *\n * @param {XToken} spokeToken - The token to withdraw from the spoke chain. Must be an XToken with valid address and chain information.\n * @param {SpokeProvider} spokeProvider - The spoke provider to use for the withdraw transaction. Must be a valid SpokeProvider instance.\n *\n * @returns {UseMutationResult<WithdrawResponse, Error, string>} A mutation result object with the following properties:\n * - mutateAsync: Function to execute the withdraw transaction\n * - isPending: Boolean indicating if a transaction is in progress\n * @example\n * ```typescript\n * const { mutateAsync: withdraw, isPending, error } = useWithdraw(spokeToken);\n * await withdraw('100');\n * ```\n *\n * @throws {Error} When:\n * - spokeProvider is not available\n * - Transaction execution fails\n */\nexport function useWithdraw(\n spokeToken: XToken,\n spokeProvider: SpokeProvider | undefined,\n): UseMutationResult<WithdrawResponse, Error, string> {\n const { sodax } = useSodaxContext();\n\n return useMutation<WithdrawResponse, Error, string>({\n mutationFn: async (amount: string) => {\n if (!spokeProvider) {\n throw new Error('spokeProvider is not found');\n }\n\n const response = await sodax.moneyMarket.withdraw(\n {\n token: spokeToken.address,\n // vault token on hub chain decimals is 18\n amount: parseUnits(amount, 18),\n action: 'withdraw',\n },\n spokeProvider,\n );\n\n if (!response.ok) {\n throw new Error('Failed to withdraw tokens');\n }\n\n console.log('Withdraw transaction submitted:', response);\n return response;\n },\n });\n}\n","import { getMoneyMarketConfig, WalletAbstractionService } from '@sodax/sdk';\nimport type { HubChainId } from '@sodax/types';\nimport type { ChainId } from '@sodax/types';\nimport { useQuery } from '@tanstack/react-query';\nimport { useHubProvider } from '../provider/useHubProvider';\nimport { useSodaxContext } from '../shared/useSodaxContext';\nimport { useSpokeProvider } from '../provider/useSpokeProvider';\n\nexport function useUserReservesData(spokeChainId: ChainId, address: string | undefined) {\n const { sodax } = useSodaxContext();\n const hubChainId = (sodax.config?.hubProviderConfig?.chainConfig.chain.id ?? 'sonic') as HubChainId;\n const hubProvider = useHubProvider();\n const spokeProvider = useSpokeProvider(spokeChainId);\n\n const { data: userReserves } = useQuery({\n queryKey: ['userReserves', spokeChainId, address],\n queryFn: async () => {\n if (!hubProvider || !spokeProvider || !address) {\n return;\n }\n\n const hubWalletAddress = await WalletAbstractionService.getUserHubWalletAddress(\n address,\n spokeProvider,\n hubProvider,\n );\n\n const moneyMarketConfig = getMoneyMarketConfig(hubChainId);\n const [res] = await sodax.moneyMarket.getUserReservesData(\n hubWalletAddress,\n moneyMarketConfig.uiPoolDataProvider,\n moneyMarketConfig.poolAddressesProvider,\n );\n\n return res;\n },\n enabled: !!spokeChainId && !!hubProvider && !!address,\n refetchInterval: 5000,\n });\n\n return userReserves;\n}\n","import { getMoneyMarketConfig } from '@sodax/sdk';\nimport type { HubChainId } from '@sodax/types';\nimport { useQuery } from '@tanstack/react-query';\nimport { useSodaxContext } from '../shared/useSodaxContext';\n/**\n * Hook for fetching reserves data from the Sodax money market.\n *\n * This hook provides access to the current state of all reserves in the money market protocol,\n * including liquidity, interest rates, and other key metrics. The data is automatically\n * fetched and cached using React Query.\n *\n * @example\n * ```typescript\n * const { data: reservesData, isLoading, error } = useReservesData();\n * ```\n *\n * @returns A React Query result object containing:\n * - data: The reserves data when available\n * - isLoading: Loading state indicator\n * - error: Any error that occurred during data fetching\n */\n\nexport function useReservesData() {\n const { sodax } = useSodaxContext();\n const hubChainId = (sodax.config?.hubProviderConfig?.chainConfig.chain.id ?? 'sonic') as HubChainId;\n\n return useQuery({\n queryKey: ['reservesData'],\n queryFn: async () => {\n const moneyMarketConfig = getMoneyMarketConfig(hubChainId);\n return await sodax.moneyMarket.getReservesData(\n moneyMarketConfig.uiPoolDataProvider,\n moneyMarketConfig.poolAddressesProvider,\n );\n },\n });\n}\n","import { useQuery, type UseQueryResult } from '@tanstack/react-query';\nimport type { XToken } from '@sodax/types';\nimport { useSodaxContext } from '../shared/useSodaxContext';\nimport { parseUnits } from 'viem';\nimport type { MoneyMarketAction, SpokeProvider } from '@sodax/sdk';\n\n/**\n * Hook for checking token allowance for money market operations.\n *\n * This hook verifies if the user has approved enough tokens for a specific money market action\n * (borrow/repay). It automatically queries and tracks the allowance status.\n *\n * @param {XToken} token - The token to check allowance for. Must be an XToken with valid address and chain information.\n * @param {string} amount - The amount to check allowance for, as a decimal string\n * @param {MoneyMarketAction} action - The money market action to check allowance for ('borrow' or 'repay')\n * @param {SpokeProvider} spokeProvider - The spoke provider to use for allowance checks\n *\n * @returns {UseQueryResult<boolean, Error>} A React Query result containing:\n * - data: Boolean indicating if allowance is sufficient\n * - isLoading: Loading state indicator\n * - error: Any error that occurred during the check\n *\n * @example\n * ```typescript\n * const { data: hasAllowed, isLoading } = useMMAllowance(token, \"100\", \"repay\", provider);\n * ```\n */\nexport function useMMAllowance(\n token: XToken,\n amount: string,\n action: MoneyMarketAction,\n spokeProvider: SpokeProvider | undefined,\n): UseQueryResult<boolean, Error> {\n const { sodax } = useSodaxContext();\n\n return useQuery({\n queryKey: ['allowance', token.address, amount, action],\n queryFn: async () => {\n if (!spokeProvider) throw new Error('Spoke provider is required');\n const allowance = await sodax.moneyMarket.isAllowanceValid(\n {\n token: token.address,\n amount: parseUnits(amount, token.decimals),\n action,\n },\n spokeProvider,\n );\n if (allowance.ok) {\n return allowance.value;\n }\n return false;\n },\n enabled: !!spokeProvider,\n });\n}\n","import { useSodaxContext } from '../shared/useSodaxContext';\nimport type { XToken } from '@sodax/types';\nimport { parseUnits } from 'viem';\nimport { useMutation, useQueryClient } from '@tanstack/react-query';\nimport type { MoneyMarketAction, SpokeProvider } from '@sodax/sdk';\n\ninterface UseApproveReturn {\n approve: ({ amount, action }: { amount: string; action: MoneyMarketAction }) => Promise<boolean>;\n isLoading: boolean;\n error: Error | null;\n resetError: () => void;\n}\n\n/**\n * Hook for approving token spending for money market actions\n * @param token The token to approve spending for\n * @param spokeProvider The spoke provider instance for the chain\n * @returns Object containing approve function, loading state, error state and reset function\n * @example\n * ```tsx\n * const { approve, isLoading, error } = useMMApprove(token, spokeProvider);\n *\n * // Approve tokens for supply action\n * await approve({ amount: \"100\", action: \"supply\" });\n * ```\n */\n\nexport function useMMApprove(token: XToken, spokeProvider: SpokeProvider | undefined): UseApproveReturn {\n const { sodax } = useSodaxContext();\n const queryClient = useQueryClient();\n\n const {\n mutateAsync: approve,\n isPending,\n error,\n reset: resetError,\n } = useMutation({\n mutationFn: async ({ amount, action }: { amount: string; action: MoneyMarketAction }) => {\n if (!spokeProvider) {\n throw new Error('Spoke provider not found');\n }\n const allowance = await sodax.moneyMarket.approve(\n {\n token: token.address,\n amount: parseUnits(amount, token.decimals),\n action,\n },\n spokeProvider,\n );\n if (!allowance.ok) {\n throw new Error('Failed to approve tokens');\n }\n return allowance.ok;\n },\n onSuccess: () => {\n // Invalidate allowance query to refetch the new allowance\n queryClient.invalidateQueries({ queryKey: ['allowance', token.address] });\n },\n });\n\n return {\n approve,\n isLoading: isPending,\n error: error,\n resetError,\n };\n}\n","import type { SolverErrorResponse, SolverIntentQuoteRequest, SolverIntentQuoteResponse, Result } from '@sodax/sdk';\nimport { useSodaxContext } from '../shared/useSodaxContext';\nimport { useQuery, type UseQueryResult } from '@tanstack/react-query';\n\n/**\n * Hook for fetching a quote for an intent-based swap.\n *\n * This hook provides real-time quote data for an intent-based swap.\n *\n * @param {SolverIntentQuoteRequest | undefined} payload - The intent quote request parameters. If undefined, the query will be disabled.\n *\n * @returns {UseQueryResult<Result<SolverIntentQuoteResponse, SolverErrorResponse> | undefined>} A query result object containing:\n * - data: The quote result from the solver\n * - isLoading: Boolean indicating if the quote is being fetched\n * - error: Error object if the quote request failed\n * - refetch: Function to manually trigger a quote refresh\n *\n * @example\n * ```typescript\n * const { data: quote, isLoading } = useQuote({\n * token_src: '0x...',\n * token_src_blockchain_id: '1',\n * token_dst: '0x...',\n * token_dst_blockchain_id: '2',\n * amount: '1000000000000000000',\n * quote_type: 'exact_input',\n * });\n *\n * if (isLoading) return <div>Loading quote...</div>;\n * if (quote) {\n * console.log('Quote received:', quote);\n * }\n * ```\n *\n * @remarks\n * - The quote is automatically refreshed every 3 seconds\n * - The query is disabled when payload is undefined\n * - Uses React Query for efficient caching and state management\n */\nexport const useQuote = (\n payload: SolverIntentQuoteRequest | undefined,\n): UseQueryResult<Result<SolverIntentQuoteResponse, SolverErrorResponse> | undefined> => {\n const { sodax } = useSodaxContext();\n return useQuery({\n queryKey: [payload],\n queryFn: async () => {\n if (!payload) {\n return undefined;\n }\n return sodax.solver.getQuote(payload);\n },\n enabled: !!payload,\n refetchInterval: 3000,\n });\n};\n","import { useSodaxContext } from '../shared/useSodaxContext';\nimport type {\n CreateIntentParams,\n SolverExecutionResponse,\n Result,\n IntentErrorCode,\n Intent,\n IntentError,\n SpokeProvider,\n Hex,\n} from '@sodax/sdk';\nimport { useMutation, type UseMutationResult } from '@tanstack/react-query';\n\ntype CreateIntentResult = Result<[SolverExecutionResponse, Intent, Hex], IntentError<IntentErrorCode>>;\n\n/**\n * Hook for creating and submitting an intent order for cross-chain swaps.\n * Uses React Query's useMutation for better state management and caching.\n *\n * @param {SpokeProvider} spokeProvider - The spoke provider to use for the swap\n * @returns {UseMutationResult} Mutation result object containing mutation function and state\n *\n * @example\n * ```typescript\n * const { mutateAsync: createIntent, isPending } = useCreateIntentOrder(spokeProvider);\n *\n * const handleSwap = async () => {\n * const result = await createIntent({\n * token_src: '0x...',\n * token_src_blockchain_id: 'arbitrum',\n * token_dst: '0x...',\n * token_dst_blockchain_id: 'polygon',\n * amount: '1000000000000000000',\n * min_output_amount: '900000000000000000'\n * });\n * };\n * ```\n */\nexport function useCreateIntentOrder(\n spokeProvider: SpokeProvider | undefined,\n): UseMutationResult<CreateIntentResult, Error, CreateIntentParams> {\n const { sodax } = useSodaxContext();\n\n return useMutation<CreateIntentResult, Error, CreateIntentParams>({\n mutationFn: async (params: CreateIntentParams) => {\n if (!spokeProvider) {\n throw new Error('Spoke provider not found');\n }\n return sodax.solver.createAndSubmitIntent(params, spokeProvider);\n },\n });\n}\n","import type { Hex, SolverErrorResponse, SolverIntentStatusResponse, Result } from '@sodax/sdk';\nimport { useQuery, type UseQueryResult } from '@tanstack/react-query';\nimport { useSodaxContext } from '../shared/useSodaxContext';\n\n/**\n * Hook for monitoring the status of an intent-based swap.\n *\n * This hook provides real-time status updates for an intent-based swap transaction.\n *\n * @param {Hex} intent_tx_hash - The transaction hash of the intent order on the hub chain\n *\n * @returns {UseQueryResult<Result<SolverIntentStatusResponse, SolverErrorResponse> | undefined>} A query result object containing:\n * - data: The status result from the solver\n * - isLoading: Boolean indicating if the status is being fetched\n * - error: Error object if the status request failed\n * - refetch: Function to manually trigger a status refresh\n *\n * @example\n * ```typescript\n * const { data: status, isLoading } = useStatus('0x...');\n *\n * if (isLoading) return <div>Loading status...</div>;\n * if (status?.ok) {\n * console.log('Status:', status.value);\n * }\n * ```\n *\n * @remarks\n * - The status is automatically refreshed every 3 seconds\n * - Uses React Query for efficient caching and state management\n */\n\nexport const useStatus = (\n intent_tx_hash: Hex,\n): UseQueryResult<Result<SolverIntentStatusResponse, SolverErrorResponse> | undefined> => {\n const { sodax } = useSodaxContext();\n return useQuery({\n queryKey: [intent_tx_hash],\n queryFn: async () => {\n return sodax.solver.getStatus({ intent_tx_hash });\n },\n refetchInterval: 3000, // 3s\n });\n};\n","import { useQuery, type UseQueryResult } from '@tanstack/react-query';\nimport { useSodaxContext } from '../shared/useSodaxContext';\nimport type { CreateIntentParams, SpokeProvider } from '@sodax/sdk';\n\n/**\n * Hook for checking token allowance for money market operations.\n *\n * This hook verifies if the user has approved enough tokens for a specific money market action\n * (borrow/repay). It automatically queries and tracks the allowance status.\n *\n * @param {CreateIntentParams} params - The parameters for the intent to check allowance for.\n * @param {SpokeProvider} spokeProvider - The spoke provider to use for allowance checks\n *\n * @returns {UseQueryResult<boolean, Error>} A React Query result containing:\n * - data: Boolean indicating if allowance is sufficient\n * - isLoading: Loading state indicator\n * - error: Any error that occurred during the check\n *\n * @example\n * ```typescript\n * const { data: hasAllowed, isLoading } = useMMAllowance(params, spokeProvider);\n * ```\n */\nexport function useSwapAllowance(\n params: CreateIntentParams | undefined,\n spokeProvider: SpokeProvider | undefined,\n): UseQueryResult<boolean, Error> {\n const { sodax } = useSodaxContext();\n\n return useQuery({\n queryKey: ['allowance', params],\n queryFn: async () => {\n if (!spokeProvider || !params) {\n return false;\n }\n const allowance = await sodax.solver.isAllowanceValid(params, spokeProvider);\n if (allowance.ok) {\n return allowance.value;\n }\n return false;\n },\n enabled: !!spokeProvider && !!params,\n });\n}\n","import { useSodaxContext } from '../shared/useSodaxContext';\nimport type { Token } from '@sodax/types';\nimport { type Address, parseUnits } from 'viem';\nimport { useMutation, useQueryClient } from '@tanstack/react-query';\nimport type { SpokeProvider } from '@sodax/sdk';\n\ninterface UseApproveReturn {\n approve: ({ amount }: { amount: string }) => Promise<boolean>;\n isLoading: boolean;\n error: Error | null;\n resetError: () => void;\n}\n\n/**\n * Hook for approving token spending for money market actions\n * @param token The token to approve spending for\n * @param spokeProvider The spoke provider instance for the chain\n * @returns Object containing approve function, loading state, error state and reset function\n * @example\n * ```tsx\n * const { approve, isLoading, error } = useApprove(token, spokeProvider);\n *\n * // Approve tokens for supply action\n * await approve({ amount: \"100\", action: \"supply\" });\n * ```\n */\n\nexport function useSwapApprove(token: Token | undefined, spokeProvider: SpokeProvider | undefined): UseApproveReturn {\n const { sodax } = useSodaxContext();\n const queryClient = useQueryClient();\n\n const {\n mutateAsync: approve,\n isPending,\n error,\n reset: resetError,\n } = useMutation({\n mutationFn: async ({ amount }: { amount: string }) => {\n if (!spokeProvider) {\n throw new Error('Spoke provider not found');\n }\n if (!token) {\n throw new Error('Token not found');\n }\n\n const allowance = await sodax.solver.approve(\n token.address as Address,\n parseUnits(amount, token.decimals),\n spokeProvider,\n );\n if (!allowance.ok) {\n throw new Error('Failed to approve tokens');\n }\n return allowance.ok;\n },\n onSuccess: () => {\n // Invalidate allowance query to refetch the new allowance\n queryClient.invalidateQueries({ queryKey: ['allowance', token?.address] });\n },\n });\n\n return {\n approve,\n isLoading: isPending,\n error: error,\n resetError,\n };\n}\n","import type { ReactNode, ReactElement } from 'react';\nimport { EvmHubProvider, getHubChainConfig, Sodax, type SodaxConfig } from '@sodax/sdk';\nimport { SodaxContext } from '@/contexts';\nimport React, { useMemo } from 'react';\n\ninterface SodaxProviderProps {\n children: ReactNode;\n testnet?: boolean;\n config: SodaxConfig;\n}\n\nexport const SodaxProvider = ({ children, testnet = false, config }: SodaxProviderProps): ReactElement => {\n const sodax = new Sodax(config);\n\n const hubChainId = config?.hubProviderConfig?.chainConfig.chain.id;\n const hubRpcUrl = config?.hubProviderConfig?.hubRpcUrl;\n\n const hubProvider = useMemo(() => {\n if (hubChainId && hubRpcUrl) {\n const hubChainCfg = getHubChainConfig(hubChainId);\n\n return new EvmHubProvider({\n hubRpcUrl: hubRpcUrl,\n chainConfig: hubChainCfg,\n });\n }\n return undefined;\n }, [hubChainId, hubRpcUrl]);\n\n return <SodaxContext.Provider value={{ sodax, testnet, hubProvider }}>{children}</SodaxContext.Provider>;\n};\n","import type { ChainId } from '@sodax/types';\n\nimport { hubAssets } from '@sodax/sdk';\n\nexport const getSpokeTokenAddressByVault = (spokeChainId: ChainId, vault: string) => {\n const tokens = hubAssets[spokeChainId];\n const address = Object.keys(tokens).find(\n tokenAddress => tokens[tokenAddress].vault.toLowerCase() === vault.toLowerCase(),\n );\n\n return address;\n};\n"]}
|
package/dist/index.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React, { createContext, useContext, useMemo } from 'react';
|
|
2
|
-
import { SpokeService,
|
|
2
|
+
import { SpokeService, SONIC_MAINNET_CHAIN_ID, SonicSpokeProvider, spokeChainConfig, EvmSpokeProvider, SuiSpokeProvider, IconSpokeProvider, InjectiveSpokeProvider, StellarSpokeProvider, SolanaSpokeProvider, WalletAbstractionService, getMoneyMarketConfig, Sodax, getHubChainConfig, EvmHubProvider, hubAssets } from '@sodax/sdk';
|
|
3
3
|
import { useMutation, useQuery, useQueryClient } from '@tanstack/react-query';
|
|
4
4
|
import { getXChainType, useWalletProvider } from '@sodax/wallet-sdk';
|
|
5
5
|
import { parseUnits } from 'viem';
|
|
@@ -38,6 +38,12 @@ function useSpokeProvider(spokeChainId, walletProvider) {
|
|
|
38
38
|
if (!_walletProvider) return void 0;
|
|
39
39
|
if (!spokeChainId) return void 0;
|
|
40
40
|
if (xChainType === "EVM") {
|
|
41
|
+
if (spokeChainId === SONIC_MAINNET_CHAIN_ID) {
|
|
42
|
+
return new SonicSpokeProvider(
|
|
43
|
+
_walletProvider,
|
|
44
|
+
spokeChainConfig[spokeChainId]
|
|
45
|
+
);
|
|
46
|
+
}
|
|
41
47
|
return new EvmSpokeProvider(
|
|
42
48
|
_walletProvider,
|
|
43
49
|
spokeChainConfig[spokeChainId]
|
|
@@ -175,16 +181,16 @@ function useUserReservesData(spokeChainId, address) {
|
|
|
175
181
|
const { sodax } = useSodaxContext();
|
|
176
182
|
const hubChainId = sodax.config?.hubProviderConfig?.chainConfig.chain.id ?? "sonic";
|
|
177
183
|
const hubProvider = useHubProvider();
|
|
184
|
+
const spokeProvider = useSpokeProvider(spokeChainId);
|
|
178
185
|
const { data: userReserves } = useQuery({
|
|
179
186
|
queryKey: ["userReserves", spokeChainId, address],
|
|
180
187
|
queryFn: async () => {
|
|
181
|
-
if (!hubProvider || !address) {
|
|
188
|
+
if (!hubProvider || !spokeProvider || !address) {
|
|
182
189
|
return;
|
|
183
190
|
}
|
|
184
|
-
const
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
addressBytes,
|
|
191
|
+
const hubWalletAddress = await WalletAbstractionService.getUserHubWalletAddress(
|
|
192
|
+
address,
|
|
193
|
+
spokeProvider,
|
|
188
194
|
hubProvider
|
|
189
195
|
);
|
|
190
196
|
const moneyMarketConfig = getMoneyMarketConfig(hubChainId);
|
package/dist/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/contexts/index.ts","../src/hooks/shared/useSodaxContext.ts","../src/hooks/shared/useEstimateGas.ts","../src/hooks/provider/useHubProvider.ts","../src/hooks/provider/useSpokeProvider.ts","../src/hooks/mm/useBorrow.ts","../src/hooks/mm/useRepay.ts","../src/hooks/mm/useSupply.ts","../src/hooks/mm/useWithdraw.ts","../src/hooks/mm/useUserReservesData.ts","../src/hooks/mm/useReservesData.ts","../src/hooks/mm/useMMAllowance.ts","../src/hooks/mm/useMMApprove.ts","../src/hooks/swap/useQuote.ts","../src/hooks/swap/useCreateIntentOrder.ts","../src/hooks/swap/useStatus.ts","../src/hooks/swap/useSwapAllowance.ts","../src/hooks/swap/useSwapApprove.ts","../src/providers/SodaxProvider.tsx","../src/core/index.ts"],"names":["useMutation","parseUnits","useQuery","getMoneyMarketConfig","useQueryClient","useMemo"],"mappings":"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","file":"index.mjs","sourcesContent":["import { createContext } from 'react';\nimport type { EvmHubProvider, Sodax } from '@sodax/sdk';\n\nexport interface SodaxContextType {\n sodax: Sodax;\n testnet: boolean;\n hubProvider: EvmHubProvider | undefined;\n}\n\nexport const SodaxContext = createContext<SodaxContextType | null>(null);\n","import { SodaxContext, type SodaxContextType } from '@/contexts';\nimport { useContext } from 'react';\n\n/**\n * Hook to access the Sodax context which provides access to the Sodax SDK instance and chain configuration\n * @throws {Error} If used outside of a SodaxProvider\n * @returns {SodaxContextType} The Sodax context containing SDK instance and configuration\n */\n\nexport const useSodaxContext = (): SodaxContextType => {\n const context = useContext(SodaxContext);\n if (!context) {\n throw new Error('useSodaxContext must be used within a SodaxProvider');\n }\n return context;\n};\n","import { type GetEstimateGasReturnType, type SpokeProvider, SpokeService, type TxReturnType } from '@sodax/sdk';\nimport { useMutation, type UseMutationResult } from '@tanstack/react-query';\n\nexport function useEstimateGas<T extends SpokeProvider = SpokeProvider>(\n spokeProvider: T | undefined,\n): UseMutationResult<GetEstimateGasReturnType<T>, Error, TxReturnType<T, true>> {\n\n return useMutation<GetEstimateGasReturnType<T>, Error, TxReturnType<T, true>>({\n mutationFn: async (rawTx: TxReturnType<T, true>) => {\n if (!spokeProvider) {\n throw new Error('spokeProvider is not found');\n }\n\n const response = await SpokeService.estimateGas(rawTx, spokeProvider);\n\n return response;\n },\n });\n}\n\n","import type { EvmHubProvider } from '@sodax/sdk';\nimport { useSodaxContext } from '../shared/useSodaxContext';\n\nexport function useHubProvider(): EvmHubProvider | undefined {\n const { hubProvider } = useSodaxContext();\n\n return hubProvider;\n}\n","import {\n EvmSpokeProvider,\n spokeChainConfig,\n type SuiSpokeChainConfig,\n SuiSpokeProvider,\n type EvmSpokeChainConfig,\n IconSpokeProvider,\n type IconSpokeChainConfig,\n InjectiveSpokeProvider,\n type InjectiveSpokeChainConfig,\n StellarSpokeProvider,\n type StellarSpokeChainConfig,\n type SpokeProvider,\n type IWalletProvider,\n SolanaSpokeProvider,\n type SolanaChainConfig,\n} from '@sodax/sdk';\nimport type {\n IEvmWalletProvider,\n IIconWalletProvider,\n ISuiWalletProvider,\n SpokeChainId,\n IInjectiveWalletProvider,\n IStellarWalletProvider,\n ISolanaWalletProvider,\n} from '@sodax/types';\nimport { getXChainType, useWalletProvider } from '@sodax/wallet-sdk';\nimport { useMemo } from 'react';\n\n/**\n * Hook to get the appropriate spoke provider based on the chain type.\n * Supports EVM, SUI, ICON and INJECTIVE chains.\n *\n * @param {SpokeChainId | undefined} spokeChainId - The spoke chain ID to get the provider for\n * @param {IWalletProvider | undefined} walletProvider - The wallet provider to use\n * @returns {SpokeProvider | undefined} The appropriate spoke provider instance for the given chain ID, or undefined if invalid/unsupported\n *\n * @example\n * ```tsx\n * // Using a specific SpokeChainId and wallet provider\n * const spokeProvider = useSpokeProvider(spokeChainId, walletProvider);\n * ```\n */\nexport function useSpokeProvider(\n spokeChainId: SpokeChainId | undefined,\n walletProvider?: IWalletProvider | undefined,\n): SpokeProvider | undefined {\n const xChainType = getXChainType(spokeChainId);\n const walletProvider_ = useWalletProvider(spokeChainId);\n const _walletProvider = walletProvider ?? walletProvider_;\n\n const spokeProvider = useMemo(() => {\n if (!_walletProvider) return undefined;\n if (!spokeChainId) return undefined;\n\n if (xChainType === 'EVM') {\n return new EvmSpokeProvider(\n _walletProvider as IEvmWalletProvider,\n spokeChainConfig[spokeChainId] as EvmSpokeChainConfig,\n );\n }\n if (xChainType === 'SUI') {\n return new SuiSpokeProvider(\n spokeChainConfig[spokeChainId] as SuiSpokeChainConfig,\n _walletProvider as ISuiWalletProvider,\n );\n }\n if (xChainType === 'ICON') {\n return new IconSpokeProvider(\n _walletProvider as IIconWalletProvider,\n spokeChainConfig[spokeChainId] as IconSpokeChainConfig,\n );\n }\n if (xChainType === 'INJECTIVE') {\n return new InjectiveSpokeProvider(\n spokeChainConfig[spokeChainId] as InjectiveSpokeChainConfig,\n _walletProvider as IInjectiveWalletProvider,\n );\n }\n\n if (xChainType === 'STELLAR') {\n const stellarConfig = spokeChainConfig[spokeChainId] as StellarSpokeChainConfig;\n return new StellarSpokeProvider(_walletProvider as IStellarWalletProvider, stellarConfig, {\n horizonRpcUrl: stellarConfig.horizonRpcUrl,\n sorobanRpcUrl: stellarConfig.sorobanRpcUrl,\n });\n }\n\n if (xChainType === 'SOLANA') {\n return new SolanaSpokeProvider(\n _walletProvider as ISolanaWalletProvider,\n spokeChainConfig[spokeChainId] as SolanaChainConfig,\n );\n }\n\n return undefined;\n }, [spokeChainId, xChainType, _walletProvider]);\n\n return spokeProvider;\n}\n","import type { XToken } from '@sodax/types';\nimport { useMutation, type UseMutationResult } from '@tanstack/react-query';\nimport { parseUnits } from 'viem';\nimport { useSodaxContext } from '../shared/useSodaxContext';\nimport type { SpokeProvider } from '@sodax/sdk';\ninterface BorrowResponse {\n ok: true;\n value: [string, string];\n}\n\n/**\n * Hook for borrowing tokens from the Sodax money market.\n *\n * This hook provides functionality to borrow tokens from the money market protocol,\n * handling the entire borrow process including transaction creation, submission,\n * and cross-chain communication.\n *\n * @param {XToken} spokeToken - The token to borrow from the spoke chain. Must be an XToken with valid address and chain information.\n * @param {SpokeProvider} spokeProvider - The spoke provider to use for the borrow transaction. Must be a valid SpokeProvider instance.\n *\n * @returns {UseMutationResult<BorrowResponse, Error, string>} A mutation result object with the following properties:\n * - mutateAsync: Function to execute the borrow transaction\n * - isPending: Boolean indicating if a transaction is in progress\n * - error: Error object if the last transaction failed, null otherwise\n *\n * @example\n * ```typescript\n * const { mutateAsync: borrow, isPending, error } = useBorrow(spokeToken);\n * await borrow('100');\n * ```\n *\n * @throws {Error} When:\n * - spokeProvider is not available\n * - Transaction execution fails\n */\nexport function useBorrow(\n spokeToken: XToken,\n spokeProvider: SpokeProvider | undefined,\n): UseMutationResult<BorrowResponse, Error, string> {\n const { sodax } = useSodaxContext();\n\n return useMutation<BorrowResponse, Error, string>({\n mutationFn: async (amount: string) => {\n if (!spokeProvider) {\n throw new Error('spokeProvider is not found');\n }\n\n const response = await sodax.moneyMarket.borrow(\n {\n token: spokeToken.address,\n amount: parseUnits(amount, 18),\n action: 'borrow',\n },\n spokeProvider,\n );\n\n if (!response.ok) {\n throw new Error('Failed to borrow tokens');\n }\n\n console.log('Borrow transaction submitted:', response);\n return response;\n },\n });\n}\n","import type { SpokeProvider } from '@sodax/sdk';\nimport type { XToken } from '@sodax/types';\nimport { useMutation, type UseMutationResult } from '@tanstack/react-query';\nimport { parseUnits } from 'viem';\nimport { useSodaxContext } from '../shared/useSodaxContext';\n\ninterface RepayResponse {\n ok: true;\n value: [string, string];\n}\n\n/**\n * Hook for repaying borrowed tokens to the Sodax money market.\n *\n * This hook provides functionality to repay borrowed tokens back to the money market protocol,\n * handling the entire repayment process including transaction creation, submission,\n * and cross-chain communication.\n *\n * @param {XToken} spokeToken - The token to repay on the spoke chain. Must be an XToken with valid address and chain information.\n * @param {SpokeProvider} spokeProvider - The spoke provider to use for the repay transaction. Must be a valid SpokeProvider instance.\n *\n * @returns {UseMutationResult<RepayResponse, Error, string>} A mutation result object with the following properties:\n * - mutateAsync: Function to execute the repay transaction\n * - isPending: Boolean indicating if a transaction is in progress\n * - error: Error object if the last transaction failed, null otherwise\n *\n * @example\n * ```typescript\n * const { mutateAsync: repay, isPending, error } = useRepay(spokeToken);\n * await repay('100');\n * ```\n *\n * @throws {Error} When:\n * - spokeProvider is not available\n * - Transaction execution fails\n */\nexport function useRepay(\n spokeToken: XToken,\n spokeProvider: SpokeProvider | undefined,\n): UseMutationResult<RepayResponse, Error, string> {\n const { sodax } = useSodaxContext();\n\n return useMutation<RepayResponse, Error, string>({\n mutationFn: async (amount: string) => {\n if (!spokeProvider) {\n throw new Error('spokeProvider is not found');\n }\n\n const response = await sodax.moneyMarket.repay(\n {\n token: spokeToken.address,\n amount: parseUnits(amount, spokeToken.decimals),\n action: 'repay',\n },\n spokeProvider,\n );\n\n if (!response.ok) {\n throw new Error('Failed to repay tokens');\n }\n\n console.log('Repay transaction submitted:', response);\n return response;\n },\n });\n}\n","import type { SpokeProvider } from '@sodax/sdk';\nimport type { XToken } from '@sodax/types';\nimport { useMutation, type UseMutationResult } from '@tanstack/react-query';\nimport { parseUnits } from 'viem';\nimport { useSodaxContext } from '../shared/useSodaxContext';\n\ninterface SupplyResponse {\n ok: true;\n value: [string, string];\n}\n\n/**\n * Hook for supplying tokens to the Sodax money market.\n *\n * This hook provides functionality to supply tokens to the money market protocol,\n * handling the entire supply process including transaction creation, submission,\n * and cross-chain communication.\n *\n * @param {XToken} spokeToken - The token to supply on the spoke chain. Must be an XToken with valid address and chain information.\n * @param {SpokeProvider} spokeProvider - The spoke provider to use for the supply transaction. Must be a valid SpokeProvider instance.\n *\n * @returns {UseMutationResult<SupplyResponse, Error, string>} A mutation result object with the following properties:\n * - mutateAsync: Function to execute the supply transaction\n * - isPending: Boolean indicating if a transaction is in progress\n * - error: Error object if the last transaction failed, null otherwise\n *\n * @example\n * ```typescript\n * const { mutateAsync: supply, isPending, error } = useSupply(spokeToken);\n * await supply('100');\n * ```\n *\n * @throws {Error} When:\n * - spokeProvider is not available\n */\nexport function useSupply(\n spokeToken: XToken,\n spokeProvider: SpokeProvider | undefined,\n): UseMutationResult<SupplyResponse, Error, string> {\n const { sodax } = useSodaxContext();\n\n return useMutation<SupplyResponse, Error, string>({\n mutationFn: async (amount: string) => {\n if (!spokeProvider) {\n throw new Error('spokeProvider is not found');\n }\n\n const response = await sodax.moneyMarket.supply(\n {\n token: spokeToken.address,\n amount: parseUnits(amount, spokeToken.decimals),\n action: 'supply',\n },\n spokeProvider,\n );\n\n if (!response.ok) {\n throw new Error('Failed to supply tokens');\n }\n\n console.log('Supply transaction submitted:', response);\n return response;\n },\n });\n}\n","import type { SpokeProvider } from '@sodax/sdk';\nimport type { XToken } from '@sodax/types';\nimport { useMutation, type UseMutationResult } from '@tanstack/react-query';\nimport { parseUnits } from 'viem';\nimport { useSodaxContext } from '../shared/useSodaxContext';\n\ninterface WithdrawResponse {\n ok: true;\n value: [string, string];\n}\n\n/**\n * Hook for withdrawing supplied tokens from the Sodax money market.\n *\n * This hook provides functionality to withdraw previously supplied tokens from the money market protocol,\n * handling the entire withdrawal process including transaction creation, submission,\n * and cross-chain communication.\n *\n * @param {XToken} spokeToken - The token to withdraw from the spoke chain. Must be an XToken with valid address and chain information.\n * @param {SpokeProvider} spokeProvider - The spoke provider to use for the withdraw transaction. Must be a valid SpokeProvider instance.\n *\n * @returns {UseMutationResult<WithdrawResponse, Error, string>} A mutation result object with the following properties:\n * - mutateAsync: Function to execute the withdraw transaction\n * - isPending: Boolean indicating if a transaction is in progress\n * @example\n * ```typescript\n * const { mutateAsync: withdraw, isPending, error } = useWithdraw(spokeToken);\n * await withdraw('100');\n * ```\n *\n * @throws {Error} When:\n * - spokeProvider is not available\n * - Transaction execution fails\n */\nexport function useWithdraw(\n spokeToken: XToken,\n spokeProvider: SpokeProvider | undefined,\n): UseMutationResult<WithdrawResponse, Error, string> {\n const { sodax } = useSodaxContext();\n\n return useMutation<WithdrawResponse, Error, string>({\n mutationFn: async (amount: string) => {\n if (!spokeProvider) {\n throw new Error('spokeProvider is not found');\n }\n\n const response = await sodax.moneyMarket.withdraw(\n {\n token: spokeToken.address,\n // vault token on hub chain decimals is 18\n amount: parseUnits(amount, 18),\n action: 'withdraw',\n },\n spokeProvider,\n );\n\n if (!response.ok) {\n throw new Error('Failed to withdraw tokens');\n }\n\n console.log('Withdraw transaction submitted:', response);\n return response;\n },\n });\n}\n","import { encodeAddress, EvmWalletAbstraction, getMoneyMarketConfig, type EvmHubProvider } from '@sodax/sdk';\nimport type { HubChainId, SpokeChainId } from '@sodax/types';\nimport type { ChainId } from '@sodax/types';\nimport { useQuery } from '@tanstack/react-query';\nimport { useHubProvider } from '../provider/useHubProvider';\nimport { useSodaxContext } from '../shared/useSodaxContext';\n\nexport function useUserReservesData(spokeChainId: ChainId, address: string | undefined) {\n const { sodax } = useSodaxContext();\n const hubChainId = (sodax.config?.hubProviderConfig?.chainConfig.chain.id ?? 'sonic') as HubChainId;\n const hubProvider = useHubProvider();\n\n const { data: userReserves } = useQuery({\n queryKey: ['userReserves', spokeChainId, address],\n queryFn: async () => {\n if (!hubProvider || !address) {\n return;\n }\n\n const addressBytes = encodeAddress(spokeChainId, address);\n const hubWalletAddress = await EvmWalletAbstraction.getUserHubWalletAddress(\n spokeChainId as SpokeChainId,\n addressBytes,\n hubProvider as EvmHubProvider,\n );\n\n const moneyMarketConfig = getMoneyMarketConfig(hubChainId);\n const [res] = await sodax.moneyMarket.getUserReservesData(\n hubWalletAddress as `0x${string}`,\n moneyMarketConfig.uiPoolDataProvider,\n moneyMarketConfig.poolAddressesProvider,\n );\n\n return res;\n },\n enabled: !!spokeChainId && !!hubProvider && !!address,\n refetchInterval: 5000,\n });\n\n return userReserves;\n}\n","import { getMoneyMarketConfig } from '@sodax/sdk';\nimport type { HubChainId } from '@sodax/types';\nimport { useQuery } from '@tanstack/react-query';\nimport { useSodaxContext } from '../shared/useSodaxContext';\n/**\n * Hook for fetching reserves data from the Sodax money market.\n *\n * This hook provides access to the current state of all reserves in the money market protocol,\n * including liquidity, interest rates, and other key metrics. The data is automatically\n * fetched and cached using React Query.\n *\n * @example\n * ```typescript\n * const { data: reservesData, isLoading, error } = useReservesData();\n * ```\n *\n * @returns A React Query result object containing:\n * - data: The reserves data when available\n * - isLoading: Loading state indicator\n * - error: Any error that occurred during data fetching\n */\n\nexport function useReservesData() {\n const { sodax } = useSodaxContext();\n const hubChainId = (sodax.config?.hubProviderConfig?.chainConfig.chain.id ?? 'sonic') as HubChainId;\n\n return useQuery({\n queryKey: ['reservesData'],\n queryFn: async () => {\n const moneyMarketConfig = getMoneyMarketConfig(hubChainId);\n return await sodax.moneyMarket.getReservesData(\n moneyMarketConfig.uiPoolDataProvider,\n moneyMarketConfig.poolAddressesProvider,\n );\n },\n });\n}\n","import { useQuery, type UseQueryResult } from '@tanstack/react-query';\nimport type { XToken } from '@sodax/types';\nimport { useSodaxContext } from '../shared/useSodaxContext';\nimport { parseUnits } from 'viem';\nimport type { MoneyMarketAction, SpokeProvider } from '@sodax/sdk';\n\n/**\n * Hook for checking token allowance for money market operations.\n *\n * This hook verifies if the user has approved enough tokens for a specific money market action\n * (borrow/repay). It automatically queries and tracks the allowance status.\n *\n * @param {XToken} token - The token to check allowance for. Must be an XToken with valid address and chain information.\n * @param {string} amount - The amount to check allowance for, as a decimal string\n * @param {MoneyMarketAction} action - The money market action to check allowance for ('borrow' or 'repay')\n * @param {SpokeProvider} spokeProvider - The spoke provider to use for allowance checks\n *\n * @returns {UseQueryResult<boolean, Error>} A React Query result containing:\n * - data: Boolean indicating if allowance is sufficient\n * - isLoading: Loading state indicator\n * - error: Any error that occurred during the check\n *\n * @example\n * ```typescript\n * const { data: hasAllowed, isLoading } = useMMAllowance(token, \"100\", \"repay\", provider);\n * ```\n */\nexport function useMMAllowance(\n token: XToken,\n amount: string,\n action: MoneyMarketAction,\n spokeProvider: SpokeProvider | undefined,\n): UseQueryResult<boolean, Error> {\n const { sodax } = useSodaxContext();\n\n return useQuery({\n queryKey: ['allowance', token.address, amount, action],\n queryFn: async () => {\n if (!spokeProvider) throw new Error('Spoke provider is required');\n const allowance = await sodax.moneyMarket.isAllowanceValid(\n {\n token: token.address,\n amount: parseUnits(amount, token.decimals),\n action,\n },\n spokeProvider,\n );\n if (allowance.ok) {\n return allowance.value;\n }\n return false;\n },\n enabled: !!spokeProvider,\n });\n}\n","import { useSodaxContext } from '../shared/useSodaxContext';\nimport type { XToken } from '@sodax/types';\nimport { parseUnits } from 'viem';\nimport { useMutation, useQueryClient } from '@tanstack/react-query';\nimport type { MoneyMarketAction, SpokeProvider } from '@sodax/sdk';\n\ninterface UseApproveReturn {\n approve: ({ amount, action }: { amount: string; action: MoneyMarketAction }) => Promise<boolean>;\n isLoading: boolean;\n error: Error | null;\n resetError: () => void;\n}\n\n/**\n * Hook for approving token spending for money market actions\n * @param token The token to approve spending for\n * @param spokeProvider The spoke provider instance for the chain\n * @returns Object containing approve function, loading state, error state and reset function\n * @example\n * ```tsx\n * const { approve, isLoading, error } = useMMApprove(token, spokeProvider);\n *\n * // Approve tokens for supply action\n * await approve({ amount: \"100\", action: \"supply\" });\n * ```\n */\n\nexport function useMMApprove(token: XToken, spokeProvider: SpokeProvider | undefined): UseApproveReturn {\n const { sodax } = useSodaxContext();\n const queryClient = useQueryClient();\n\n const {\n mutateAsync: approve,\n isPending,\n error,\n reset: resetError,\n } = useMutation({\n mutationFn: async ({ amount, action }: { amount: string; action: MoneyMarketAction }) => {\n if (!spokeProvider) {\n throw new Error('Spoke provider not found');\n }\n const allowance = await sodax.moneyMarket.approve(\n {\n token: token.address,\n amount: parseUnits(amount, token.decimals),\n action,\n },\n spokeProvider,\n );\n if (!allowance.ok) {\n throw new Error('Failed to approve tokens');\n }\n return allowance.ok;\n },\n onSuccess: () => {\n // Invalidate allowance query to refetch the new allowance\n queryClient.invalidateQueries({ queryKey: ['allowance', token.address] });\n },\n });\n\n return {\n approve,\n isLoading: isPending,\n error: error,\n resetError,\n };\n}\n","import type { SolverErrorResponse, SolverIntentQuoteRequest, SolverIntentQuoteResponse, Result } from '@sodax/sdk';\nimport { useSodaxContext } from '../shared/useSodaxContext';\nimport { useQuery, type UseQueryResult } from '@tanstack/react-query';\n\n/**\n * Hook for fetching a quote for an intent-based swap.\n *\n * This hook provides real-time quote data for an intent-based swap.\n *\n * @param {SolverIntentQuoteRequest | undefined} payload - The intent quote request parameters. If undefined, the query will be disabled.\n *\n * @returns {UseQueryResult<Result<SolverIntentQuoteResponse, SolverErrorResponse> | undefined>} A query result object containing:\n * - data: The quote result from the solver\n * - isLoading: Boolean indicating if the quote is being fetched\n * - error: Error object if the quote request failed\n * - refetch: Function to manually trigger a quote refresh\n *\n * @example\n * ```typescript\n * const { data: quote, isLoading } = useQuote({\n * token_src: '0x...',\n * token_src_blockchain_id: '1',\n * token_dst: '0x...',\n * token_dst_blockchain_id: '2',\n * amount: '1000000000000000000',\n * quote_type: 'exact_input',\n * });\n *\n * if (isLoading) return <div>Loading quote...</div>;\n * if (quote) {\n * console.log('Quote received:', quote);\n * }\n * ```\n *\n * @remarks\n * - The quote is automatically refreshed every 3 seconds\n * - The query is disabled when payload is undefined\n * - Uses React Query for efficient caching and state management\n */\nexport const useQuote = (\n payload: SolverIntentQuoteRequest | undefined,\n): UseQueryResult<Result<SolverIntentQuoteResponse, SolverErrorResponse> | undefined> => {\n const { sodax } = useSodaxContext();\n return useQuery({\n queryKey: [payload],\n queryFn: async () => {\n if (!payload) {\n return undefined;\n }\n return sodax.solver.getQuote(payload);\n },\n enabled: !!payload,\n refetchInterval: 3000,\n });\n};\n","import { useSodaxContext } from '../shared/useSodaxContext';\nimport type {\n CreateIntentParams,\n SolverExecutionResponse,\n Result,\n IntentErrorCode,\n Intent,\n PacketData,\n IntentError,\n SpokeProvider,\n} from '@sodax/sdk';\nimport { useMutation, type UseMutationResult } from '@tanstack/react-query';\n\ntype CreateIntentResult = Result<\n [SolverExecutionResponse, Intent, PacketData],\n IntentError<IntentErrorCode>\n>;\n\n/**\n * Hook for creating and submitting an intent order for cross-chain swaps.\n * Uses React Query's useMutation for better state management and caching.\n *\n * @param {SpokeProvider} spokeProvider - The spoke provider to use for the swap\n * @returns {UseMutationResult} Mutation result object containing mutation function and state\n *\n * @example\n * ```typescript\n * const { mutateAsync: createIntent, isPending } = useCreateIntentOrder(spokeProvider);\n *\n * const handleSwap = async () => {\n * const result = await createIntent({\n * token_src: '0x...',\n * token_src_blockchain_id: 'arbitrum',\n * token_dst: '0x...',\n * token_dst_blockchain_id: 'polygon',\n * amount: '1000000000000000000',\n * min_output_amount: '900000000000000000'\n * });\n * };\n * ```\n */\nexport function useCreateIntentOrder(\n spokeProvider: SpokeProvider | undefined,\n): UseMutationResult<CreateIntentResult, Error, CreateIntentParams> {\n const { sodax } = useSodaxContext();\n\n return useMutation<CreateIntentResult, Error, CreateIntentParams>({\n mutationFn: async (params: CreateIntentParams) => {\n if (!spokeProvider) {\n throw new Error('Spoke provider not found');\n }\n return sodax.solver.createAndSubmitIntent(params, spokeProvider);\n },\n });\n}\n","import type { Hex, SolverErrorResponse, SolverIntentStatusResponse, Result } from '@sodax/sdk';\nimport { useQuery, type UseQueryResult } from '@tanstack/react-query';\nimport { useSodaxContext } from '../shared/useSodaxContext';\n\n/**\n * Hook for monitoring the status of an intent-based swap.\n *\n * This hook provides real-time status updates for an intent-based swap transaction.\n *\n * @param {Hex} intent_tx_hash - The transaction hash of the intent order on the hub chain\n *\n * @returns {UseQueryResult<Result<SolverIntentStatusResponse, SolverErrorResponse> | undefined>} A query result object containing:\n * - data: The status result from the solver\n * - isLoading: Boolean indicating if the status is being fetched\n * - error: Error object if the status request failed\n * - refetch: Function to manually trigger a status refresh\n *\n * @example\n * ```typescript\n * const { data: status, isLoading } = useStatus('0x...');\n *\n * if (isLoading) return <div>Loading status...</div>;\n * if (status?.ok) {\n * console.log('Status:', status.value);\n * }\n * ```\n *\n * @remarks\n * - The status is automatically refreshed every 3 seconds\n * - Uses React Query for efficient caching and state management\n */\n\nexport const useStatus = (\n intent_tx_hash: Hex,\n): UseQueryResult<Result<SolverIntentStatusResponse, SolverErrorResponse> | undefined> => {\n const { sodax } = useSodaxContext();\n return useQuery({\n queryKey: [intent_tx_hash],\n queryFn: async () => {\n return sodax.solver.getStatus({ intent_tx_hash });\n },\n refetchInterval: 3000, // 3s\n });\n};\n","import { useQuery, type UseQueryResult } from '@tanstack/react-query';\nimport { useSodaxContext } from '../shared/useSodaxContext';\nimport type { CreateIntentParams, SpokeProvider } from '@sodax/sdk';\n\n/**\n * Hook for checking token allowance for money market operations.\n *\n * This hook verifies if the user has approved enough tokens for a specific money market action\n * (borrow/repay). It automatically queries and tracks the allowance status.\n *\n * @param {CreateIntentParams} params - The parameters for the intent to check allowance for.\n * @param {SpokeProvider} spokeProvider - The spoke provider to use for allowance checks\n *\n * @returns {UseQueryResult<boolean, Error>} A React Query result containing:\n * - data: Boolean indicating if allowance is sufficient\n * - isLoading: Loading state indicator\n * - error: Any error that occurred during the check\n *\n * @example\n * ```typescript\n * const { data: hasAllowed, isLoading } = useMMAllowance(params, spokeProvider);\n * ```\n */\nexport function useSwapAllowance(\n params: CreateIntentParams | undefined,\n spokeProvider: SpokeProvider | undefined,\n): UseQueryResult<boolean, Error> {\n const { sodax } = useSodaxContext();\n\n return useQuery({\n queryKey: ['allowance', params],\n queryFn: async () => {\n if (!spokeProvider || !params) {\n return false;\n }\n const allowance = await sodax.solver.isAllowanceValid(params, spokeProvider);\n if (allowance.ok) {\n return allowance.value;\n }\n return false;\n },\n enabled: !!spokeProvider && !!params,\n });\n}\n","import { useSodaxContext } from '../shared/useSodaxContext';\nimport type { Token } from '@sodax/types';\nimport { type Address, parseUnits } from 'viem';\nimport { useMutation, useQueryClient } from '@tanstack/react-query';\nimport type { SpokeProvider } from '@sodax/sdk';\n\ninterface UseApproveReturn {\n approve: ({ amount }: { amount: string }) => Promise<boolean>;\n isLoading: boolean;\n error: Error | null;\n resetError: () => void;\n}\n\n/**\n * Hook for approving token spending for money market actions\n * @param token The token to approve spending for\n * @param spokeProvider The spoke provider instance for the chain\n * @returns Object containing approve function, loading state, error state and reset function\n * @example\n * ```tsx\n * const { approve, isLoading, error } = useApprove(token, spokeProvider);\n *\n * // Approve tokens for supply action\n * await approve({ amount: \"100\", action: \"supply\" });\n * ```\n */\n\nexport function useSwapApprove(token: Token | undefined, spokeProvider: SpokeProvider | undefined): UseApproveReturn {\n const { sodax } = useSodaxContext();\n const queryClient = useQueryClient();\n\n const {\n mutateAsync: approve,\n isPending,\n error,\n reset: resetError,\n } = useMutation({\n mutationFn: async ({ amount }: { amount: string }) => {\n if (!spokeProvider) {\n throw new Error('Spoke provider not found');\n }\n if (!token) {\n throw new Error('Token not found');\n }\n\n const allowance = await sodax.solver.approve(\n token.address as Address,\n parseUnits(amount, token.decimals),\n spokeProvider,\n );\n if (!allowance.ok) {\n throw new Error('Failed to approve tokens');\n }\n return allowance.ok;\n },\n onSuccess: () => {\n // Invalidate allowance query to refetch the new allowance\n queryClient.invalidateQueries({ queryKey: ['allowance', token?.address] });\n },\n });\n\n return {\n approve,\n isLoading: isPending,\n error: error,\n resetError,\n };\n}\n","import type { ReactNode, ReactElement } from 'react';\nimport { EvmHubProvider, getHubChainConfig, Sodax, type SodaxConfig } from '@sodax/sdk';\nimport { SodaxContext } from '@/contexts';\nimport React, { useMemo } from 'react';\n\ninterface SodaxProviderProps {\n children: ReactNode;\n testnet?: boolean;\n config: SodaxConfig;\n}\n\nexport const SodaxProvider = ({ children, testnet = false, config }: SodaxProviderProps): ReactElement => {\n const sodax = new Sodax(config);\n\n const hubChainId = config?.hubProviderConfig?.chainConfig.chain.id;\n const hubRpcUrl = config?.hubProviderConfig?.hubRpcUrl;\n\n const hubProvider = useMemo(() => {\n if (hubChainId && hubRpcUrl) {\n const hubChainCfg = getHubChainConfig(hubChainId);\n\n return new EvmHubProvider({\n hubRpcUrl: hubRpcUrl,\n chainConfig: hubChainCfg,\n });\n }\n return undefined;\n }, [hubChainId, hubRpcUrl]);\n\n return <SodaxContext.Provider value={{ sodax, testnet, hubProvider }}>{children}</SodaxContext.Provider>;\n};\n","import type { ChainId } from '@sodax/types';\n\nimport { hubAssets } from '@sodax/sdk';\n\nexport const getSpokeTokenAddressByVault = (spokeChainId: ChainId, vault: string) => {\n const tokens = hubAssets[spokeChainId];\n const address = Object.keys(tokens).find(\n tokenAddress => tokens[tokenAddress].vault.toLowerCase() === vault.toLowerCase(),\n );\n\n return address;\n};\n"]}
|
|
1
|
+
{"version":3,"sources":["../src/contexts/index.ts","../src/hooks/shared/useSodaxContext.ts","../src/hooks/shared/useEstimateGas.ts","../src/hooks/provider/useHubProvider.ts","../src/hooks/provider/useSpokeProvider.ts","../src/hooks/mm/useBorrow.ts","../src/hooks/mm/useRepay.ts","../src/hooks/mm/useSupply.ts","../src/hooks/mm/useWithdraw.ts","../src/hooks/mm/useUserReservesData.ts","../src/hooks/mm/useReservesData.ts","../src/hooks/mm/useMMAllowance.ts","../src/hooks/mm/useMMApprove.ts","../src/hooks/swap/useQuote.ts","../src/hooks/swap/useCreateIntentOrder.ts","../src/hooks/swap/useStatus.ts","../src/hooks/swap/useSwapAllowance.ts","../src/hooks/swap/useSwapApprove.ts","../src/providers/SodaxProvider.tsx","../src/core/index.ts"],"names":["useMutation","parseUnits","useQuery","getMoneyMarketConfig","useQueryClient","useMemo"],"mappings":"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","file":"index.mjs","sourcesContent":["import { createContext } from 'react';\nimport type { EvmHubProvider, Sodax } from '@sodax/sdk';\n\nexport interface SodaxContextType {\n sodax: Sodax;\n testnet: boolean;\n hubProvider: EvmHubProvider | undefined;\n}\n\nexport const SodaxContext = createContext<SodaxContextType | null>(null);\n","import { SodaxContext, type SodaxContextType } from '@/contexts';\nimport { useContext } from 'react';\n\n/**\n * Hook to access the Sodax context which provides access to the Sodax SDK instance and chain configuration\n * @throws {Error} If used outside of a SodaxProvider\n * @returns {SodaxContextType} The Sodax context containing SDK instance and configuration\n */\n\nexport const useSodaxContext = (): SodaxContextType => {\n const context = useContext(SodaxContext);\n if (!context) {\n throw new Error('useSodaxContext must be used within a SodaxProvider');\n }\n return context;\n};\n","import { type GetEstimateGasReturnType, type SpokeProvider, SpokeService, type TxReturnType } from '@sodax/sdk';\nimport { useMutation, type UseMutationResult } from '@tanstack/react-query';\n\nexport function useEstimateGas<T extends SpokeProvider = SpokeProvider>(\n spokeProvider: T | undefined,\n): UseMutationResult<GetEstimateGasReturnType<T>, Error, TxReturnType<T, true>> {\n return useMutation<GetEstimateGasReturnType<T>, Error, TxReturnType<T, true>>({\n mutationFn: async (rawTx: TxReturnType<T, true>) => {\n if (!spokeProvider) {\n throw new Error('spokeProvider is not found');\n }\n\n const response = await SpokeService.estimateGas(rawTx, spokeProvider);\n\n return response;\n },\n });\n}\n","import type { EvmHubProvider } from '@sodax/sdk';\nimport { useSodaxContext } from '../shared/useSodaxContext';\n\nexport function useHubProvider(): EvmHubProvider | undefined {\n const { hubProvider } = useSodaxContext();\n\n return hubProvider;\n}\n","import {\n EvmSpokeProvider,\n spokeChainConfig,\n type SuiSpokeChainConfig,\n SuiSpokeProvider,\n type EvmSpokeChainConfig,\n IconSpokeProvider,\n type IconSpokeChainConfig,\n InjectiveSpokeProvider,\n type InjectiveSpokeChainConfig,\n StellarSpokeProvider,\n type StellarSpokeChainConfig,\n type SpokeProvider,\n type IWalletProvider,\n SolanaSpokeProvider,\n type SolanaChainConfig,\n SONIC_MAINNET_CHAIN_ID,\n SonicSpokeProvider,\n type SonicSpokeChainConfig,\n} from '@sodax/sdk';\nimport type {\n IEvmWalletProvider,\n IIconWalletProvider,\n ISuiWalletProvider,\n SpokeChainId,\n IInjectiveWalletProvider,\n IStellarWalletProvider,\n ISolanaWalletProvider,\n} from '@sodax/types';\nimport { getXChainType, useWalletProvider } from '@sodax/wallet-sdk';\nimport { useMemo } from 'react';\n\n/**\n * Hook to get the appropriate spoke provider based on the chain type.\n * Supports EVM, SUI, ICON and INJECTIVE chains.\n *\n * @param {SpokeChainId | undefined} spokeChainId - The spoke chain ID to get the provider for\n * @param {IWalletProvider | undefined} walletProvider - The wallet provider to use\n * @returns {SpokeProvider | undefined} The appropriate spoke provider instance for the given chain ID, or undefined if invalid/unsupported\n *\n * @example\n * ```tsx\n * // Using a specific SpokeChainId and wallet provider\n * const spokeProvider = useSpokeProvider(spokeChainId, walletProvider);\n * ```\n */\nexport function useSpokeProvider(\n spokeChainId: SpokeChainId | undefined,\n walletProvider?: IWalletProvider | undefined,\n): SpokeProvider | undefined {\n const xChainType = getXChainType(spokeChainId);\n const walletProvider_ = useWalletProvider(spokeChainId);\n const _walletProvider = walletProvider ?? walletProvider_;\n\n const spokeProvider = useMemo(() => {\n if (!_walletProvider) return undefined;\n if (!spokeChainId) return undefined;\n\n if (xChainType === 'EVM') {\n if (spokeChainId === SONIC_MAINNET_CHAIN_ID) {\n return new SonicSpokeProvider(\n _walletProvider as IEvmWalletProvider,\n spokeChainConfig[spokeChainId] as SonicSpokeChainConfig,\n );\n }\n return new EvmSpokeProvider(\n _walletProvider as IEvmWalletProvider,\n spokeChainConfig[spokeChainId] as EvmSpokeChainConfig,\n );\n }\n if (xChainType === 'SUI') {\n return new SuiSpokeProvider(\n spokeChainConfig[spokeChainId] as SuiSpokeChainConfig,\n _walletProvider as ISuiWalletProvider,\n );\n }\n if (xChainType === 'ICON') {\n return new IconSpokeProvider(\n _walletProvider as IIconWalletProvider,\n spokeChainConfig[spokeChainId] as IconSpokeChainConfig,\n );\n }\n if (xChainType === 'INJECTIVE') {\n return new InjectiveSpokeProvider(\n spokeChainConfig[spokeChainId] as InjectiveSpokeChainConfig,\n _walletProvider as IInjectiveWalletProvider,\n );\n }\n\n if (xChainType === 'STELLAR') {\n const stellarConfig = spokeChainConfig[spokeChainId] as StellarSpokeChainConfig;\n return new StellarSpokeProvider(_walletProvider as IStellarWalletProvider, stellarConfig, {\n horizonRpcUrl: stellarConfig.horizonRpcUrl,\n sorobanRpcUrl: stellarConfig.sorobanRpcUrl,\n });\n }\n\n if (xChainType === 'SOLANA') {\n return new SolanaSpokeProvider(\n _walletProvider as ISolanaWalletProvider,\n spokeChainConfig[spokeChainId] as SolanaChainConfig,\n );\n }\n\n return undefined;\n }, [spokeChainId, xChainType, _walletProvider]);\n\n return spokeProvider;\n}\n","import type { XToken } from '@sodax/types';\nimport { useMutation, type UseMutationResult } from '@tanstack/react-query';\nimport { parseUnits } from 'viem';\nimport { useSodaxContext } from '../shared/useSodaxContext';\nimport type { SpokeProvider } from '@sodax/sdk';\ninterface BorrowResponse {\n ok: true;\n value: [string, string];\n}\n\n/**\n * Hook for borrowing tokens from the Sodax money market.\n *\n * This hook provides functionality to borrow tokens from the money market protocol,\n * handling the entire borrow process including transaction creation, submission,\n * and cross-chain communication.\n *\n * @param {XToken} spokeToken - The token to borrow from the spoke chain. Must be an XToken with valid address and chain information.\n * @param {SpokeProvider} spokeProvider - The spoke provider to use for the borrow transaction. Must be a valid SpokeProvider instance.\n *\n * @returns {UseMutationResult<BorrowResponse, Error, string>} A mutation result object with the following properties:\n * - mutateAsync: Function to execute the borrow transaction\n * - isPending: Boolean indicating if a transaction is in progress\n * - error: Error object if the last transaction failed, null otherwise\n *\n * @example\n * ```typescript\n * const { mutateAsync: borrow, isPending, error } = useBorrow(spokeToken);\n * await borrow('100');\n * ```\n *\n * @throws {Error} When:\n * - spokeProvider is not available\n * - Transaction execution fails\n */\nexport function useBorrow(\n spokeToken: XToken,\n spokeProvider: SpokeProvider | undefined,\n): UseMutationResult<BorrowResponse, Error, string> {\n const { sodax } = useSodaxContext();\n\n return useMutation<BorrowResponse, Error, string>({\n mutationFn: async (amount: string) => {\n if (!spokeProvider) {\n throw new Error('spokeProvider is not found');\n }\n\n const response = await sodax.moneyMarket.borrow(\n {\n token: spokeToken.address,\n amount: parseUnits(amount, 18),\n action: 'borrow',\n },\n spokeProvider,\n );\n\n if (!response.ok) {\n throw new Error('Failed to borrow tokens');\n }\n\n console.log('Borrow transaction submitted:', response);\n return response;\n },\n });\n}\n","import type { SpokeProvider } from '@sodax/sdk';\nimport type { XToken } from '@sodax/types';\nimport { useMutation, type UseMutationResult } from '@tanstack/react-query';\nimport { parseUnits } from 'viem';\nimport { useSodaxContext } from '../shared/useSodaxContext';\n\ninterface RepayResponse {\n ok: true;\n value: [string, string];\n}\n\n/**\n * Hook for repaying borrowed tokens to the Sodax money market.\n *\n * This hook provides functionality to repay borrowed tokens back to the money market protocol,\n * handling the entire repayment process including transaction creation, submission,\n * and cross-chain communication.\n *\n * @param {XToken} spokeToken - The token to repay on the spoke chain. Must be an XToken with valid address and chain information.\n * @param {SpokeProvider} spokeProvider - The spoke provider to use for the repay transaction. Must be a valid SpokeProvider instance.\n *\n * @returns {UseMutationResult<RepayResponse, Error, string>} A mutation result object with the following properties:\n * - mutateAsync: Function to execute the repay transaction\n * - isPending: Boolean indicating if a transaction is in progress\n * - error: Error object if the last transaction failed, null otherwise\n *\n * @example\n * ```typescript\n * const { mutateAsync: repay, isPending, error } = useRepay(spokeToken);\n * await repay('100');\n * ```\n *\n * @throws {Error} When:\n * - spokeProvider is not available\n * - Transaction execution fails\n */\nexport function useRepay(\n spokeToken: XToken,\n spokeProvider: SpokeProvider | undefined,\n): UseMutationResult<RepayResponse, Error, string> {\n const { sodax } = useSodaxContext();\n\n return useMutation<RepayResponse, Error, string>({\n mutationFn: async (amount: string) => {\n if (!spokeProvider) {\n throw new Error('spokeProvider is not found');\n }\n\n const response = await sodax.moneyMarket.repay(\n {\n token: spokeToken.address,\n amount: parseUnits(amount, spokeToken.decimals),\n action: 'repay',\n },\n spokeProvider,\n );\n\n if (!response.ok) {\n throw new Error('Failed to repay tokens');\n }\n\n console.log('Repay transaction submitted:', response);\n return response;\n },\n });\n}\n","import type { SpokeProvider } from '@sodax/sdk';\nimport type { XToken } from '@sodax/types';\nimport { useMutation, type UseMutationResult } from '@tanstack/react-query';\nimport { parseUnits } from 'viem';\nimport { useSodaxContext } from '../shared/useSodaxContext';\n\ninterface SupplyResponse {\n ok: true;\n value: [string, string];\n}\n\n/**\n * Hook for supplying tokens to the Sodax money market.\n *\n * This hook provides functionality to supply tokens to the money market protocol,\n * handling the entire supply process including transaction creation, submission,\n * and cross-chain communication.\n *\n * @param {XToken} spokeToken - The token to supply on the spoke chain. Must be an XToken with valid address and chain information.\n * @param {SpokeProvider} spokeProvider - The spoke provider to use for the supply transaction. Must be a valid SpokeProvider instance.\n *\n * @returns {UseMutationResult<SupplyResponse, Error, string>} A mutation result object with the following properties:\n * - mutateAsync: Function to execute the supply transaction\n * - isPending: Boolean indicating if a transaction is in progress\n * - error: Error object if the last transaction failed, null otherwise\n *\n * @example\n * ```typescript\n * const { mutateAsync: supply, isPending, error } = useSupply(spokeToken);\n * await supply('100');\n * ```\n *\n * @throws {Error} When:\n * - spokeProvider is not available\n */\nexport function useSupply(\n spokeToken: XToken,\n spokeProvider: SpokeProvider | undefined,\n): UseMutationResult<SupplyResponse, Error, string> {\n const { sodax } = useSodaxContext();\n\n return useMutation<SupplyResponse, Error, string>({\n mutationFn: async (amount: string) => {\n if (!spokeProvider) {\n throw new Error('spokeProvider is not found');\n }\n\n const response = await sodax.moneyMarket.supply(\n {\n token: spokeToken.address,\n amount: parseUnits(amount, spokeToken.decimals),\n action: 'supply',\n },\n spokeProvider,\n );\n\n if (!response.ok) {\n throw new Error('Failed to supply tokens');\n }\n\n console.log('Supply transaction submitted:', response);\n return response;\n },\n });\n}\n","import type { SpokeProvider } from '@sodax/sdk';\nimport type { XToken } from '@sodax/types';\nimport { useMutation, type UseMutationResult } from '@tanstack/react-query';\nimport { parseUnits } from 'viem';\nimport { useSodaxContext } from '../shared/useSodaxContext';\n\ninterface WithdrawResponse {\n ok: true;\n value: [string, string];\n}\n\n/**\n * Hook for withdrawing supplied tokens from the Sodax money market.\n *\n * This hook provides functionality to withdraw previously supplied tokens from the money market protocol,\n * handling the entire withdrawal process including transaction creation, submission,\n * and cross-chain communication.\n *\n * @param {XToken} spokeToken - The token to withdraw from the spoke chain. Must be an XToken with valid address and chain information.\n * @param {SpokeProvider} spokeProvider - The spoke provider to use for the withdraw transaction. Must be a valid SpokeProvider instance.\n *\n * @returns {UseMutationResult<WithdrawResponse, Error, string>} A mutation result object with the following properties:\n * - mutateAsync: Function to execute the withdraw transaction\n * - isPending: Boolean indicating if a transaction is in progress\n * @example\n * ```typescript\n * const { mutateAsync: withdraw, isPending, error } = useWithdraw(spokeToken);\n * await withdraw('100');\n * ```\n *\n * @throws {Error} When:\n * - spokeProvider is not available\n * - Transaction execution fails\n */\nexport function useWithdraw(\n spokeToken: XToken,\n spokeProvider: SpokeProvider | undefined,\n): UseMutationResult<WithdrawResponse, Error, string> {\n const { sodax } = useSodaxContext();\n\n return useMutation<WithdrawResponse, Error, string>({\n mutationFn: async (amount: string) => {\n if (!spokeProvider) {\n throw new Error('spokeProvider is not found');\n }\n\n const response = await sodax.moneyMarket.withdraw(\n {\n token: spokeToken.address,\n // vault token on hub chain decimals is 18\n amount: parseUnits(amount, 18),\n action: 'withdraw',\n },\n spokeProvider,\n );\n\n if (!response.ok) {\n throw new Error('Failed to withdraw tokens');\n }\n\n console.log('Withdraw transaction submitted:', response);\n return response;\n },\n });\n}\n","import { getMoneyMarketConfig, WalletAbstractionService } from '@sodax/sdk';\nimport type { HubChainId } from '@sodax/types';\nimport type { ChainId } from '@sodax/types';\nimport { useQuery } from '@tanstack/react-query';\nimport { useHubProvider } from '../provider/useHubProvider';\nimport { useSodaxContext } from '../shared/useSodaxContext';\nimport { useSpokeProvider } from '../provider/useSpokeProvider';\n\nexport function useUserReservesData(spokeChainId: ChainId, address: string | undefined) {\n const { sodax } = useSodaxContext();\n const hubChainId = (sodax.config?.hubProviderConfig?.chainConfig.chain.id ?? 'sonic') as HubChainId;\n const hubProvider = useHubProvider();\n const spokeProvider = useSpokeProvider(spokeChainId);\n\n const { data: userReserves } = useQuery({\n queryKey: ['userReserves', spokeChainId, address],\n queryFn: async () => {\n if (!hubProvider || !spokeProvider || !address) {\n return;\n }\n\n const hubWalletAddress = await WalletAbstractionService.getUserHubWalletAddress(\n address,\n spokeProvider,\n hubProvider,\n );\n\n const moneyMarketConfig = getMoneyMarketConfig(hubChainId);\n const [res] = await sodax.moneyMarket.getUserReservesData(\n hubWalletAddress,\n moneyMarketConfig.uiPoolDataProvider,\n moneyMarketConfig.poolAddressesProvider,\n );\n\n return res;\n },\n enabled: !!spokeChainId && !!hubProvider && !!address,\n refetchInterval: 5000,\n });\n\n return userReserves;\n}\n","import { getMoneyMarketConfig } from '@sodax/sdk';\nimport type { HubChainId } from '@sodax/types';\nimport { useQuery } from '@tanstack/react-query';\nimport { useSodaxContext } from '../shared/useSodaxContext';\n/**\n * Hook for fetching reserves data from the Sodax money market.\n *\n * This hook provides access to the current state of all reserves in the money market protocol,\n * including liquidity, interest rates, and other key metrics. The data is automatically\n * fetched and cached using React Query.\n *\n * @example\n * ```typescript\n * const { data: reservesData, isLoading, error } = useReservesData();\n * ```\n *\n * @returns A React Query result object containing:\n * - data: The reserves data when available\n * - isLoading: Loading state indicator\n * - error: Any error that occurred during data fetching\n */\n\nexport function useReservesData() {\n const { sodax } = useSodaxContext();\n const hubChainId = (sodax.config?.hubProviderConfig?.chainConfig.chain.id ?? 'sonic') as HubChainId;\n\n return useQuery({\n queryKey: ['reservesData'],\n queryFn: async () => {\n const moneyMarketConfig = getMoneyMarketConfig(hubChainId);\n return await sodax.moneyMarket.getReservesData(\n moneyMarketConfig.uiPoolDataProvider,\n moneyMarketConfig.poolAddressesProvider,\n );\n },\n });\n}\n","import { useQuery, type UseQueryResult } from '@tanstack/react-query';\nimport type { XToken } from '@sodax/types';\nimport { useSodaxContext } from '../shared/useSodaxContext';\nimport { parseUnits } from 'viem';\nimport type { MoneyMarketAction, SpokeProvider } from '@sodax/sdk';\n\n/**\n * Hook for checking token allowance for money market operations.\n *\n * This hook verifies if the user has approved enough tokens for a specific money market action\n * (borrow/repay). It automatically queries and tracks the allowance status.\n *\n * @param {XToken} token - The token to check allowance for. Must be an XToken with valid address and chain information.\n * @param {string} amount - The amount to check allowance for, as a decimal string\n * @param {MoneyMarketAction} action - The money market action to check allowance for ('borrow' or 'repay')\n * @param {SpokeProvider} spokeProvider - The spoke provider to use for allowance checks\n *\n * @returns {UseQueryResult<boolean, Error>} A React Query result containing:\n * - data: Boolean indicating if allowance is sufficient\n * - isLoading: Loading state indicator\n * - error: Any error that occurred during the check\n *\n * @example\n * ```typescript\n * const { data: hasAllowed, isLoading } = useMMAllowance(token, \"100\", \"repay\", provider);\n * ```\n */\nexport function useMMAllowance(\n token: XToken,\n amount: string,\n action: MoneyMarketAction,\n spokeProvider: SpokeProvider | undefined,\n): UseQueryResult<boolean, Error> {\n const { sodax } = useSodaxContext();\n\n return useQuery({\n queryKey: ['allowance', token.address, amount, action],\n queryFn: async () => {\n if (!spokeProvider) throw new Error('Spoke provider is required');\n const allowance = await sodax.moneyMarket.isAllowanceValid(\n {\n token: token.address,\n amount: parseUnits(amount, token.decimals),\n action,\n },\n spokeProvider,\n );\n if (allowance.ok) {\n return allowance.value;\n }\n return false;\n },\n enabled: !!spokeProvider,\n });\n}\n","import { useSodaxContext } from '../shared/useSodaxContext';\nimport type { XToken } from '@sodax/types';\nimport { parseUnits } from 'viem';\nimport { useMutation, useQueryClient } from '@tanstack/react-query';\nimport type { MoneyMarketAction, SpokeProvider } from '@sodax/sdk';\n\ninterface UseApproveReturn {\n approve: ({ amount, action }: { amount: string; action: MoneyMarketAction }) => Promise<boolean>;\n isLoading: boolean;\n error: Error | null;\n resetError: () => void;\n}\n\n/**\n * Hook for approving token spending for money market actions\n * @param token The token to approve spending for\n * @param spokeProvider The spoke provider instance for the chain\n * @returns Object containing approve function, loading state, error state and reset function\n * @example\n * ```tsx\n * const { approve, isLoading, error } = useMMApprove(token, spokeProvider);\n *\n * // Approve tokens for supply action\n * await approve({ amount: \"100\", action: \"supply\" });\n * ```\n */\n\nexport function useMMApprove(token: XToken, spokeProvider: SpokeProvider | undefined): UseApproveReturn {\n const { sodax } = useSodaxContext();\n const queryClient = useQueryClient();\n\n const {\n mutateAsync: approve,\n isPending,\n error,\n reset: resetError,\n } = useMutation({\n mutationFn: async ({ amount, action }: { amount: string; action: MoneyMarketAction }) => {\n if (!spokeProvider) {\n throw new Error('Spoke provider not found');\n }\n const allowance = await sodax.moneyMarket.approve(\n {\n token: token.address,\n amount: parseUnits(amount, token.decimals),\n action,\n },\n spokeProvider,\n );\n if (!allowance.ok) {\n throw new Error('Failed to approve tokens');\n }\n return allowance.ok;\n },\n onSuccess: () => {\n // Invalidate allowance query to refetch the new allowance\n queryClient.invalidateQueries({ queryKey: ['allowance', token.address] });\n },\n });\n\n return {\n approve,\n isLoading: isPending,\n error: error,\n resetError,\n };\n}\n","import type { SolverErrorResponse, SolverIntentQuoteRequest, SolverIntentQuoteResponse, Result } from '@sodax/sdk';\nimport { useSodaxContext } from '../shared/useSodaxContext';\nimport { useQuery, type UseQueryResult } from '@tanstack/react-query';\n\n/**\n * Hook for fetching a quote for an intent-based swap.\n *\n * This hook provides real-time quote data for an intent-based swap.\n *\n * @param {SolverIntentQuoteRequest | undefined} payload - The intent quote request parameters. If undefined, the query will be disabled.\n *\n * @returns {UseQueryResult<Result<SolverIntentQuoteResponse, SolverErrorResponse> | undefined>} A query result object containing:\n * - data: The quote result from the solver\n * - isLoading: Boolean indicating if the quote is being fetched\n * - error: Error object if the quote request failed\n * - refetch: Function to manually trigger a quote refresh\n *\n * @example\n * ```typescript\n * const { data: quote, isLoading } = useQuote({\n * token_src: '0x...',\n * token_src_blockchain_id: '1',\n * token_dst: '0x...',\n * token_dst_blockchain_id: '2',\n * amount: '1000000000000000000',\n * quote_type: 'exact_input',\n * });\n *\n * if (isLoading) return <div>Loading quote...</div>;\n * if (quote) {\n * console.log('Quote received:', quote);\n * }\n * ```\n *\n * @remarks\n * - The quote is automatically refreshed every 3 seconds\n * - The query is disabled when payload is undefined\n * - Uses React Query for efficient caching and state management\n */\nexport const useQuote = (\n payload: SolverIntentQuoteRequest | undefined,\n): UseQueryResult<Result<SolverIntentQuoteResponse, SolverErrorResponse> | undefined> => {\n const { sodax } = useSodaxContext();\n return useQuery({\n queryKey: [payload],\n queryFn: async () => {\n if (!payload) {\n return undefined;\n }\n return sodax.solver.getQuote(payload);\n },\n enabled: !!payload,\n refetchInterval: 3000,\n });\n};\n","import { useSodaxContext } from '../shared/useSodaxContext';\nimport type {\n CreateIntentParams,\n SolverExecutionResponse,\n Result,\n IntentErrorCode,\n Intent,\n IntentError,\n SpokeProvider,\n Hex,\n} from '@sodax/sdk';\nimport { useMutation, type UseMutationResult } from '@tanstack/react-query';\n\ntype CreateIntentResult = Result<[SolverExecutionResponse, Intent, Hex], IntentError<IntentErrorCode>>;\n\n/**\n * Hook for creating and submitting an intent order for cross-chain swaps.\n * Uses React Query's useMutation for better state management and caching.\n *\n * @param {SpokeProvider} spokeProvider - The spoke provider to use for the swap\n * @returns {UseMutationResult} Mutation result object containing mutation function and state\n *\n * @example\n * ```typescript\n * const { mutateAsync: createIntent, isPending } = useCreateIntentOrder(spokeProvider);\n *\n * const handleSwap = async () => {\n * const result = await createIntent({\n * token_src: '0x...',\n * token_src_blockchain_id: 'arbitrum',\n * token_dst: '0x...',\n * token_dst_blockchain_id: 'polygon',\n * amount: '1000000000000000000',\n * min_output_amount: '900000000000000000'\n * });\n * };\n * ```\n */\nexport function useCreateIntentOrder(\n spokeProvider: SpokeProvider | undefined,\n): UseMutationResult<CreateIntentResult, Error, CreateIntentParams> {\n const { sodax } = useSodaxContext();\n\n return useMutation<CreateIntentResult, Error, CreateIntentParams>({\n mutationFn: async (params: CreateIntentParams) => {\n if (!spokeProvider) {\n throw new Error('Spoke provider not found');\n }\n return sodax.solver.createAndSubmitIntent(params, spokeProvider);\n },\n });\n}\n","import type { Hex, SolverErrorResponse, SolverIntentStatusResponse, Result } from '@sodax/sdk';\nimport { useQuery, type UseQueryResult } from '@tanstack/react-query';\nimport { useSodaxContext } from '../shared/useSodaxContext';\n\n/**\n * Hook for monitoring the status of an intent-based swap.\n *\n * This hook provides real-time status updates for an intent-based swap transaction.\n *\n * @param {Hex} intent_tx_hash - The transaction hash of the intent order on the hub chain\n *\n * @returns {UseQueryResult<Result<SolverIntentStatusResponse, SolverErrorResponse> | undefined>} A query result object containing:\n * - data: The status result from the solver\n * - isLoading: Boolean indicating if the status is being fetched\n * - error: Error object if the status request failed\n * - refetch: Function to manually trigger a status refresh\n *\n * @example\n * ```typescript\n * const { data: status, isLoading } = useStatus('0x...');\n *\n * if (isLoading) return <div>Loading status...</div>;\n * if (status?.ok) {\n * console.log('Status:', status.value);\n * }\n * ```\n *\n * @remarks\n * - The status is automatically refreshed every 3 seconds\n * - Uses React Query for efficient caching and state management\n */\n\nexport const useStatus = (\n intent_tx_hash: Hex,\n): UseQueryResult<Result<SolverIntentStatusResponse, SolverErrorResponse> | undefined> => {\n const { sodax } = useSodaxContext();\n return useQuery({\n queryKey: [intent_tx_hash],\n queryFn: async () => {\n return sodax.solver.getStatus({ intent_tx_hash });\n },\n refetchInterval: 3000, // 3s\n });\n};\n","import { useQuery, type UseQueryResult } from '@tanstack/react-query';\nimport { useSodaxContext } from '../shared/useSodaxContext';\nimport type { CreateIntentParams, SpokeProvider } from '@sodax/sdk';\n\n/**\n * Hook for checking token allowance for money market operations.\n *\n * This hook verifies if the user has approved enough tokens for a specific money market action\n * (borrow/repay). It automatically queries and tracks the allowance status.\n *\n * @param {CreateIntentParams} params - The parameters for the intent to check allowance for.\n * @param {SpokeProvider} spokeProvider - The spoke provider to use for allowance checks\n *\n * @returns {UseQueryResult<boolean, Error>} A React Query result containing:\n * - data: Boolean indicating if allowance is sufficient\n * - isLoading: Loading state indicator\n * - error: Any error that occurred during the check\n *\n * @example\n * ```typescript\n * const { data: hasAllowed, isLoading } = useMMAllowance(params, spokeProvider);\n * ```\n */\nexport function useSwapAllowance(\n params: CreateIntentParams | undefined,\n spokeProvider: SpokeProvider | undefined,\n): UseQueryResult<boolean, Error> {\n const { sodax } = useSodaxContext();\n\n return useQuery({\n queryKey: ['allowance', params],\n queryFn: async () => {\n if (!spokeProvider || !params) {\n return false;\n }\n const allowance = await sodax.solver.isAllowanceValid(params, spokeProvider);\n if (allowance.ok) {\n return allowance.value;\n }\n return false;\n },\n enabled: !!spokeProvider && !!params,\n });\n}\n","import { useSodaxContext } from '../shared/useSodaxContext';\nimport type { Token } from '@sodax/types';\nimport { type Address, parseUnits } from 'viem';\nimport { useMutation, useQueryClient } from '@tanstack/react-query';\nimport type { SpokeProvider } from '@sodax/sdk';\n\ninterface UseApproveReturn {\n approve: ({ amount }: { amount: string }) => Promise<boolean>;\n isLoading: boolean;\n error: Error | null;\n resetError: () => void;\n}\n\n/**\n * Hook for approving token spending for money market actions\n * @param token The token to approve spending for\n * @param spokeProvider The spoke provider instance for the chain\n * @returns Object containing approve function, loading state, error state and reset function\n * @example\n * ```tsx\n * const { approve, isLoading, error } = useApprove(token, spokeProvider);\n *\n * // Approve tokens for supply action\n * await approve({ amount: \"100\", action: \"supply\" });\n * ```\n */\n\nexport function useSwapApprove(token: Token | undefined, spokeProvider: SpokeProvider | undefined): UseApproveReturn {\n const { sodax } = useSodaxContext();\n const queryClient = useQueryClient();\n\n const {\n mutateAsync: approve,\n isPending,\n error,\n reset: resetError,\n } = useMutation({\n mutationFn: async ({ amount }: { amount: string }) => {\n if (!spokeProvider) {\n throw new Error('Spoke provider not found');\n }\n if (!token) {\n throw new Error('Token not found');\n }\n\n const allowance = await sodax.solver.approve(\n token.address as Address,\n parseUnits(amount, token.decimals),\n spokeProvider,\n );\n if (!allowance.ok) {\n throw new Error('Failed to approve tokens');\n }\n return allowance.ok;\n },\n onSuccess: () => {\n // Invalidate allowance query to refetch the new allowance\n queryClient.invalidateQueries({ queryKey: ['allowance', token?.address] });\n },\n });\n\n return {\n approve,\n isLoading: isPending,\n error: error,\n resetError,\n };\n}\n","import type { ReactNode, ReactElement } from 'react';\nimport { EvmHubProvider, getHubChainConfig, Sodax, type SodaxConfig } from '@sodax/sdk';\nimport { SodaxContext } from '@/contexts';\nimport React, { useMemo } from 'react';\n\ninterface SodaxProviderProps {\n children: ReactNode;\n testnet?: boolean;\n config: SodaxConfig;\n}\n\nexport const SodaxProvider = ({ children, testnet = false, config }: SodaxProviderProps): ReactElement => {\n const sodax = new Sodax(config);\n\n const hubChainId = config?.hubProviderConfig?.chainConfig.chain.id;\n const hubRpcUrl = config?.hubProviderConfig?.hubRpcUrl;\n\n const hubProvider = useMemo(() => {\n if (hubChainId && hubRpcUrl) {\n const hubChainCfg = getHubChainConfig(hubChainId);\n\n return new EvmHubProvider({\n hubRpcUrl: hubRpcUrl,\n chainConfig: hubChainCfg,\n });\n }\n return undefined;\n }, [hubChainId, hubRpcUrl]);\n\n return <SodaxContext.Provider value={{ sodax, testnet, hubProvider }}>{children}</SodaxContext.Provider>;\n};\n","import type { ChainId } from '@sodax/types';\n\nimport { hubAssets } from '@sodax/sdk';\n\nexport const getSpokeTokenAddressByVault = (spokeChainId: ChainId, vault: string) => {\n const tokens = hubAssets[spokeChainId];\n const address = Object.keys(tokens).find(\n tokenAddress => tokens[tokenAddress].vault.toLowerCase() === vault.toLowerCase(),\n );\n\n return address;\n};\n"]}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sodax/dapp-kit",
|
|
3
3
|
"license": "MIT",
|
|
4
|
-
"version": "0.0.1-rc.
|
|
4
|
+
"version": "0.0.1-rc.14",
|
|
5
5
|
"description": "dapp-kit of New World",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
@@ -16,9 +16,9 @@
|
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"viem": "^2.29.2",
|
|
19
|
-
"@sodax/
|
|
20
|
-
"@sodax/
|
|
21
|
-
"@sodax/
|
|
19
|
+
"@sodax/types": "0.0.1-rc.12",
|
|
20
|
+
"@sodax/sdk": "0.0.1-rc.17",
|
|
21
|
+
"@sodax/wallet-sdk": "0.0.1-rc.15"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
24
|
"@types/react": "^19.0.8",
|
|
@@ -1,32 +1,33 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import type { HubChainId
|
|
1
|
+
import { getMoneyMarketConfig, WalletAbstractionService } from '@sodax/sdk';
|
|
2
|
+
import type { HubChainId } from '@sodax/types';
|
|
3
3
|
import type { ChainId } from '@sodax/types';
|
|
4
4
|
import { useQuery } from '@tanstack/react-query';
|
|
5
5
|
import { useHubProvider } from '../provider/useHubProvider';
|
|
6
6
|
import { useSodaxContext } from '../shared/useSodaxContext';
|
|
7
|
+
import { useSpokeProvider } from '../provider/useSpokeProvider';
|
|
7
8
|
|
|
8
9
|
export function useUserReservesData(spokeChainId: ChainId, address: string | undefined) {
|
|
9
10
|
const { sodax } = useSodaxContext();
|
|
10
11
|
const hubChainId = (sodax.config?.hubProviderConfig?.chainConfig.chain.id ?? 'sonic') as HubChainId;
|
|
11
12
|
const hubProvider = useHubProvider();
|
|
13
|
+
const spokeProvider = useSpokeProvider(spokeChainId);
|
|
12
14
|
|
|
13
15
|
const { data: userReserves } = useQuery({
|
|
14
16
|
queryKey: ['userReserves', spokeChainId, address],
|
|
15
17
|
queryFn: async () => {
|
|
16
|
-
if (!hubProvider || !address) {
|
|
18
|
+
if (!hubProvider || !spokeProvider || !address) {
|
|
17
19
|
return;
|
|
18
20
|
}
|
|
19
21
|
|
|
20
|
-
const
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
hubProvider as EvmHubProvider,
|
|
22
|
+
const hubWalletAddress = await WalletAbstractionService.getUserHubWalletAddress(
|
|
23
|
+
address,
|
|
24
|
+
spokeProvider,
|
|
25
|
+
hubProvider,
|
|
25
26
|
);
|
|
26
27
|
|
|
27
28
|
const moneyMarketConfig = getMoneyMarketConfig(hubChainId);
|
|
28
29
|
const [res] = await sodax.moneyMarket.getUserReservesData(
|
|
29
|
-
hubWalletAddress
|
|
30
|
+
hubWalletAddress,
|
|
30
31
|
moneyMarketConfig.uiPoolDataProvider,
|
|
31
32
|
moneyMarketConfig.poolAddressesProvider,
|
|
32
33
|
);
|
|
@@ -14,6 +14,9 @@ import {
|
|
|
14
14
|
type IWalletProvider,
|
|
15
15
|
SolanaSpokeProvider,
|
|
16
16
|
type SolanaChainConfig,
|
|
17
|
+
SONIC_MAINNET_CHAIN_ID,
|
|
18
|
+
SonicSpokeProvider,
|
|
19
|
+
type SonicSpokeChainConfig,
|
|
17
20
|
} from '@sodax/sdk';
|
|
18
21
|
import type {
|
|
19
22
|
IEvmWalletProvider,
|
|
@@ -54,6 +57,12 @@ export function useSpokeProvider(
|
|
|
54
57
|
if (!spokeChainId) return undefined;
|
|
55
58
|
|
|
56
59
|
if (xChainType === 'EVM') {
|
|
60
|
+
if (spokeChainId === SONIC_MAINNET_CHAIN_ID) {
|
|
61
|
+
return new SonicSpokeProvider(
|
|
62
|
+
_walletProvider as IEvmWalletProvider,
|
|
63
|
+
spokeChainConfig[spokeChainId] as SonicSpokeChainConfig,
|
|
64
|
+
);
|
|
65
|
+
}
|
|
57
66
|
return new EvmSpokeProvider(
|
|
58
67
|
_walletProvider as IEvmWalletProvider,
|
|
59
68
|
spokeChainConfig[spokeChainId] as EvmSpokeChainConfig,
|
|
@@ -4,7 +4,6 @@ import { useMutation, type UseMutationResult } from '@tanstack/react-query';
|
|
|
4
4
|
export function useEstimateGas<T extends SpokeProvider = SpokeProvider>(
|
|
5
5
|
spokeProvider: T | undefined,
|
|
6
6
|
): UseMutationResult<GetEstimateGasReturnType<T>, Error, TxReturnType<T, true>> {
|
|
7
|
-
|
|
8
7
|
return useMutation<GetEstimateGasReturnType<T>, Error, TxReturnType<T, true>>({
|
|
9
8
|
mutationFn: async (rawTx: TxReturnType<T, true>) => {
|
|
10
9
|
if (!spokeProvider) {
|
|
@@ -17,4 +16,3 @@ export function useEstimateGas<T extends SpokeProvider = SpokeProvider>(
|
|
|
17
16
|
},
|
|
18
17
|
});
|
|
19
18
|
}
|
|
20
|
-
|
|
@@ -5,16 +5,13 @@ import type {
|
|
|
5
5
|
Result,
|
|
6
6
|
IntentErrorCode,
|
|
7
7
|
Intent,
|
|
8
|
-
PacketData,
|
|
9
8
|
IntentError,
|
|
10
9
|
SpokeProvider,
|
|
10
|
+
Hex,
|
|
11
11
|
} from '@sodax/sdk';
|
|
12
12
|
import { useMutation, type UseMutationResult } from '@tanstack/react-query';
|
|
13
13
|
|
|
14
|
-
type CreateIntentResult = Result<
|
|
15
|
-
[SolverExecutionResponse, Intent, PacketData],
|
|
16
|
-
IntentError<IntentErrorCode>
|
|
17
|
-
>;
|
|
14
|
+
type CreateIntentResult = Result<[SolverExecutionResponse, Intent, Hex], IntentError<IntentErrorCode>>;
|
|
18
15
|
|
|
19
16
|
/**
|
|
20
17
|
* Hook for creating and submitting an intent order for cross-chain swaps.
|