Skip to content

Commit 4e67334

Browse files
Fix docs urls (#532)
1 parent 121cbfb commit 4e67334

14 files changed

+14
-14
lines changed

packages/checkout/src/hooks/useAddFundsModal.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ type UseAddFundsModalReturnType = {
2121
* The modal integration is powered by Transak, allowing users to purchase crypto directly within
2222
* your application.
2323
*
24-
* Go to {@link https://docs.sequence.xyz/sdk/web/hooks/useAddFundsModal} for more detailed documentation.
24+
* Go to {@link https://docs.sequence.xyz/sdk/web/checkout-sdk/hooks/useAddFundsModal} for more detailed documentation.
2525
*
2626
* @returns An object containing functions and settings for the On-ramp modal {@link UseAddFundsModalReturnType}
2727
*

packages/checkout/src/hooks/useCheckoutModal.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ type UseCheckoutModalReturnType = {
1919
* This hook provides methods to open and close the checkout modal, and access its current settings.
2020
* Checkout supports credit card payments and crypto payments for purchasing digital assets.
2121
*
22-
* Go to {@link https://docs.sequence.xyz/sdk/web/hooks/useCheckoutModal} for more detailed documentation.
22+
* Go to {@link https://docs.sequence.xyz/sdk/web/checkout-sdk/hooks/useCheckoutModal} for more detailed documentation.
2323
*
2424
* @returns An object containing functions and settings for the Checkout modal {@link UseCheckoutModalReturnType}
2525
*

packages/checkout/src/hooks/useERC1155SaleContractCheckout.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ export const getERC1155SaleContractConfig = ({
7777
* - Generating the proper transaction data
7878
* - Opening and managing the checkout modal
7979
*
80-
* @see {@link https://docs.sequence.xyz/sdk/web/hooks/useERC1155SaleContractCheckout} for more detailed documentation.
80+
* @see {@link https://docs.sequence.xyz/sdk/web/checkout-sdk/hooks/useERC1155SaleContractCheckout} for more detailed documentation.
8181
*
8282
* @param {object} params - Configuration options for the ERC-1155 sale contract checkout
8383
* @param {number} params.chain - Chain ID where the sale contract is deployed

packages/checkout/src/hooks/useSelectPaymentModal.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ type UseSelectPaymentModalReturnType = {
2323
* - Pay with credit/debit card
2424
* - Receive funds from another wallet
2525
*
26-
* @see {@link https://docs.sequence.xyz/sdk/web/hooks/useSelectPaymentModal} for more detailed documentation.
26+
* @see {@link https://docs.sequence.xyz/sdk/web/checkout-sdk/hooks/useSelectPaymentModal} for more detailed documentation.
2727
*
2828
* @returns An object containing functions to control the Payment Selection modal and its state {@link UseSelectPaymentModalReturnType}
2929
*

packages/checkout/src/hooks/useSwapModal.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ type UseSwapModalReturnType = {
2121
* The Swap modal allows users to select tokens from their wallet to swap to a specified target token,
2222
* with the option to execute additional transactions after the swap completes.
2323
*
24-
* @see {@link https://docs.sequence.xyz/sdk/web/hooks/useSwapModal} for more detailed documentation.
24+
* @see {@link https://docs.sequence.xyz/sdk/web/checkout-sdk/hooks/useSwapModal} for more detailed documentation.
2525
*
2626
* @returns An object containing functions to control the Swap modal and its state {@link UseSwapModalReturnType}
2727
*

packages/connect/src/hooks/useChain.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import type { Chain } from 'wagmi/chains'
1212
* The hook is commonly used in conjunction with other Sequence hooks to access chain-specific
1313
* information when working with transactions, indexer clients, or network-specific features.
1414
*
15-
* @see {@link https://docs.sequence.xyz/sdk/web/hooks/useChain} for more detailed documentation.
15+
* @see {@link https://docs.sequence.xyz/sdk/web/wallet-sdk/ecosystem/hooks/useChain} for more detailed documentation.
1616
*
1717
* @param chainId - Optional chain ID to get configuration for a specific chain. If not provided, returns the current chain's configuration.
1818
* @returns Chain configuration object for the specified or current chain, or undefined if not found

packages/connect/src/hooks/useCheckWaasFeeOptions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import { useConnections } from 'wagmi'
1515
* for unsponsored transactions. It's particularly useful in
1616
* wallet interfaces and transaction confirmation flows.
1717
*
18-
* @see {@link https://docs.sequence.xyz/sdk/web/hooks/useCheckWaasFeeOptions} for more detailed documentation.
18+
* @see {@link https://docs.sequence.xyz/sdk/web/wallet-sdk/embedded/hooks/useCheckWaasFeeOptions} for more detailed documentation.
1919
*
2020
* @returns A function that accepts transaction details and returns fee information
2121
* @returns.feeQuote - The fee quote for the transaction if available

packages/connect/src/hooks/useOpenConnectModal.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ type UseOpenConnectModalReturnType = {
1818
* This hook provides a method to open and close the connect modal, and access its current open state.
1919
* The Connect modal provides various wallet connection options including Sequence wallet and external wallets.
2020
*
21-
* @see {@link https://docs.sequence.xyz/sdk/web/hooks/useOpenConnectModal} for more detailed documentation.
21+
* @see {@link https://docs.sequence.xyz/sdk/web/wallet-sdk/ecosystem/hooks/useOpenConnectModal} for more detailed documentation.
2222
*
2323
* @returns An object containing function to control the Connect modal and its state {@link UseOpenConnectModalReturnType}
2424
*

packages/connect/src/hooks/useProjectAccessKey.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { useConnectConfigContext } from '../contexts/ConnectConfig.js'
77
* identify your application with Sequence services. It is used across various SDK features
88
* including marketplace integration and wallet connections.
99
*
10-
* @see {@link https://docs.sequence.xyz/sdk/web/hooks/useProjectAccessKey} for more detailed documentation.
10+
* @see {@link https://docs.sequence.xyz/sdk/web/wallet-sdk/ecosystem/hooks/useProjectAccessKey} for more detailed documentation.
1111
*
1212
* @returns {string} The project access key configured for the application
1313
*

packages/connect/src/hooks/useSignInEmail.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import { LocalStorageKey } from '../constants/localStorage.js'
1212
* is connected. It works with both WaaS (Wallet-as-a-Service) and universal wallet types.
1313
* The email is cleared when the wallet is disconnected.
1414
*
15-
* @see {@link https://docs.sequence.xyz/sdk/web/hooks/useSignInEmail} for more detailed documentation.
15+
* @see {@link https://docs.sequence.xyz/sdk/web/wallet-sdk/ecosystem/hooks/useSignInEmail} for more detailed documentation.
1616
*
1717
* @returns {string | null} The email address of the connected wallet user, or null if not connected
1818
* or no email is associated

0 commit comments

Comments
 (0)