@sodax/dapp-kit 0.0.1-rc.1 → 0.0.1-rc.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/core/index.d.ts.map +1 -1
- package/dist/hooks/provider/useHubProvider.d.ts.map +1 -1
- package/dist/hooks/provider/useSpokeProvider.d.ts.map +1 -1
- package/dist/index.js +9 -5
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +9 -5
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
- package/src/core/index.ts +1 -3
- package/src/hooks/provider/useHubProvider.ts +0 -1
- package/src/hooks/provider/useSpokeProvider.ts +16 -6
package/dist/core/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/core/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,cAAc,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/core/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,cAAc,CAAC;AAIpD,eAAO,MAAM,UAAU,EAAE,MAAM,EAAO,CAAC;AAyBvC,eAAO,MAAM,2BAA2B,iBAAkB,OAAO,SAAS,MAAM,WAU/E,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useHubProvider.d.ts","sourceRoot":"","sources":["../../../src/hooks/provider/useHubProvider.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAsC,MAAM,YAAY,CAAC;AAKhF,wBAAgB,cAAc,IAAI,cAAc,GAAG,SAAS,
|
|
1
|
+
{"version":3,"file":"useHubProvider.d.ts","sourceRoot":"","sources":["../../../src/hooks/provider/useHubProvider.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAsC,MAAM,YAAY,CAAC;AAKhF,wBAAgB,cAAc,IAAI,cAAc,GAAG,SAAS,CAoB3D"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useSpokeProvider.d.ts","sourceRoot":"","sources":["../../../src/hooks/provider/useSpokeProvider.ts"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"useSpokeProvider.d.ts","sourceRoot":"","sources":["../../../src/hooks/provider/useSpokeProvider.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,gBAAgB,EAGhB,gBAAgB,EAEjB,MAAM,YAAY,CAAC;AACpB,OAAO,KAAK,EAA0C,YAAY,EAAE,MAAM,cAAc,CAAC;AAIzF,wBAAgB,gBAAgB,CAAC,YAAY,EAAE,YAAY,mDAqB1D"}
|
package/dist/index.js
CHANGED
|
@@ -5,7 +5,6 @@ var reactQuery = require('@tanstack/react-query');
|
|
|
5
5
|
var sdk = require('@sodax/sdk');
|
|
6
6
|
var walletSdk = require('@sodax/wallet-sdk');
|
|
7
7
|
var viem = require('viem');
|
|
8
|
-
var types = require('@sodax/types');
|
|
9
8
|
|
|
10
9
|
function _interopDefault (e) { return e && e.__esModule ? e : { default: e }; }
|
|
11
10
|
|
|
@@ -26,10 +25,16 @@ function useSpokeProvider(spokeChainId) {
|
|
|
26
25
|
const spokeProvider = React.useMemo(() => {
|
|
27
26
|
if (!walletProvider) return void 0;
|
|
28
27
|
if (xChainType === "EVM") {
|
|
29
|
-
return new sdk.EvmSpokeProvider(
|
|
28
|
+
return new sdk.EvmSpokeProvider(
|
|
29
|
+
walletProvider,
|
|
30
|
+
sdk.spokeChainConfig[spokeChainId]
|
|
31
|
+
);
|
|
30
32
|
}
|
|
31
33
|
if (xChainType === "SUI") {
|
|
32
|
-
return new sdk.SuiSpokeProvider(
|
|
34
|
+
return new sdk.SuiSpokeProvider(
|
|
35
|
+
sdk.spokeChainConfig[spokeChainId],
|
|
36
|
+
walletProvider
|
|
37
|
+
);
|
|
33
38
|
}
|
|
34
39
|
return void 0;
|
|
35
40
|
}, [walletProvider, xChainType, spokeChainId]);
|
|
@@ -218,8 +223,7 @@ Object.keys(sdk.hubAssets).forEach((xChainId) => {
|
|
|
218
223
|
address: tokenAddress
|
|
219
224
|
});
|
|
220
225
|
allXTokens.push({
|
|
221
|
-
|
|
222
|
-
xChainId: types.CHAIN_IDS.includes(xChainId) ? "sonic" : "sonic-blaze",
|
|
226
|
+
xChainId: "sonic",
|
|
223
227
|
symbol: token.symbol,
|
|
224
228
|
name: token.name,
|
|
225
229
|
decimals: token.decimal,
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/contexts/index.ts","../src/hooks/shared/useSodaxContext.ts","../src/hooks/provider/useSpokeProvider.ts","../src/hooks/shared/useAllowance.ts","../src/hooks/shared/useApprove.ts","../src/hooks/provider/useHubProvider.ts","../src/hooks/mm/useBorrow.ts","../src/hooks/mm/useRepay.ts","../src/hooks/mm/useSupply.ts","../src/hooks/mm/useWithdraw.ts","../src/core/index.ts","../src/hooks/mm/useHubWalletAddress.ts","../src/hooks/mm/useUserReservesData.ts","../src/hooks/swap/useQuote.ts","../src/hooks/swap/useCreateIntentOrder.ts","../src/hooks/swap/useStatus.ts","../src/providers/SodaxProvider.tsx"],"names":["createContext","useContext","getXChainType","useWalletProvider","useMemo","EvmSpokeProvider","spokeChainConfig","SuiSpokeProvider","useQuery","parseUnits","useQueryClient","useMutation","getHubChainConfig","EvmHubProvider","hubAssets","CHAIN_IDS","EvmWalletAbstraction","useXAccount","getMoneyMarketConfig","Sodax","React"],"mappings":"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","file":"index.js","sourcesContent":["import { createContext } from 'react';\nimport type { Sodax } from '@sodax/sdk';\n\nexport interface SodaxContextType {\n sodax: Sodax;\n testnet: boolean;\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 { EvmSpokeProvider, spokeChainConfig, SuiSpokeProvider } from '@sodax/sdk';\nimport type { SpokeChainId } from '@sodax/types';\nimport { getXChainType, useWalletProvider } from '@sodax/wallet-sdk';\nimport { useMemo } from 'react';\n\nexport function useSpokeProvider(spokeChainId: SpokeChainId) {\n const xChainType = getXChainType(spokeChainId);\n const walletProvider = useWalletProvider(spokeChainId);\n const spokeProvider = useMemo(() => {\n if (!walletProvider) return undefined;\n if (xChainType === 'EVM') {\n // @ts-ignore\n return new EvmSpokeProvider(walletProvider, spokeChainConfig[spokeChainId]);\n }\n if (xChainType === 'SUI') {\n // @ts-ignore\n return new SuiSpokeProvider(spokeChainConfig[spokeChainId], walletProvider);\n }\n return undefined;\n }, [walletProvider, xChainType, spokeChainId]);\n\n return spokeProvider;\n}\n","import { useQuery } from '@tanstack/react-query';\nimport type { SpokeChainId, XToken } from '@sodax/types';\nimport { useSodaxContext } from '../shared/useSodaxContext';\nimport { useSpokeProvider } from '../provider/useSpokeProvider';\nimport { parseUnits } from 'viem';\n\nexport function useAllowance(token: XToken, amount: string) {\n const { sodax } = useSodaxContext();\n const spokeProvider = useSpokeProvider(token.xChainId as SpokeChainId);\n\n return useQuery({\n queryKey: ['allowance', token.address, amount],\n queryFn: async () => {\n if (!spokeProvider) {\n return false;\n }\n const allowance = await sodax.moneyMarket.isAllowanceValid(\n {\n token: token.address,\n amount: parseUnits(amount, token.decimals),\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 { useSpokeProvider } from '../provider/useSpokeProvider';\nimport type { SpokeChainId, XToken } from '@sodax/types';\nimport { parseUnits } from 'viem';\nimport { useMutation, useQueryClient } from '@tanstack/react-query';\nimport type { Address } from '@sodax/sdk';\n\ninterface UseApproveReturn {\n approve: (amount: string) => Promise<boolean>;\n isLoading: boolean;\n error: Error | null;\n resetError: () => void;\n}\n\nexport function useApprove(token: XToken): UseApproveReturn {\n const { sodax } = useSodaxContext();\n const spokeProvider = useSpokeProvider(token.xChainId as SpokeChainId);\n const queryClient = useQueryClient();\n\n const {\n mutateAsync: approve,\n isPending,\n error,\n reset: resetError,\n } = useMutation({\n mutationFn: async (amount: string) => {\n if (!spokeProvider) {\n throw new Error('Spoke provider not found');\n }\n const allowance = await sodax.moneyMarket.approve(\n token.address as Address,\n parseUnits(amount, token.decimals),\n spokeProvider.chainConfig.addresses.assetManager as Address,\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 as Error | null,\n resetError,\n };\n}\n","import { EvmHubProvider, getHubChainConfig, type HubChainId } from '@sodax/sdk';\nimport { getXChainType } from '@sodax/wallet-sdk';\nimport { useMemo } from 'react';\nimport { useSodaxContext } from '../shared/useSodaxContext';\n\nexport function useHubProvider(): EvmHubProvider | undefined {\n const { sodax } = useSodaxContext();\n const hubChainId = sodax.config?.hubProviderConfig?.chainConfig.chain.id;\n const hubRpcUrl = sodax.config?.hubProviderConfig?.hubRpcUrl;\n const xChainType = getXChainType(hubChainId);\n const hubProvider = useMemo(() => {\n if (xChainType === 'EVM' && hubChainId && hubRpcUrl) {\n // @ts-ignore\n const hubChainCfg = getHubChainConfig(hubChainId);\n\n if (!hubChainCfg) return undefined;\n\n return new EvmHubProvider({\n hubRpcUrl: hubRpcUrl,\n chainConfig: hubChainCfg,\n });\n }\n return undefined;\n }, [xChainType, hubChainId, hubRpcUrl]);\n\n return hubProvider;\n}\n","import type { ChainId, XToken } from '@sodax/types';\nimport { useMutation, type UseMutationResult } from '@tanstack/react-query';\nimport { parseUnits } from 'viem';\nimport { useSpokeProvider } from '../provider/useSpokeProvider';\nimport { useSodaxContext } from '../shared/useSodaxContext';\nimport type { SpokeChainId } from '@sodax/sdk';\ninterface BorrowResponse {\n ok: true;\n value: [`0x${string}`, `0x${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 * @example\n * ```typescript\n * const { mutateAsync: borrow, isPending, error } = useBorrow(hubToken, spokeChainId);\n * await borrow('100');\n * ```\n *\n * @throws {Error} When:\n * - spokeProvider is not available\n * - Transaction execution fails\n */\nexport function useBorrow(hubToken: XToken, spokeChainId: ChainId): UseMutationResult<BorrowResponse, Error, string> {\n const { sodax } = useSodaxContext();\n const spokeProvider = useSpokeProvider(spokeChainId as SpokeChainId);\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.borrowAndSubmit(\n {\n token: hubToken.address,\n amount: parseUnits(amount, hubToken.decimals),\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 { SpokeChainId } from '@sodax/sdk';\nimport type { ChainId, XToken } from '@sodax/types';\nimport { useMutation, type UseMutationResult } from '@tanstack/react-query';\nimport { parseUnits } from 'viem';\nimport { useSpokeProvider } from '../provider/useSpokeProvider';\nimport { useSodaxContext } from '../shared/useSodaxContext';\n\ninterface RepayResponse {\n ok: true;\n value: [`0x${string}`, `0x${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 * @example\n * ```typescript\n * const { mutateAsync: repay, isPending, error } = useRepay(hubToken, spokeChainId);\n * await repay('100');\n * ```\n *\n * @throws {Error} When:\n * - spokeProvider is not available\n * - Transaction execution fails\n */\nexport function useRepay(hubToken: XToken, spokeChainId: ChainId): UseMutationResult<RepayResponse, Error, string> {\n const { sodax } = useSodaxContext();\n const spokeProvider = useSpokeProvider(spokeChainId as SpokeChainId);\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.repayAndSubmit(\n {\n token: hubToken.address,\n amount: parseUnits(amount, hubToken.decimals),\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 { SpokeChainId } from '@sodax/sdk';\nimport type { XToken } from '@sodax/types';\nimport { useMutation, type UseMutationResult } from '@tanstack/react-query';\nimport { parseUnits } from 'viem';\nimport { useSpokeProvider } from '../provider/useSpokeProvider';\nimport { useSodaxContext } from '../shared/useSodaxContext';\n\ninterface SupplyResponse {\n ok: true;\n value: [`0x${string}`, `0x${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 *\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(spokeToken: XToken): UseMutationResult<SupplyResponse, Error, string> {\n const { sodax } = useSodaxContext();\n const spokeProvider = useSpokeProvider(spokeToken.xChainId as SpokeChainId);\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.supplyAndSubmit(\n {\n token: spokeToken.address,\n amount: parseUnits(amount, spokeToken.decimals),\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 { SpokeChainId } from '@sodax/sdk';\nimport type { ChainId, XToken } from '@sodax/types';\nimport { useMutation, type UseMutationResult } from '@tanstack/react-query';\nimport { parseUnits } from 'viem';\nimport { useSpokeProvider } from '../provider/useSpokeProvider';\nimport { useSodaxContext } from '../shared/useSodaxContext';\n\ninterface WithdrawResponse {\n ok: true;\n value: [`0x${string}`, `0x${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 * @example\n * ```typescript\n * const { mutateAsync: withdraw, isPending, error } = useWithdraw(hubToken, spokeChainId);\n * await withdraw('100');\n * ```\n *\n * @throws {Error} When:\n * - spokeProvider is not available\n * - Transaction execution fails\n */\nexport function useWithdraw(\n hubToken: XToken,\n spokeChainId: ChainId,\n): UseMutationResult<WithdrawResponse, Error, string> {\n const { sodax } = useSodaxContext();\n const spokeProvider = useSpokeProvider(spokeChainId as SpokeChainId);\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.withdrawAndSubmit(\n {\n token: hubToken.address,\n amount: parseUnits(amount, hubToken.decimals),\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 type { XToken, ChainId } from '@sodax/types';\n\nimport { hubAssets } from '@sodax/sdk';\nimport { CHAIN_IDS } from '@sodax/types';\n\nexport const allXTokens: XToken[] = [];\n\nObject.keys(hubAssets).forEach(xChainId => {\n const tokens = hubAssets[xChainId];\n\n Object.keys(tokens).forEach(tokenAddress => {\n const token = tokens[tokenAddress];\n allXTokens.push({\n xChainId: xChainId as ChainId,\n symbol: token.symbol,\n name: token.name,\n decimals: token.decimal,\n address: tokenAddress,\n });\n\n allXTokens.push({\n // @ts-ignore\n xChainId: CHAIN_IDS.includes(xChainId as ChainId) ? 'sonic' : 'sonic-blaze',\n symbol: token.symbol,\n name: token.name,\n decimals: token.decimal,\n address: token.vault,\n });\n });\n});\n\nexport const getSpokeTokenAddressByVault = (spokeChainId: ChainId, vault: string) => {\n const tokens = hubAssets[spokeChainId];\n\n const token = Object.keys(tokens).find(tokenAddress => tokens[tokenAddress].vault === vault);\n\n if (!token) {\n throw new Error('Token not found');\n }\n\n return token;\n};\n","import { type EvmHubProvider, EvmWalletAbstraction, type SpokeChainId } from '@sodax/sdk';\nimport { useQuery, type UseQueryResult } from '@tanstack/react-query';\n\n/**\n * Hook for retrieving the hub wallet address for a given spoke chain and address.\n *\n * This hook fetches the hub wallet address associated with a user's address on a specific spoke chain.\n * It uses the EvmWalletAbstraction to query the hub wallet address from the hub provider.\n *\n * @param spokeChainId - The chain ID of the spoke chain\n * @param address - The user's address on the spoke chain\n * @param hubProvider - The hub provider instance\n *\n * @returns {UseQueryResult<string | null>} A query result object containing:\n * - data: The hub wallet address or null if not found\n * - isLoading: Boolean indicating if the query is in progress\n * - error: Error object if the query failed, null otherwise\n *\n * @example\n * ```typescript\n * const { data: hubWalletAddress, isLoading, error } = useHubWalletAddress(spokeChainId, address, hubProvider);\n * ```\n */\n\nexport function useHubWalletAddress(\n spokeChainId: SpokeChainId,\n address: string | undefined,\n hubProvider: EvmHubProvider,\n): UseQueryResult<string | null> {\n return useQuery({\n queryKey: ['hubWallet', spokeChainId, address],\n queryFn: async () => {\n if (!address) return null;\n\n try {\n const hubWalletAddress = await EvmWalletAbstraction.getUserHubWalletAddress(\n spokeChainId,\n address as `0x${string}`,\n hubProvider,\n );\n return hubWalletAddress;\n } catch (error) {\n console.log('error', error);\n return null;\n }\n },\n enabled: !!address && !!hubProvider,\n });\n}\n","import { allXTokens } from '@/core';\nimport { getMoneyMarketConfig, type EvmHubProvider } from '@sodax/sdk';\nimport type { HubChainId, SpokeChainId } from '@sodax/types';\nimport { useXAccount, useWalletProvider } from '@sodax/wallet-sdk';\nimport type { ChainId } from '@sodax/types';\nimport { useQuery } from '@tanstack/react-query';\nimport { useHubProvider } from '../provider/useHubProvider';\nimport { useHubWalletAddress } from './useHubWalletAddress';\nimport { useSodaxContext } from '../shared/useSodaxContext';\n\nexport function useUserReservesData(spokeChainId: ChainId) {\n const { sodax } = useSodaxContext();\n const hubChainId = (sodax.config?.hubProviderConfig?.chainConfig.chain.id ?? 'sonic') as HubChainId;\n const hubWalletProvider = useWalletProvider(hubChainId);\n const hubProvider = useHubProvider();\n const { address } = useXAccount(spokeChainId);\n const { data: hubWalletAddress } = useHubWalletAddress(\n spokeChainId as SpokeChainId,\n address,\n hubProvider as EvmHubProvider,\n );\n\n const { data: userReserves } = useQuery({\n queryKey: ['userReserves', hubWalletAddress],\n queryFn: async () => {\n if (!hubWalletProvider) {\n return;\n }\n\n if (!hubWalletAddress) {\n return;\n }\n\n const moneyMarketConfig = getMoneyMarketConfig(hubChainId);\n try {\n const [res] = await sodax.moneyMarket.getUserReservesData(\n hubWalletAddress as `0x${string}`,\n moneyMarketConfig.uiPoolDataProvider,\n moneyMarketConfig.poolAddressesProvider,\n );\n\n return res?.map(r => {\n return {\n ...r,\n token: allXTokens.find(t => t.address === r.underlyingAsset),\n };\n });\n } catch (error) {\n console.log('error', error);\n return;\n }\n },\n enabled: !!address && !!hubWalletProvider && !!hubWalletAddress,\n refetchInterval: 5000,\n });\n\n return userReserves;\n}\n","import type { IntentErrorResponse, IntentQuoteRequest, IntentQuoteResponse, 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 {IntentQuoteRequest | undefined} payload - The intent quote request parameters. If undefined, the query will be disabled.\n *\n * @returns {UseQueryResult<Result<IntentQuoteResponse, IntentErrorResponse> | 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: IntentQuoteRequest | undefined,\n): UseQueryResult<Result<IntentQuoteResponse, IntentErrorResponse> | 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 SpokeChainId,\n IntentExecutionResponse,\n Result,\n IntentSubmitErrorCode,\n Intent,\n PacketData,\n IntentSubmitError,\n} from '@sodax/sdk';\nimport { useSpokeProvider } from '../provider/useSpokeProvider';\nimport { useMutation, type UseMutationResult } from '@tanstack/react-query';\n\ntype CreateIntentResult = Result<\n [IntentExecutionResponse, Intent, PacketData],\n IntentSubmitError<IntentSubmitErrorCode>\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 {SpokeChainId} chainId - The source chain ID where the swap will originate\n * @returns {UseMutationResult} Mutation result object containing mutation function and state\n *\n * @example\n * ```typescript\n * const { mutateAsync: createIntent, isPending } = useCreateIntentOrder('0xa4b1.arbitrum');\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 chainId: SpokeChainId,\n): UseMutationResult<CreateIntentResult, Error, CreateIntentParams> {\n const { sodax } = useSodaxContext();\n const spokeProvider = useSpokeProvider(chainId);\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, IntentErrorResponse, IntentStatusResponse, 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<IntentStatusResponse, IntentErrorResponse> | 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<IntentStatusResponse, IntentErrorResponse> | 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 type { ReactNode, ReactElement } from 'react';\nimport { Sodax, type SodaxConfig } from '@sodax/sdk';\nimport { SodaxContext } from '@/contexts';\nimport React 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 return <SodaxContext.Provider value={{ sodax, testnet }}>{children}</SodaxContext.Provider>;\n};\n"]}
|
|
1
|
+
{"version":3,"sources":["../src/contexts/index.ts","../src/hooks/shared/useSodaxContext.ts","../src/hooks/provider/useSpokeProvider.ts","../src/hooks/shared/useAllowance.ts","../src/hooks/shared/useApprove.ts","../src/hooks/provider/useHubProvider.ts","../src/hooks/mm/useBorrow.ts","../src/hooks/mm/useRepay.ts","../src/hooks/mm/useSupply.ts","../src/hooks/mm/useWithdraw.ts","../src/core/index.ts","../src/hooks/mm/useHubWalletAddress.ts","../src/hooks/mm/useUserReservesData.ts","../src/hooks/swap/useQuote.ts","../src/hooks/swap/useCreateIntentOrder.ts","../src/hooks/swap/useStatus.ts","../src/providers/SodaxProvider.tsx"],"names":["createContext","useContext","getXChainType","useWalletProvider","useMemo","EvmSpokeProvider","spokeChainConfig","SuiSpokeProvider","useQuery","parseUnits","useQueryClient","useMutation","getHubChainConfig","EvmHubProvider","hubAssets","EvmWalletAbstraction","useXAccount","getMoneyMarketConfig","Sodax","React"],"mappings":"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","file":"index.js","sourcesContent":["import { createContext } from 'react';\nimport type { Sodax } from '@sodax/sdk';\n\nexport interface SodaxContextType {\n sodax: Sodax;\n testnet: boolean;\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 {\n EvmSpokeProvider,\n spokeChainConfig,\n type SuiSpokeChainConfig,\n SuiSpokeProvider,\n type EvmSpokeChainConfig,\n} from '@sodax/sdk';\nimport type { IEvmWalletProvider, ISuiWalletProvider, SpokeChainId } from '@sodax/types';\nimport { getXChainType, useWalletProvider } from '@sodax/wallet-sdk';\nimport { useMemo } from 'react';\n\nexport function useSpokeProvider(spokeChainId: SpokeChainId) {\n const xChainType = getXChainType(spokeChainId);\n const walletProvider = useWalletProvider(spokeChainId);\n const spokeProvider = useMemo(() => {\n if (!walletProvider) return undefined;\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 return undefined;\n }, [walletProvider, xChainType, spokeChainId]);\n\n return spokeProvider;\n}\n","import { useQuery } from '@tanstack/react-query';\nimport type { SpokeChainId, XToken } from '@sodax/types';\nimport { useSodaxContext } from '../shared/useSodaxContext';\nimport { useSpokeProvider } from '../provider/useSpokeProvider';\nimport { parseUnits } from 'viem';\n\nexport function useAllowance(token: XToken, amount: string) {\n const { sodax } = useSodaxContext();\n const spokeProvider = useSpokeProvider(token.xChainId as SpokeChainId);\n\n return useQuery({\n queryKey: ['allowance', token.address, amount],\n queryFn: async () => {\n if (!spokeProvider) {\n return false;\n }\n const allowance = await sodax.moneyMarket.isAllowanceValid(\n {\n token: token.address,\n amount: parseUnits(amount, token.decimals),\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 { useSpokeProvider } from '../provider/useSpokeProvider';\nimport type { SpokeChainId, XToken } from '@sodax/types';\nimport { parseUnits } from 'viem';\nimport { useMutation, useQueryClient } from '@tanstack/react-query';\nimport type { Address } from '@sodax/sdk';\n\ninterface UseApproveReturn {\n approve: (amount: string) => Promise<boolean>;\n isLoading: boolean;\n error: Error | null;\n resetError: () => void;\n}\n\nexport function useApprove(token: XToken): UseApproveReturn {\n const { sodax } = useSodaxContext();\n const spokeProvider = useSpokeProvider(token.xChainId as SpokeChainId);\n const queryClient = useQueryClient();\n\n const {\n mutateAsync: approve,\n isPending,\n error,\n reset: resetError,\n } = useMutation({\n mutationFn: async (amount: string) => {\n if (!spokeProvider) {\n throw new Error('Spoke provider not found');\n }\n const allowance = await sodax.moneyMarket.approve(\n token.address as Address,\n parseUnits(amount, token.decimals),\n spokeProvider.chainConfig.addresses.assetManager as Address,\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 as Error | null,\n resetError,\n };\n}\n","import { EvmHubProvider, getHubChainConfig, type HubChainId } from '@sodax/sdk';\nimport { getXChainType } from '@sodax/wallet-sdk';\nimport { useMemo } from 'react';\nimport { useSodaxContext } from '../shared/useSodaxContext';\n\nexport function useHubProvider(): EvmHubProvider | undefined {\n const { sodax } = useSodaxContext();\n const hubChainId = sodax.config?.hubProviderConfig?.chainConfig.chain.id;\n const hubRpcUrl = sodax.config?.hubProviderConfig?.hubRpcUrl;\n const xChainType = getXChainType(hubChainId);\n const hubProvider = useMemo(() => {\n if (xChainType === 'EVM' && hubChainId && hubRpcUrl) {\n const hubChainCfg = getHubChainConfig(hubChainId);\n\n if (!hubChainCfg) return undefined;\n\n return new EvmHubProvider({\n hubRpcUrl: hubRpcUrl,\n chainConfig: hubChainCfg,\n });\n }\n return undefined;\n }, [xChainType, hubChainId, hubRpcUrl]);\n\n return hubProvider;\n}\n","import type { ChainId, XToken } from '@sodax/types';\nimport { useMutation, type UseMutationResult } from '@tanstack/react-query';\nimport { parseUnits } from 'viem';\nimport { useSpokeProvider } from '../provider/useSpokeProvider';\nimport { useSodaxContext } from '../shared/useSodaxContext';\nimport type { SpokeChainId } from '@sodax/sdk';\ninterface BorrowResponse {\n ok: true;\n value: [`0x${string}`, `0x${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 * @example\n * ```typescript\n * const { mutateAsync: borrow, isPending, error } = useBorrow(hubToken, spokeChainId);\n * await borrow('100');\n * ```\n *\n * @throws {Error} When:\n * - spokeProvider is not available\n * - Transaction execution fails\n */\nexport function useBorrow(hubToken: XToken, spokeChainId: ChainId): UseMutationResult<BorrowResponse, Error, string> {\n const { sodax } = useSodaxContext();\n const spokeProvider = useSpokeProvider(spokeChainId as SpokeChainId);\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.borrowAndSubmit(\n {\n token: hubToken.address,\n amount: parseUnits(amount, hubToken.decimals),\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 { SpokeChainId } from '@sodax/sdk';\nimport type { ChainId, XToken } from '@sodax/types';\nimport { useMutation, type UseMutationResult } from '@tanstack/react-query';\nimport { parseUnits } from 'viem';\nimport { useSpokeProvider } from '../provider/useSpokeProvider';\nimport { useSodaxContext } from '../shared/useSodaxContext';\n\ninterface RepayResponse {\n ok: true;\n value: [`0x${string}`, `0x${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 * @example\n * ```typescript\n * const { mutateAsync: repay, isPending, error } = useRepay(hubToken, spokeChainId);\n * await repay('100');\n * ```\n *\n * @throws {Error} When:\n * - spokeProvider is not available\n * - Transaction execution fails\n */\nexport function useRepay(hubToken: XToken, spokeChainId: ChainId): UseMutationResult<RepayResponse, Error, string> {\n const { sodax } = useSodaxContext();\n const spokeProvider = useSpokeProvider(spokeChainId as SpokeChainId);\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.repayAndSubmit(\n {\n token: hubToken.address,\n amount: parseUnits(amount, hubToken.decimals),\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 { SpokeChainId } from '@sodax/sdk';\nimport type { XToken } from '@sodax/types';\nimport { useMutation, type UseMutationResult } from '@tanstack/react-query';\nimport { parseUnits } from 'viem';\nimport { useSpokeProvider } from '../provider/useSpokeProvider';\nimport { useSodaxContext } from '../shared/useSodaxContext';\n\ninterface SupplyResponse {\n ok: true;\n value: [`0x${string}`, `0x${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 *\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(spokeToken: XToken): UseMutationResult<SupplyResponse, Error, string> {\n const { sodax } = useSodaxContext();\n const spokeProvider = useSpokeProvider(spokeToken.xChainId as SpokeChainId);\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.supplyAndSubmit(\n {\n token: spokeToken.address,\n amount: parseUnits(amount, spokeToken.decimals),\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 { SpokeChainId } from '@sodax/sdk';\nimport type { ChainId, XToken } from '@sodax/types';\nimport { useMutation, type UseMutationResult } from '@tanstack/react-query';\nimport { parseUnits } from 'viem';\nimport { useSpokeProvider } from '../provider/useSpokeProvider';\nimport { useSodaxContext } from '../shared/useSodaxContext';\n\ninterface WithdrawResponse {\n ok: true;\n value: [`0x${string}`, `0x${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 * @example\n * ```typescript\n * const { mutateAsync: withdraw, isPending, error } = useWithdraw(hubToken, spokeChainId);\n * await withdraw('100');\n * ```\n *\n * @throws {Error} When:\n * - spokeProvider is not available\n * - Transaction execution fails\n */\nexport function useWithdraw(\n hubToken: XToken,\n spokeChainId: ChainId,\n): UseMutationResult<WithdrawResponse, Error, string> {\n const { sodax } = useSodaxContext();\n const spokeProvider = useSpokeProvider(spokeChainId as SpokeChainId);\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.withdrawAndSubmit(\n {\n token: hubToken.address,\n amount: parseUnits(amount, hubToken.decimals),\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 type { XToken, ChainId } from '@sodax/types';\n\nimport { hubAssets } from '@sodax/sdk';\n\nexport const allXTokens: XToken[] = [];\n\nObject.keys(hubAssets).forEach(xChainId => {\n const tokens = hubAssets[xChainId];\n\n Object.keys(tokens).forEach(tokenAddress => {\n const token = tokens[tokenAddress];\n allXTokens.push({\n xChainId: xChainId as ChainId,\n symbol: token.symbol,\n name: token.name,\n decimals: token.decimal,\n address: tokenAddress,\n });\n\n allXTokens.push({\n xChainId: 'sonic',\n symbol: token.symbol,\n name: token.name,\n decimals: token.decimal,\n address: token.vault,\n });\n });\n});\n\nexport const getSpokeTokenAddressByVault = (spokeChainId: ChainId, vault: string) => {\n const tokens = hubAssets[spokeChainId];\n\n const token = Object.keys(tokens).find(tokenAddress => tokens[tokenAddress].vault === vault);\n\n if (!token) {\n throw new Error('Token not found');\n }\n\n return token;\n};\n","import { type EvmHubProvider, EvmWalletAbstraction, type SpokeChainId } from '@sodax/sdk';\nimport { useQuery, type UseQueryResult } from '@tanstack/react-query';\n\n/**\n * Hook for retrieving the hub wallet address for a given spoke chain and address.\n *\n * This hook fetches the hub wallet address associated with a user's address on a specific spoke chain.\n * It uses the EvmWalletAbstraction to query the hub wallet address from the hub provider.\n *\n * @param spokeChainId - The chain ID of the spoke chain\n * @param address - The user's address on the spoke chain\n * @param hubProvider - The hub provider instance\n *\n * @returns {UseQueryResult<string | null>} A query result object containing:\n * - data: The hub wallet address or null if not found\n * - isLoading: Boolean indicating if the query is in progress\n * - error: Error object if the query failed, null otherwise\n *\n * @example\n * ```typescript\n * const { data: hubWalletAddress, isLoading, error } = useHubWalletAddress(spokeChainId, address, hubProvider);\n * ```\n */\n\nexport function useHubWalletAddress(\n spokeChainId: SpokeChainId,\n address: string | undefined,\n hubProvider: EvmHubProvider,\n): UseQueryResult<string | null> {\n return useQuery({\n queryKey: ['hubWallet', spokeChainId, address],\n queryFn: async () => {\n if (!address) return null;\n\n try {\n const hubWalletAddress = await EvmWalletAbstraction.getUserHubWalletAddress(\n spokeChainId,\n address as `0x${string}`,\n hubProvider,\n );\n return hubWalletAddress;\n } catch (error) {\n console.log('error', error);\n return null;\n }\n },\n enabled: !!address && !!hubProvider,\n });\n}\n","import { allXTokens } from '@/core';\nimport { getMoneyMarketConfig, type EvmHubProvider } from '@sodax/sdk';\nimport type { HubChainId, SpokeChainId } from '@sodax/types';\nimport { useXAccount, useWalletProvider } from '@sodax/wallet-sdk';\nimport type { ChainId } from '@sodax/types';\nimport { useQuery } from '@tanstack/react-query';\nimport { useHubProvider } from '../provider/useHubProvider';\nimport { useHubWalletAddress } from './useHubWalletAddress';\nimport { useSodaxContext } from '../shared/useSodaxContext';\n\nexport function useUserReservesData(spokeChainId: ChainId) {\n const { sodax } = useSodaxContext();\n const hubChainId = (sodax.config?.hubProviderConfig?.chainConfig.chain.id ?? 'sonic') as HubChainId;\n const hubWalletProvider = useWalletProvider(hubChainId);\n const hubProvider = useHubProvider();\n const { address } = useXAccount(spokeChainId);\n const { data: hubWalletAddress } = useHubWalletAddress(\n spokeChainId as SpokeChainId,\n address,\n hubProvider as EvmHubProvider,\n );\n\n const { data: userReserves } = useQuery({\n queryKey: ['userReserves', hubWalletAddress],\n queryFn: async () => {\n if (!hubWalletProvider) {\n return;\n }\n\n if (!hubWalletAddress) {\n return;\n }\n\n const moneyMarketConfig = getMoneyMarketConfig(hubChainId);\n try {\n const [res] = await sodax.moneyMarket.getUserReservesData(\n hubWalletAddress as `0x${string}`,\n moneyMarketConfig.uiPoolDataProvider,\n moneyMarketConfig.poolAddressesProvider,\n );\n\n return res?.map(r => {\n return {\n ...r,\n token: allXTokens.find(t => t.address === r.underlyingAsset),\n };\n });\n } catch (error) {\n console.log('error', error);\n return;\n }\n },\n enabled: !!address && !!hubWalletProvider && !!hubWalletAddress,\n refetchInterval: 5000,\n });\n\n return userReserves;\n}\n","import type { IntentErrorResponse, IntentQuoteRequest, IntentQuoteResponse, 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 {IntentQuoteRequest | undefined} payload - The intent quote request parameters. If undefined, the query will be disabled.\n *\n * @returns {UseQueryResult<Result<IntentQuoteResponse, IntentErrorResponse> | 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: IntentQuoteRequest | undefined,\n): UseQueryResult<Result<IntentQuoteResponse, IntentErrorResponse> | 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 SpokeChainId,\n IntentExecutionResponse,\n Result,\n IntentSubmitErrorCode,\n Intent,\n PacketData,\n IntentSubmitError,\n} from '@sodax/sdk';\nimport { useSpokeProvider } from '../provider/useSpokeProvider';\nimport { useMutation, type UseMutationResult } from '@tanstack/react-query';\n\ntype CreateIntentResult = Result<\n [IntentExecutionResponse, Intent, PacketData],\n IntentSubmitError<IntentSubmitErrorCode>\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 {SpokeChainId} chainId - The source chain ID where the swap will originate\n * @returns {UseMutationResult} Mutation result object containing mutation function and state\n *\n * @example\n * ```typescript\n * const { mutateAsync: createIntent, isPending } = useCreateIntentOrder('0xa4b1.arbitrum');\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 chainId: SpokeChainId,\n): UseMutationResult<CreateIntentResult, Error, CreateIntentParams> {\n const { sodax } = useSodaxContext();\n const spokeProvider = useSpokeProvider(chainId);\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, IntentErrorResponse, IntentStatusResponse, 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<IntentStatusResponse, IntentErrorResponse> | 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<IntentStatusResponse, IntentErrorResponse> | 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 type { ReactNode, ReactElement } from 'react';\nimport { Sodax, type SodaxConfig } from '@sodax/sdk';\nimport { SodaxContext } from '@/contexts';\nimport React 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 return <SodaxContext.Provider value={{ sodax, testnet }}>{children}</SodaxContext.Provider>;\n};\n"]}
|
package/dist/index.mjs
CHANGED
|
@@ -3,7 +3,6 @@ import { useQuery, useQueryClient, useMutation } from '@tanstack/react-query';
|
|
|
3
3
|
import { hubAssets, EvmSpokeProvider, spokeChainConfig, SuiSpokeProvider, getHubChainConfig, EvmHubProvider, EvmWalletAbstraction, getMoneyMarketConfig, Sodax } from '@sodax/sdk';
|
|
4
4
|
import { getXChainType, useWalletProvider, useXAccount } from '@sodax/wallet-sdk';
|
|
5
5
|
import { parseUnits } from 'viem';
|
|
6
|
-
import { CHAIN_IDS } from '@sodax/types';
|
|
7
6
|
|
|
8
7
|
// src/contexts/index.ts
|
|
9
8
|
var SodaxContext = createContext(null);
|
|
@@ -20,10 +19,16 @@ function useSpokeProvider(spokeChainId) {
|
|
|
20
19
|
const spokeProvider = useMemo(() => {
|
|
21
20
|
if (!walletProvider) return void 0;
|
|
22
21
|
if (xChainType === "EVM") {
|
|
23
|
-
return new EvmSpokeProvider(
|
|
22
|
+
return new EvmSpokeProvider(
|
|
23
|
+
walletProvider,
|
|
24
|
+
spokeChainConfig[spokeChainId]
|
|
25
|
+
);
|
|
24
26
|
}
|
|
25
27
|
if (xChainType === "SUI") {
|
|
26
|
-
return new SuiSpokeProvider(
|
|
28
|
+
return new SuiSpokeProvider(
|
|
29
|
+
spokeChainConfig[spokeChainId],
|
|
30
|
+
walletProvider
|
|
31
|
+
);
|
|
27
32
|
}
|
|
28
33
|
return void 0;
|
|
29
34
|
}, [walletProvider, xChainType, spokeChainId]);
|
|
@@ -212,8 +217,7 @@ Object.keys(hubAssets).forEach((xChainId) => {
|
|
|
212
217
|
address: tokenAddress
|
|
213
218
|
});
|
|
214
219
|
allXTokens.push({
|
|
215
|
-
|
|
216
|
-
xChainId: CHAIN_IDS.includes(xChainId) ? "sonic" : "sonic-blaze",
|
|
220
|
+
xChainId: "sonic",
|
|
217
221
|
symbol: token.symbol,
|
|
218
222
|
name: token.name,
|
|
219
223
|
decimals: token.decimal,
|
package/dist/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/contexts/index.ts","../src/hooks/shared/useSodaxContext.ts","../src/hooks/provider/useSpokeProvider.ts","../src/hooks/shared/useAllowance.ts","../src/hooks/shared/useApprove.ts","../src/hooks/provider/useHubProvider.ts","../src/hooks/mm/useBorrow.ts","../src/hooks/mm/useRepay.ts","../src/hooks/mm/useSupply.ts","../src/hooks/mm/useWithdraw.ts","../src/core/index.ts","../src/hooks/mm/useHubWalletAddress.ts","../src/hooks/mm/useUserReservesData.ts","../src/hooks/swap/useQuote.ts","../src/hooks/swap/useCreateIntentOrder.ts","../src/hooks/swap/useStatus.ts","../src/providers/SodaxProvider.tsx"],"names":["parseUnits","getXChainType","useMemo","useMutation","useQuery","useWalletProvider"],"mappings":"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","file":"index.mjs","sourcesContent":["import { createContext } from 'react';\nimport type { Sodax } from '@sodax/sdk';\n\nexport interface SodaxContextType {\n sodax: Sodax;\n testnet: boolean;\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 { EvmSpokeProvider, spokeChainConfig, SuiSpokeProvider } from '@sodax/sdk';\nimport type { SpokeChainId } from '@sodax/types';\nimport { getXChainType, useWalletProvider } from '@sodax/wallet-sdk';\nimport { useMemo } from 'react';\n\nexport function useSpokeProvider(spokeChainId: SpokeChainId) {\n const xChainType = getXChainType(spokeChainId);\n const walletProvider = useWalletProvider(spokeChainId);\n const spokeProvider = useMemo(() => {\n if (!walletProvider) return undefined;\n if (xChainType === 'EVM') {\n // @ts-ignore\n return new EvmSpokeProvider(walletProvider, spokeChainConfig[spokeChainId]);\n }\n if (xChainType === 'SUI') {\n // @ts-ignore\n return new SuiSpokeProvider(spokeChainConfig[spokeChainId], walletProvider);\n }\n return undefined;\n }, [walletProvider, xChainType, spokeChainId]);\n\n return spokeProvider;\n}\n","import { useQuery } from '@tanstack/react-query';\nimport type { SpokeChainId, XToken } from '@sodax/types';\nimport { useSodaxContext } from '../shared/useSodaxContext';\nimport { useSpokeProvider } from '../provider/useSpokeProvider';\nimport { parseUnits } from 'viem';\n\nexport function useAllowance(token: XToken, amount: string) {\n const { sodax } = useSodaxContext();\n const spokeProvider = useSpokeProvider(token.xChainId as SpokeChainId);\n\n return useQuery({\n queryKey: ['allowance', token.address, amount],\n queryFn: async () => {\n if (!spokeProvider) {\n return false;\n }\n const allowance = await sodax.moneyMarket.isAllowanceValid(\n {\n token: token.address,\n amount: parseUnits(amount, token.decimals),\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 { useSpokeProvider } from '../provider/useSpokeProvider';\nimport type { SpokeChainId, XToken } from '@sodax/types';\nimport { parseUnits } from 'viem';\nimport { useMutation, useQueryClient } from '@tanstack/react-query';\nimport type { Address } from '@sodax/sdk';\n\ninterface UseApproveReturn {\n approve: (amount: string) => Promise<boolean>;\n isLoading: boolean;\n error: Error | null;\n resetError: () => void;\n}\n\nexport function useApprove(token: XToken): UseApproveReturn {\n const { sodax } = useSodaxContext();\n const spokeProvider = useSpokeProvider(token.xChainId as SpokeChainId);\n const queryClient = useQueryClient();\n\n const {\n mutateAsync: approve,\n isPending,\n error,\n reset: resetError,\n } = useMutation({\n mutationFn: async (amount: string) => {\n if (!spokeProvider) {\n throw new Error('Spoke provider not found');\n }\n const allowance = await sodax.moneyMarket.approve(\n token.address as Address,\n parseUnits(amount, token.decimals),\n spokeProvider.chainConfig.addresses.assetManager as Address,\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 as Error | null,\n resetError,\n };\n}\n","import { EvmHubProvider, getHubChainConfig, type HubChainId } from '@sodax/sdk';\nimport { getXChainType } from '@sodax/wallet-sdk';\nimport { useMemo } from 'react';\nimport { useSodaxContext } from '../shared/useSodaxContext';\n\nexport function useHubProvider(): EvmHubProvider | undefined {\n const { sodax } = useSodaxContext();\n const hubChainId = sodax.config?.hubProviderConfig?.chainConfig.chain.id;\n const hubRpcUrl = sodax.config?.hubProviderConfig?.hubRpcUrl;\n const xChainType = getXChainType(hubChainId);\n const hubProvider = useMemo(() => {\n if (xChainType === 'EVM' && hubChainId && hubRpcUrl) {\n // @ts-ignore\n const hubChainCfg = getHubChainConfig(hubChainId);\n\n if (!hubChainCfg) return undefined;\n\n return new EvmHubProvider({\n hubRpcUrl: hubRpcUrl,\n chainConfig: hubChainCfg,\n });\n }\n return undefined;\n }, [xChainType, hubChainId, hubRpcUrl]);\n\n return hubProvider;\n}\n","import type { ChainId, XToken } from '@sodax/types';\nimport { useMutation, type UseMutationResult } from '@tanstack/react-query';\nimport { parseUnits } from 'viem';\nimport { useSpokeProvider } from '../provider/useSpokeProvider';\nimport { useSodaxContext } from '../shared/useSodaxContext';\nimport type { SpokeChainId } from '@sodax/sdk';\ninterface BorrowResponse {\n ok: true;\n value: [`0x${string}`, `0x${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 * @example\n * ```typescript\n * const { mutateAsync: borrow, isPending, error } = useBorrow(hubToken, spokeChainId);\n * await borrow('100');\n * ```\n *\n * @throws {Error} When:\n * - spokeProvider is not available\n * - Transaction execution fails\n */\nexport function useBorrow(hubToken: XToken, spokeChainId: ChainId): UseMutationResult<BorrowResponse, Error, string> {\n const { sodax } = useSodaxContext();\n const spokeProvider = useSpokeProvider(spokeChainId as SpokeChainId);\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.borrowAndSubmit(\n {\n token: hubToken.address,\n amount: parseUnits(amount, hubToken.decimals),\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 { SpokeChainId } from '@sodax/sdk';\nimport type { ChainId, XToken } from '@sodax/types';\nimport { useMutation, type UseMutationResult } from '@tanstack/react-query';\nimport { parseUnits } from 'viem';\nimport { useSpokeProvider } from '../provider/useSpokeProvider';\nimport { useSodaxContext } from '../shared/useSodaxContext';\n\ninterface RepayResponse {\n ok: true;\n value: [`0x${string}`, `0x${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 * @example\n * ```typescript\n * const { mutateAsync: repay, isPending, error } = useRepay(hubToken, spokeChainId);\n * await repay('100');\n * ```\n *\n * @throws {Error} When:\n * - spokeProvider is not available\n * - Transaction execution fails\n */\nexport function useRepay(hubToken: XToken, spokeChainId: ChainId): UseMutationResult<RepayResponse, Error, string> {\n const { sodax } = useSodaxContext();\n const spokeProvider = useSpokeProvider(spokeChainId as SpokeChainId);\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.repayAndSubmit(\n {\n token: hubToken.address,\n amount: parseUnits(amount, hubToken.decimals),\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 { SpokeChainId } from '@sodax/sdk';\nimport type { XToken } from '@sodax/types';\nimport { useMutation, type UseMutationResult } from '@tanstack/react-query';\nimport { parseUnits } from 'viem';\nimport { useSpokeProvider } from '../provider/useSpokeProvider';\nimport { useSodaxContext } from '../shared/useSodaxContext';\n\ninterface SupplyResponse {\n ok: true;\n value: [`0x${string}`, `0x${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 *\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(spokeToken: XToken): UseMutationResult<SupplyResponse, Error, string> {\n const { sodax } = useSodaxContext();\n const spokeProvider = useSpokeProvider(spokeToken.xChainId as SpokeChainId);\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.supplyAndSubmit(\n {\n token: spokeToken.address,\n amount: parseUnits(amount, spokeToken.decimals),\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 { SpokeChainId } from '@sodax/sdk';\nimport type { ChainId, XToken } from '@sodax/types';\nimport { useMutation, type UseMutationResult } from '@tanstack/react-query';\nimport { parseUnits } from 'viem';\nimport { useSpokeProvider } from '../provider/useSpokeProvider';\nimport { useSodaxContext } from '../shared/useSodaxContext';\n\ninterface WithdrawResponse {\n ok: true;\n value: [`0x${string}`, `0x${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 * @example\n * ```typescript\n * const { mutateAsync: withdraw, isPending, error } = useWithdraw(hubToken, spokeChainId);\n * await withdraw('100');\n * ```\n *\n * @throws {Error} When:\n * - spokeProvider is not available\n * - Transaction execution fails\n */\nexport function useWithdraw(\n hubToken: XToken,\n spokeChainId: ChainId,\n): UseMutationResult<WithdrawResponse, Error, string> {\n const { sodax } = useSodaxContext();\n const spokeProvider = useSpokeProvider(spokeChainId as SpokeChainId);\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.withdrawAndSubmit(\n {\n token: hubToken.address,\n amount: parseUnits(amount, hubToken.decimals),\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 type { XToken, ChainId } from '@sodax/types';\n\nimport { hubAssets } from '@sodax/sdk';\nimport { CHAIN_IDS } from '@sodax/types';\n\nexport const allXTokens: XToken[] = [];\n\nObject.keys(hubAssets).forEach(xChainId => {\n const tokens = hubAssets[xChainId];\n\n Object.keys(tokens).forEach(tokenAddress => {\n const token = tokens[tokenAddress];\n allXTokens.push({\n xChainId: xChainId as ChainId,\n symbol: token.symbol,\n name: token.name,\n decimals: token.decimal,\n address: tokenAddress,\n });\n\n allXTokens.push({\n // @ts-ignore\n xChainId: CHAIN_IDS.includes(xChainId as ChainId) ? 'sonic' : 'sonic-blaze',\n symbol: token.symbol,\n name: token.name,\n decimals: token.decimal,\n address: token.vault,\n });\n });\n});\n\nexport const getSpokeTokenAddressByVault = (spokeChainId: ChainId, vault: string) => {\n const tokens = hubAssets[spokeChainId];\n\n const token = Object.keys(tokens).find(tokenAddress => tokens[tokenAddress].vault === vault);\n\n if (!token) {\n throw new Error('Token not found');\n }\n\n return token;\n};\n","import { type EvmHubProvider, EvmWalletAbstraction, type SpokeChainId } from '@sodax/sdk';\nimport { useQuery, type UseQueryResult } from '@tanstack/react-query';\n\n/**\n * Hook for retrieving the hub wallet address for a given spoke chain and address.\n *\n * This hook fetches the hub wallet address associated with a user's address on a specific spoke chain.\n * It uses the EvmWalletAbstraction to query the hub wallet address from the hub provider.\n *\n * @param spokeChainId - The chain ID of the spoke chain\n * @param address - The user's address on the spoke chain\n * @param hubProvider - The hub provider instance\n *\n * @returns {UseQueryResult<string | null>} A query result object containing:\n * - data: The hub wallet address or null if not found\n * - isLoading: Boolean indicating if the query is in progress\n * - error: Error object if the query failed, null otherwise\n *\n * @example\n * ```typescript\n * const { data: hubWalletAddress, isLoading, error } = useHubWalletAddress(spokeChainId, address, hubProvider);\n * ```\n */\n\nexport function useHubWalletAddress(\n spokeChainId: SpokeChainId,\n address: string | undefined,\n hubProvider: EvmHubProvider,\n): UseQueryResult<string | null> {\n return useQuery({\n queryKey: ['hubWallet', spokeChainId, address],\n queryFn: async () => {\n if (!address) return null;\n\n try {\n const hubWalletAddress = await EvmWalletAbstraction.getUserHubWalletAddress(\n spokeChainId,\n address as `0x${string}`,\n hubProvider,\n );\n return hubWalletAddress;\n } catch (error) {\n console.log('error', error);\n return null;\n }\n },\n enabled: !!address && !!hubProvider,\n });\n}\n","import { allXTokens } from '@/core';\nimport { getMoneyMarketConfig, type EvmHubProvider } from '@sodax/sdk';\nimport type { HubChainId, SpokeChainId } from '@sodax/types';\nimport { useXAccount, useWalletProvider } from '@sodax/wallet-sdk';\nimport type { ChainId } from '@sodax/types';\nimport { useQuery } from '@tanstack/react-query';\nimport { useHubProvider } from '../provider/useHubProvider';\nimport { useHubWalletAddress } from './useHubWalletAddress';\nimport { useSodaxContext } from '../shared/useSodaxContext';\n\nexport function useUserReservesData(spokeChainId: ChainId) {\n const { sodax } = useSodaxContext();\n const hubChainId = (sodax.config?.hubProviderConfig?.chainConfig.chain.id ?? 'sonic') as HubChainId;\n const hubWalletProvider = useWalletProvider(hubChainId);\n const hubProvider = useHubProvider();\n const { address } = useXAccount(spokeChainId);\n const { data: hubWalletAddress } = useHubWalletAddress(\n spokeChainId as SpokeChainId,\n address,\n hubProvider as EvmHubProvider,\n );\n\n const { data: userReserves } = useQuery({\n queryKey: ['userReserves', hubWalletAddress],\n queryFn: async () => {\n if (!hubWalletProvider) {\n return;\n }\n\n if (!hubWalletAddress) {\n return;\n }\n\n const moneyMarketConfig = getMoneyMarketConfig(hubChainId);\n try {\n const [res] = await sodax.moneyMarket.getUserReservesData(\n hubWalletAddress as `0x${string}`,\n moneyMarketConfig.uiPoolDataProvider,\n moneyMarketConfig.poolAddressesProvider,\n );\n\n return res?.map(r => {\n return {\n ...r,\n token: allXTokens.find(t => t.address === r.underlyingAsset),\n };\n });\n } catch (error) {\n console.log('error', error);\n return;\n }\n },\n enabled: !!address && !!hubWalletProvider && !!hubWalletAddress,\n refetchInterval: 5000,\n });\n\n return userReserves;\n}\n","import type { IntentErrorResponse, IntentQuoteRequest, IntentQuoteResponse, 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 {IntentQuoteRequest | undefined} payload - The intent quote request parameters. If undefined, the query will be disabled.\n *\n * @returns {UseQueryResult<Result<IntentQuoteResponse, IntentErrorResponse> | 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: IntentQuoteRequest | undefined,\n): UseQueryResult<Result<IntentQuoteResponse, IntentErrorResponse> | 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 SpokeChainId,\n IntentExecutionResponse,\n Result,\n IntentSubmitErrorCode,\n Intent,\n PacketData,\n IntentSubmitError,\n} from '@sodax/sdk';\nimport { useSpokeProvider } from '../provider/useSpokeProvider';\nimport { useMutation, type UseMutationResult } from '@tanstack/react-query';\n\ntype CreateIntentResult = Result<\n [IntentExecutionResponse, Intent, PacketData],\n IntentSubmitError<IntentSubmitErrorCode>\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 {SpokeChainId} chainId - The source chain ID where the swap will originate\n * @returns {UseMutationResult} Mutation result object containing mutation function and state\n *\n * @example\n * ```typescript\n * const { mutateAsync: createIntent, isPending } = useCreateIntentOrder('0xa4b1.arbitrum');\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 chainId: SpokeChainId,\n): UseMutationResult<CreateIntentResult, Error, CreateIntentParams> {\n const { sodax } = useSodaxContext();\n const spokeProvider = useSpokeProvider(chainId);\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, IntentErrorResponse, IntentStatusResponse, 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<IntentStatusResponse, IntentErrorResponse> | 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<IntentStatusResponse, IntentErrorResponse> | 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 type { ReactNode, ReactElement } from 'react';\nimport { Sodax, type SodaxConfig } from '@sodax/sdk';\nimport { SodaxContext } from '@/contexts';\nimport React 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 return <SodaxContext.Provider value={{ sodax, testnet }}>{children}</SodaxContext.Provider>;\n};\n"]}
|
|
1
|
+
{"version":3,"sources":["../src/contexts/index.ts","../src/hooks/shared/useSodaxContext.ts","../src/hooks/provider/useSpokeProvider.ts","../src/hooks/shared/useAllowance.ts","../src/hooks/shared/useApprove.ts","../src/hooks/provider/useHubProvider.ts","../src/hooks/mm/useBorrow.ts","../src/hooks/mm/useRepay.ts","../src/hooks/mm/useSupply.ts","../src/hooks/mm/useWithdraw.ts","../src/core/index.ts","../src/hooks/mm/useHubWalletAddress.ts","../src/hooks/mm/useUserReservesData.ts","../src/hooks/swap/useQuote.ts","../src/hooks/swap/useCreateIntentOrder.ts","../src/hooks/swap/useStatus.ts","../src/providers/SodaxProvider.tsx"],"names":["parseUnits","getXChainType","useMemo","useMutation","useQuery","useWalletProvider"],"mappings":"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","file":"index.mjs","sourcesContent":["import { createContext } from 'react';\nimport type { Sodax } from '@sodax/sdk';\n\nexport interface SodaxContextType {\n sodax: Sodax;\n testnet: boolean;\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 {\n EvmSpokeProvider,\n spokeChainConfig,\n type SuiSpokeChainConfig,\n SuiSpokeProvider,\n type EvmSpokeChainConfig,\n} from '@sodax/sdk';\nimport type { IEvmWalletProvider, ISuiWalletProvider, SpokeChainId } from '@sodax/types';\nimport { getXChainType, useWalletProvider } from '@sodax/wallet-sdk';\nimport { useMemo } from 'react';\n\nexport function useSpokeProvider(spokeChainId: SpokeChainId) {\n const xChainType = getXChainType(spokeChainId);\n const walletProvider = useWalletProvider(spokeChainId);\n const spokeProvider = useMemo(() => {\n if (!walletProvider) return undefined;\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 return undefined;\n }, [walletProvider, xChainType, spokeChainId]);\n\n return spokeProvider;\n}\n","import { useQuery } from '@tanstack/react-query';\nimport type { SpokeChainId, XToken } from '@sodax/types';\nimport { useSodaxContext } from '../shared/useSodaxContext';\nimport { useSpokeProvider } from '../provider/useSpokeProvider';\nimport { parseUnits } from 'viem';\n\nexport function useAllowance(token: XToken, amount: string) {\n const { sodax } = useSodaxContext();\n const spokeProvider = useSpokeProvider(token.xChainId as SpokeChainId);\n\n return useQuery({\n queryKey: ['allowance', token.address, amount],\n queryFn: async () => {\n if (!spokeProvider) {\n return false;\n }\n const allowance = await sodax.moneyMarket.isAllowanceValid(\n {\n token: token.address,\n amount: parseUnits(amount, token.decimals),\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 { useSpokeProvider } from '../provider/useSpokeProvider';\nimport type { SpokeChainId, XToken } from '@sodax/types';\nimport { parseUnits } from 'viem';\nimport { useMutation, useQueryClient } from '@tanstack/react-query';\nimport type { Address } from '@sodax/sdk';\n\ninterface UseApproveReturn {\n approve: (amount: string) => Promise<boolean>;\n isLoading: boolean;\n error: Error | null;\n resetError: () => void;\n}\n\nexport function useApprove(token: XToken): UseApproveReturn {\n const { sodax } = useSodaxContext();\n const spokeProvider = useSpokeProvider(token.xChainId as SpokeChainId);\n const queryClient = useQueryClient();\n\n const {\n mutateAsync: approve,\n isPending,\n error,\n reset: resetError,\n } = useMutation({\n mutationFn: async (amount: string) => {\n if (!spokeProvider) {\n throw new Error('Spoke provider not found');\n }\n const allowance = await sodax.moneyMarket.approve(\n token.address as Address,\n parseUnits(amount, token.decimals),\n spokeProvider.chainConfig.addresses.assetManager as Address,\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 as Error | null,\n resetError,\n };\n}\n","import { EvmHubProvider, getHubChainConfig, type HubChainId } from '@sodax/sdk';\nimport { getXChainType } from '@sodax/wallet-sdk';\nimport { useMemo } from 'react';\nimport { useSodaxContext } from '../shared/useSodaxContext';\n\nexport function useHubProvider(): EvmHubProvider | undefined {\n const { sodax } = useSodaxContext();\n const hubChainId = sodax.config?.hubProviderConfig?.chainConfig.chain.id;\n const hubRpcUrl = sodax.config?.hubProviderConfig?.hubRpcUrl;\n const xChainType = getXChainType(hubChainId);\n const hubProvider = useMemo(() => {\n if (xChainType === 'EVM' && hubChainId && hubRpcUrl) {\n const hubChainCfg = getHubChainConfig(hubChainId);\n\n if (!hubChainCfg) return undefined;\n\n return new EvmHubProvider({\n hubRpcUrl: hubRpcUrl,\n chainConfig: hubChainCfg,\n });\n }\n return undefined;\n }, [xChainType, hubChainId, hubRpcUrl]);\n\n return hubProvider;\n}\n","import type { ChainId, XToken } from '@sodax/types';\nimport { useMutation, type UseMutationResult } from '@tanstack/react-query';\nimport { parseUnits } from 'viem';\nimport { useSpokeProvider } from '../provider/useSpokeProvider';\nimport { useSodaxContext } from '../shared/useSodaxContext';\nimport type { SpokeChainId } from '@sodax/sdk';\ninterface BorrowResponse {\n ok: true;\n value: [`0x${string}`, `0x${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 * @example\n * ```typescript\n * const { mutateAsync: borrow, isPending, error } = useBorrow(hubToken, spokeChainId);\n * await borrow('100');\n * ```\n *\n * @throws {Error} When:\n * - spokeProvider is not available\n * - Transaction execution fails\n */\nexport function useBorrow(hubToken: XToken, spokeChainId: ChainId): UseMutationResult<BorrowResponse, Error, string> {\n const { sodax } = useSodaxContext();\n const spokeProvider = useSpokeProvider(spokeChainId as SpokeChainId);\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.borrowAndSubmit(\n {\n token: hubToken.address,\n amount: parseUnits(amount, hubToken.decimals),\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 { SpokeChainId } from '@sodax/sdk';\nimport type { ChainId, XToken } from '@sodax/types';\nimport { useMutation, type UseMutationResult } from '@tanstack/react-query';\nimport { parseUnits } from 'viem';\nimport { useSpokeProvider } from '../provider/useSpokeProvider';\nimport { useSodaxContext } from '../shared/useSodaxContext';\n\ninterface RepayResponse {\n ok: true;\n value: [`0x${string}`, `0x${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 * @example\n * ```typescript\n * const { mutateAsync: repay, isPending, error } = useRepay(hubToken, spokeChainId);\n * await repay('100');\n * ```\n *\n * @throws {Error} When:\n * - spokeProvider is not available\n * - Transaction execution fails\n */\nexport function useRepay(hubToken: XToken, spokeChainId: ChainId): UseMutationResult<RepayResponse, Error, string> {\n const { sodax } = useSodaxContext();\n const spokeProvider = useSpokeProvider(spokeChainId as SpokeChainId);\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.repayAndSubmit(\n {\n token: hubToken.address,\n amount: parseUnits(amount, hubToken.decimals),\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 { SpokeChainId } from '@sodax/sdk';\nimport type { XToken } from '@sodax/types';\nimport { useMutation, type UseMutationResult } from '@tanstack/react-query';\nimport { parseUnits } from 'viem';\nimport { useSpokeProvider } from '../provider/useSpokeProvider';\nimport { useSodaxContext } from '../shared/useSodaxContext';\n\ninterface SupplyResponse {\n ok: true;\n value: [`0x${string}`, `0x${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 *\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(spokeToken: XToken): UseMutationResult<SupplyResponse, Error, string> {\n const { sodax } = useSodaxContext();\n const spokeProvider = useSpokeProvider(spokeToken.xChainId as SpokeChainId);\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.supplyAndSubmit(\n {\n token: spokeToken.address,\n amount: parseUnits(amount, spokeToken.decimals),\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 { SpokeChainId } from '@sodax/sdk';\nimport type { ChainId, XToken } from '@sodax/types';\nimport { useMutation, type UseMutationResult } from '@tanstack/react-query';\nimport { parseUnits } from 'viem';\nimport { useSpokeProvider } from '../provider/useSpokeProvider';\nimport { useSodaxContext } from '../shared/useSodaxContext';\n\ninterface WithdrawResponse {\n ok: true;\n value: [`0x${string}`, `0x${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 * @example\n * ```typescript\n * const { mutateAsync: withdraw, isPending, error } = useWithdraw(hubToken, spokeChainId);\n * await withdraw('100');\n * ```\n *\n * @throws {Error} When:\n * - spokeProvider is not available\n * - Transaction execution fails\n */\nexport function useWithdraw(\n hubToken: XToken,\n spokeChainId: ChainId,\n): UseMutationResult<WithdrawResponse, Error, string> {\n const { sodax } = useSodaxContext();\n const spokeProvider = useSpokeProvider(spokeChainId as SpokeChainId);\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.withdrawAndSubmit(\n {\n token: hubToken.address,\n amount: parseUnits(amount, hubToken.decimals),\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 type { XToken, ChainId } from '@sodax/types';\n\nimport { hubAssets } from '@sodax/sdk';\n\nexport const allXTokens: XToken[] = [];\n\nObject.keys(hubAssets).forEach(xChainId => {\n const tokens = hubAssets[xChainId];\n\n Object.keys(tokens).forEach(tokenAddress => {\n const token = tokens[tokenAddress];\n allXTokens.push({\n xChainId: xChainId as ChainId,\n symbol: token.symbol,\n name: token.name,\n decimals: token.decimal,\n address: tokenAddress,\n });\n\n allXTokens.push({\n xChainId: 'sonic',\n symbol: token.symbol,\n name: token.name,\n decimals: token.decimal,\n address: token.vault,\n });\n });\n});\n\nexport const getSpokeTokenAddressByVault = (spokeChainId: ChainId, vault: string) => {\n const tokens = hubAssets[spokeChainId];\n\n const token = Object.keys(tokens).find(tokenAddress => tokens[tokenAddress].vault === vault);\n\n if (!token) {\n throw new Error('Token not found');\n }\n\n return token;\n};\n","import { type EvmHubProvider, EvmWalletAbstraction, type SpokeChainId } from '@sodax/sdk';\nimport { useQuery, type UseQueryResult } from '@tanstack/react-query';\n\n/**\n * Hook for retrieving the hub wallet address for a given spoke chain and address.\n *\n * This hook fetches the hub wallet address associated with a user's address on a specific spoke chain.\n * It uses the EvmWalletAbstraction to query the hub wallet address from the hub provider.\n *\n * @param spokeChainId - The chain ID of the spoke chain\n * @param address - The user's address on the spoke chain\n * @param hubProvider - The hub provider instance\n *\n * @returns {UseQueryResult<string | null>} A query result object containing:\n * - data: The hub wallet address or null if not found\n * - isLoading: Boolean indicating if the query is in progress\n * - error: Error object if the query failed, null otherwise\n *\n * @example\n * ```typescript\n * const { data: hubWalletAddress, isLoading, error } = useHubWalletAddress(spokeChainId, address, hubProvider);\n * ```\n */\n\nexport function useHubWalletAddress(\n spokeChainId: SpokeChainId,\n address: string | undefined,\n hubProvider: EvmHubProvider,\n): UseQueryResult<string | null> {\n return useQuery({\n queryKey: ['hubWallet', spokeChainId, address],\n queryFn: async () => {\n if (!address) return null;\n\n try {\n const hubWalletAddress = await EvmWalletAbstraction.getUserHubWalletAddress(\n spokeChainId,\n address as `0x${string}`,\n hubProvider,\n );\n return hubWalletAddress;\n } catch (error) {\n console.log('error', error);\n return null;\n }\n },\n enabled: !!address && !!hubProvider,\n });\n}\n","import { allXTokens } from '@/core';\nimport { getMoneyMarketConfig, type EvmHubProvider } from '@sodax/sdk';\nimport type { HubChainId, SpokeChainId } from '@sodax/types';\nimport { useXAccount, useWalletProvider } from '@sodax/wallet-sdk';\nimport type { ChainId } from '@sodax/types';\nimport { useQuery } from '@tanstack/react-query';\nimport { useHubProvider } from '../provider/useHubProvider';\nimport { useHubWalletAddress } from './useHubWalletAddress';\nimport { useSodaxContext } from '../shared/useSodaxContext';\n\nexport function useUserReservesData(spokeChainId: ChainId) {\n const { sodax } = useSodaxContext();\n const hubChainId = (sodax.config?.hubProviderConfig?.chainConfig.chain.id ?? 'sonic') as HubChainId;\n const hubWalletProvider = useWalletProvider(hubChainId);\n const hubProvider = useHubProvider();\n const { address } = useXAccount(spokeChainId);\n const { data: hubWalletAddress } = useHubWalletAddress(\n spokeChainId as SpokeChainId,\n address,\n hubProvider as EvmHubProvider,\n );\n\n const { data: userReserves } = useQuery({\n queryKey: ['userReserves', hubWalletAddress],\n queryFn: async () => {\n if (!hubWalletProvider) {\n return;\n }\n\n if (!hubWalletAddress) {\n return;\n }\n\n const moneyMarketConfig = getMoneyMarketConfig(hubChainId);\n try {\n const [res] = await sodax.moneyMarket.getUserReservesData(\n hubWalletAddress as `0x${string}`,\n moneyMarketConfig.uiPoolDataProvider,\n moneyMarketConfig.poolAddressesProvider,\n );\n\n return res?.map(r => {\n return {\n ...r,\n token: allXTokens.find(t => t.address === r.underlyingAsset),\n };\n });\n } catch (error) {\n console.log('error', error);\n return;\n }\n },\n enabled: !!address && !!hubWalletProvider && !!hubWalletAddress,\n refetchInterval: 5000,\n });\n\n return userReserves;\n}\n","import type { IntentErrorResponse, IntentQuoteRequest, IntentQuoteResponse, 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 {IntentQuoteRequest | undefined} payload - The intent quote request parameters. If undefined, the query will be disabled.\n *\n * @returns {UseQueryResult<Result<IntentQuoteResponse, IntentErrorResponse> | 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: IntentQuoteRequest | undefined,\n): UseQueryResult<Result<IntentQuoteResponse, IntentErrorResponse> | 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 SpokeChainId,\n IntentExecutionResponse,\n Result,\n IntentSubmitErrorCode,\n Intent,\n PacketData,\n IntentSubmitError,\n} from '@sodax/sdk';\nimport { useSpokeProvider } from '../provider/useSpokeProvider';\nimport { useMutation, type UseMutationResult } from '@tanstack/react-query';\n\ntype CreateIntentResult = Result<\n [IntentExecutionResponse, Intent, PacketData],\n IntentSubmitError<IntentSubmitErrorCode>\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 {SpokeChainId} chainId - The source chain ID where the swap will originate\n * @returns {UseMutationResult} Mutation result object containing mutation function and state\n *\n * @example\n * ```typescript\n * const { mutateAsync: createIntent, isPending } = useCreateIntentOrder('0xa4b1.arbitrum');\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 chainId: SpokeChainId,\n): UseMutationResult<CreateIntentResult, Error, CreateIntentParams> {\n const { sodax } = useSodaxContext();\n const spokeProvider = useSpokeProvider(chainId);\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, IntentErrorResponse, IntentStatusResponse, 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<IntentStatusResponse, IntentErrorResponse> | 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<IntentStatusResponse, IntentErrorResponse> | 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 type { ReactNode, ReactElement } from 'react';\nimport { Sodax, type SodaxConfig } from '@sodax/sdk';\nimport { SodaxContext } from '@/contexts';\nimport React 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 return <SodaxContext.Provider value={{ sodax, testnet }}>{children}</SodaxContext.Provider>;\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.2",
|
|
5
5
|
"description": "dapp-kit of New World",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
@@ -16,8 +16,8 @@
|
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"viem": "^2.29.2",
|
|
19
|
-
"@sodax/sdk": "0.0.1-rc.
|
|
20
|
-
"@sodax/types": "
|
|
19
|
+
"@sodax/sdk": "0.0.1-rc.4",
|
|
20
|
+
"@sodax/types": "0.0.1-rc.1",
|
|
21
21
|
"@sodax/wallet-sdk": "0.0.1-rc.1"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
package/src/core/index.ts
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import type { XToken, ChainId } from '@sodax/types';
|
|
2
2
|
|
|
3
3
|
import { hubAssets } from '@sodax/sdk';
|
|
4
|
-
import { CHAIN_IDS } from '@sodax/types';
|
|
5
4
|
|
|
6
5
|
export const allXTokens: XToken[] = [];
|
|
7
6
|
|
|
@@ -19,8 +18,7 @@ Object.keys(hubAssets).forEach(xChainId => {
|
|
|
19
18
|
});
|
|
20
19
|
|
|
21
20
|
allXTokens.push({
|
|
22
|
-
|
|
23
|
-
xChainId: CHAIN_IDS.includes(xChainId as ChainId) ? 'sonic' : 'sonic-blaze',
|
|
21
|
+
xChainId: 'sonic',
|
|
24
22
|
symbol: token.symbol,
|
|
25
23
|
name: token.name,
|
|
26
24
|
decimals: token.decimal,
|
|
@@ -10,7 +10,6 @@ export function useHubProvider(): EvmHubProvider | undefined {
|
|
|
10
10
|
const xChainType = getXChainType(hubChainId);
|
|
11
11
|
const hubProvider = useMemo(() => {
|
|
12
12
|
if (xChainType === 'EVM' && hubChainId && hubRpcUrl) {
|
|
13
|
-
// @ts-ignore
|
|
14
13
|
const hubChainCfg = getHubChainConfig(hubChainId);
|
|
15
14
|
|
|
16
15
|
if (!hubChainCfg) return undefined;
|
|
@@ -1,5 +1,11 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
1
|
+
import {
|
|
2
|
+
EvmSpokeProvider,
|
|
3
|
+
spokeChainConfig,
|
|
4
|
+
type SuiSpokeChainConfig,
|
|
5
|
+
SuiSpokeProvider,
|
|
6
|
+
type EvmSpokeChainConfig,
|
|
7
|
+
} from '@sodax/sdk';
|
|
8
|
+
import type { IEvmWalletProvider, ISuiWalletProvider, SpokeChainId } from '@sodax/types';
|
|
3
9
|
import { getXChainType, useWalletProvider } from '@sodax/wallet-sdk';
|
|
4
10
|
import { useMemo } from 'react';
|
|
5
11
|
|
|
@@ -9,12 +15,16 @@ export function useSpokeProvider(spokeChainId: SpokeChainId) {
|
|
|
9
15
|
const spokeProvider = useMemo(() => {
|
|
10
16
|
if (!walletProvider) return undefined;
|
|
11
17
|
if (xChainType === 'EVM') {
|
|
12
|
-
|
|
13
|
-
|
|
18
|
+
return new EvmSpokeProvider(
|
|
19
|
+
walletProvider as IEvmWalletProvider,
|
|
20
|
+
spokeChainConfig[spokeChainId] as EvmSpokeChainConfig,
|
|
21
|
+
);
|
|
14
22
|
}
|
|
15
23
|
if (xChainType === 'SUI') {
|
|
16
|
-
|
|
17
|
-
|
|
24
|
+
return new SuiSpokeProvider(
|
|
25
|
+
spokeChainConfig[spokeChainId] as SuiSpokeChainConfig,
|
|
26
|
+
walletProvider as ISuiWalletProvider,
|
|
27
|
+
);
|
|
18
28
|
}
|
|
19
29
|
return undefined;
|
|
20
30
|
}, [walletProvider, xChainType, spokeChainId]);
|