@coinbase/cdp-react 0.0.98 → 0.0.100

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.
Files changed (199) hide show
  1. package/dist/components/AuthButton/index.d.ts +102 -0
  2. package/dist/components/CDPReactProvider/index.d.ts +114 -0
  3. package/dist/components/CopyAddress/index.d.ts +29 -0
  4. package/dist/components/CopyEvmKeyButton/index.d.ts +77 -0
  5. package/dist/components/CopySolanaKeyButton/index.d.ts +73 -0
  6. package/dist/components/EnrollMfa/EnrollMfaDescription.d.ts +21 -0
  7. package/dist/components/EnrollMfa/EnrollMfaFlow.d.ts +27 -0
  8. package/dist/components/EnrollMfa/EnrollMfaFlowBackButton.d.ts +19 -0
  9. package/dist/components/EnrollMfa/EnrollMfaFlowProvider.d.ts +52 -0
  10. package/dist/components/EnrollMfa/EnrollMfaFooter.d.ts +18 -0
  11. package/dist/components/EnrollMfa/EnrollMfaImage.d.ts +24 -0
  12. package/dist/components/EnrollMfa/EnrollMfaItem.d.ts +21 -0
  13. package/dist/components/EnrollMfa/EnrollMfaItems.d.ts +17 -0
  14. package/dist/components/EnrollMfa/EnrollMfaProvider.d.ts +35 -0
  15. package/dist/components/EnrollMfa/EnrollMfaTitle.d.ts +21 -0
  16. package/dist/components/EnrollMfa/index.d.ts +65 -0
  17. package/dist/components/EnrollMfa/methods/sms.d.ts +25 -0
  18. package/dist/components/EnrollMfa/methods/totp.d.ts +25 -0
  19. package/dist/components/EnrollMfa/types.d.ts +48 -0
  20. package/dist/components/EnrollMfa/useEnrollMfaReducer.d.ts +6 -0
  21. package/dist/components/EnrollMfaModal/index.d.ts +111 -0
  22. package/dist/components/ExportWallet/index.d.ts +163 -0
  23. package/dist/components/ExportWalletModal/index.d.ts +173 -0
  24. package/dist/components/Fund/FundForm.d.ts +18 -0
  25. package/dist/components/Fund/FundProvider.d.ts +17 -0
  26. package/dist/components/Fund/FundTitle.d.ts +12 -0
  27. package/dist/components/Fund/components/FundAmountInput.d.ts +13 -0
  28. package/dist/components/Fund/components/FundErrorScreen.d.ts +7 -0
  29. package/dist/components/Fund/components/FundPaymentMethods.d.ts +7 -0
  30. package/dist/components/Fund/components/FundPresetAmountInputs.d.ts +7 -0
  31. package/dist/components/Fund/components/FundTransactionStatus.d.ts +6 -0
  32. package/dist/components/Fund/hooks/useBuyUrl.d.ts +23 -0
  33. package/dist/components/Fund/hooks/useEmitLifecycleStatus.d.ts +12 -0
  34. package/dist/components/Fund/hooks/useExchangeRate.d.ts +17 -0
  35. package/dist/components/Fund/hooks/usePaymentMethods.d.ts +16 -0
  36. package/dist/components/Fund/hooks/usePopupMonitor.d.ts +9 -0
  37. package/dist/components/Fund/hooks/useSetupOnrampEventListeners.d.ts +6 -0
  38. package/dist/components/Fund/index.d.ts +87 -0
  39. package/dist/components/Fund/types.d.ts +137 -0
  40. package/dist/components/Fund/useFundReducer.d.ts +15 -0
  41. package/dist/components/Fund/utils/buildPaymentMethods.d.ts +15 -0
  42. package/dist/components/Fund/utils/setupOnrampEventListeners.d.ts +10 -0
  43. package/dist/components/Fund/utils/subscribeToWindowMessage.d.ts +27 -0
  44. package/dist/components/FundModal/index.d.ts +106 -0
  45. package/dist/components/LinkAuth/LinkAuthFlow.d.ts +25 -0
  46. package/dist/components/LinkAuth/LinkAuthFlowBackButton.d.ts +19 -0
  47. package/dist/components/LinkAuth/LinkAuthFlowProvider.d.ts +60 -0
  48. package/dist/components/LinkAuth/LinkAuthItem.d.ts +23 -0
  49. package/dist/components/LinkAuth/LinkAuthItems.d.ts +17 -0
  50. package/dist/components/LinkAuth/LinkAuthItems.js +30 -30
  51. package/dist/components/LinkAuth/LinkAuthProvider.d.ts +31 -0
  52. package/dist/components/LinkAuth/LinkAuthTitle.d.ts +17 -0
  53. package/dist/components/LinkAuth/index.d.ts +170 -0
  54. package/dist/components/LinkAuth/types.d.ts +31 -0
  55. package/dist/components/LinkAuth/utils.d.ts +12 -0
  56. package/dist/components/LinkAuthModal/index.d.ts +112 -0
  57. package/dist/components/OAuthStatusModal/index.d.ts +24 -0
  58. package/dist/components/SendEvmTransactionButton/index.d.ts +27 -0
  59. package/dist/components/SendSolanaTransactionButton/index.d.ts +27 -0
  60. package/dist/components/SignIn/SignInAuthMethodButtons.d.ts +26 -0
  61. package/dist/components/SignIn/SignInBackButton.d.ts +40 -0
  62. package/dist/components/SignIn/SignInCredentials.d.ts +13 -0
  63. package/dist/components/SignIn/SignInDescription.d.ts +35 -0
  64. package/dist/components/SignIn/SignInFooter.d.ts +27 -0
  65. package/dist/components/SignIn/SignInForm.d.ts +39 -0
  66. package/dist/components/SignIn/SignInImage.d.ts +38 -0
  67. package/dist/components/SignIn/SignInProvider.d.ts +54 -0
  68. package/dist/components/SignIn/SignInTitle.d.ts +35 -0
  69. package/dist/components/SignIn/flows/SignInWithEmail.d.ts +26 -0
  70. package/dist/components/SignIn/flows/SignInWithOAuth.d.ts +19 -0
  71. package/dist/components/SignIn/flows/SignInWithSms.d.ts +26 -0
  72. package/dist/components/SignIn/hooks/useEmailForm.d.ts +7 -0
  73. package/dist/components/SignIn/hooks/useOTPForm.d.ts +8 -0
  74. package/dist/components/SignIn/hooks/usePhoneNumberForm.d.ts +7 -0
  75. package/dist/components/SignIn/hooks/useSignInWithOAuth.d.ts +8 -0
  76. package/dist/components/SignIn/index.d.ts +124 -0
  77. package/dist/components/SignIn/types.d.ts +37 -0
  78. package/dist/components/SignIn/useSignInReducer.d.ts +9 -0
  79. package/dist/components/SignInModal/index.d.ts +123 -0
  80. package/dist/components/SignOutButton/index.d.ts +39 -0
  81. package/dist/components/ThemeProvider/index.d.ts +70 -0
  82. package/dist/components/VerifyMfa/VerifyMfaDescription.d.ts +24 -0
  83. package/dist/components/VerifyMfa/VerifyMfaFlow.d.ts +30 -0
  84. package/dist/components/VerifyMfa/VerifyMfaFlowBackButton.d.ts +19 -0
  85. package/dist/components/VerifyMfa/VerifyMfaFlowProvider.d.ts +51 -0
  86. package/dist/components/VerifyMfa/VerifyMfaFooter.d.ts +18 -0
  87. package/dist/components/VerifyMfa/VerifyMfaImage.d.ts +23 -0
  88. package/dist/components/VerifyMfa/VerifyMfaItem.d.ts +20 -0
  89. package/dist/components/VerifyMfa/VerifyMfaItems.d.ts +18 -0
  90. package/dist/components/VerifyMfa/VerifyMfaProvider.d.ts +40 -0
  91. package/dist/components/VerifyMfa/VerifyMfaTitle.d.ts +24 -0
  92. package/dist/components/VerifyMfa/index.d.ts +55 -0
  93. package/dist/components/VerifyMfa/methods/sms.d.ts +29 -0
  94. package/dist/components/VerifyMfa/methods/totp.d.ts +29 -0
  95. package/dist/components/VerifyMfa/types.d.ts +33 -0
  96. package/dist/components/VerifyMfa/useVerifyMfaReducer.d.ts +7 -0
  97. package/dist/components/VerifyMfaInline/index.d.ts +212 -0
  98. package/dist/components/VerifyMfaModal/index.d.ts +114 -0
  99. package/dist/components/forms/AmountInput/index.d.ts +16 -0
  100. package/dist/components/forms/AmountInput/types.d.ts +9 -0
  101. package/dist/components/forms/AmountInput/useAmountInput.d.ts +14 -0
  102. package/dist/components/forms/AmountInput/useInputScale.d.ts +12 -0
  103. package/dist/components/forms/AmountInput/useNumberParseAndFormat.d.ts +20 -0
  104. package/dist/components/forms/CountrySelect/index.d.ts +9 -0
  105. package/dist/components/forms/EmailForm/index.d.ts +17 -0
  106. package/dist/components/forms/ExchangeAmountInput/index.d.ts +19 -0
  107. package/dist/components/forms/ExchangeAmountInput/types.d.ts +12 -0
  108. package/dist/components/forms/ExchangeAmountInput/useExchangeAmountInput.d.ts +17 -0
  109. package/dist/components/forms/Field/index.d.ts +15 -0
  110. package/dist/components/forms/Input/index.d.ts +15 -0
  111. package/dist/components/forms/Label/index.d.ts +8 -0
  112. package/dist/components/forms/OTP/index.d.ts +6 -0
  113. package/dist/components/forms/OTPForm/index.d.ts +20 -0
  114. package/dist/components/forms/PhoneNumberForm/index.d.ts +27 -0
  115. package/dist/components/forms/PhoneNumberInput/index.d.ts +16 -0
  116. package/dist/components/forms/PhoneNumberInput/maskOverride.d.ts +6 -0
  117. package/dist/components/forms/PhoneNumberInput/usePhoneNumberFormatter.d.ts +7 -0
  118. package/dist/components/forms/Select/index.d.ts +30 -0
  119. package/dist/components/ui/Badge/index.d.ts +19 -0
  120. package/dist/components/ui/Banner/index.d.ts +25 -0
  121. package/dist/components/ui/Button/index.d.ts +50 -0
  122. package/dist/components/ui/ButtonBase/index.d.ts +20 -0
  123. package/dist/components/ui/CoinbaseFooter/index.d.ts +16 -0
  124. package/dist/components/ui/CopyTextField/index.d.ts +35 -0
  125. package/dist/components/ui/Error/index.d.ts +14 -0
  126. package/dist/components/ui/IframeButton/index.d.ts +17 -0
  127. package/dist/components/ui/LoadingSkeleton/index.d.ts +22 -0
  128. package/dist/components/ui/LoadingSpinner/index.d.ts +11 -0
  129. package/dist/components/ui/Modal/index.d.ts +82 -0
  130. package/dist/components/ui/QRCode/QRCodeSvg.d.ts +35 -0
  131. package/dist/components/ui/QRCode/index.d.ts +7 -0
  132. package/dist/components/ui/QRCode/useCorners.d.ts +9 -0
  133. package/dist/components/ui/QRCode/useDotsPath.d.ts +18 -0
  134. package/dist/components/ui/QRCode/useLogo.d.ts +18 -0
  135. package/dist/components/ui/QRCode/useMatrix.d.ts +7 -0
  136. package/dist/components/ui/ServerError/index.d.ts +6 -0
  137. package/dist/components/ui/SuccessMessage/index.d.ts +14 -0
  138. package/dist/components/ui/SwitchFadeTransition/index.d.ts +15 -0
  139. package/dist/components/ui/SwitchSlideTransition/index.d.ts +16 -0
  140. package/dist/components/ui/SwitchTransition/index.d.ts +42 -0
  141. package/dist/components/ui/ToggleListItem/index.d.ts +31 -0
  142. package/dist/components/ui/VisuallyHidden/index.d.ts +18 -0
  143. package/dist/data/countries.d.ts +15 -0
  144. package/dist/data/countryNames.d.ts +4 -0
  145. package/dist/hooks/useKeyExportPostMessage.d.ts +25 -0
  146. package/dist/hooks/usePhoneNumberState.d.ts +47 -0
  147. package/dist/hooks/usePhoneNumberValidators.d.ts +8 -0
  148. package/dist/hooks/useTimeout.d.ts +18 -0
  149. package/dist/hooks/useTimer.d.ts +6 -0
  150. package/dist/hooks/useTransitionMap.d.ts +22 -0
  151. package/dist/hooks/useVerifyMfaModal.d.ts +78 -0
  152. package/dist/icons/IconAppleLogo.d.ts +22 -0
  153. package/dist/icons/IconArrowLeft.d.ts +22 -0
  154. package/dist/icons/IconArrowsUpDown.d.ts +22 -0
  155. package/dist/icons/IconCheck.d.ts +22 -0
  156. package/dist/icons/IconCheckCircle.d.ts +21 -0
  157. package/dist/icons/IconChevronDown.d.ts +22 -0
  158. package/dist/icons/IconCoinbaseMark.d.ts +22 -0
  159. package/dist/icons/IconCoinbaseWordmark.d.ts +22 -0
  160. package/dist/icons/IconCopy.d.ts +22 -0
  161. package/dist/icons/IconCreditCard.d.ts +22 -0
  162. package/dist/icons/IconCurrencies.d.ts +22 -0
  163. package/dist/icons/IconEnvelope.d.ts +22 -0
  164. package/dist/icons/IconExclamationCircle.d.ts +22 -0
  165. package/dist/icons/IconExclamationTriangle.d.ts +22 -0
  166. package/dist/icons/IconGoogleColorLogo.d.ts +22 -0
  167. package/dist/icons/IconGoogleLogo.d.ts +22 -0
  168. package/dist/icons/IconLock.d.ts +22 -0
  169. package/dist/icons/IconMinus.d.ts +21 -0
  170. package/dist/icons/IconPhone.d.ts +22 -0
  171. package/dist/icons/IconPinCode.d.ts +22 -0
  172. package/dist/icons/IconPlus.d.ts +21 -0
  173. package/dist/icons/IconShield.d.ts +22 -0
  174. package/dist/icons/IconSmartPhone.d.ts +22 -0
  175. package/dist/icons/IconTelegramLogo.d.ts +22 -0
  176. package/dist/icons/IconXLogo.d.ts +22 -0
  177. package/dist/icons/IconXMark.d.ts +22 -0
  178. package/dist/icons/SvgIcon.d.ts +6 -0
  179. package/dist/theme/cssVariables.d.ts +10 -0
  180. package/dist/theme/theme.d.ts +246 -0
  181. package/dist/theme/tokens.d.ts +54 -0
  182. package/dist/theme/utils.d.ts +63 -0
  183. package/dist/types/secureIframe.d.ts +3 -0
  184. package/dist/utils/capitalize.d.ts +8 -0
  185. package/dist/utils/childrenHasComponent.d.ts +10 -0
  186. package/dist/utils/clamp.d.ts +10 -0
  187. package/dist/utils/formatFiat.d.ts +11 -0
  188. package/dist/utils/formatPhoneNumber.d.ts +8 -0
  189. package/dist/utils/getMessageFromUnknownError.d.ts +9 -0
  190. package/dist/utils/isApiError.d.ts +21 -0
  191. package/dist/utils/isEmailInvalid.d.ts +15 -0
  192. package/dist/utils/openPopup.d.ts +15 -0
  193. package/dist/utils/parseValuesFromPhoneNumber.d.ts +16 -0
  194. package/dist/utils/sendIframeMessage.d.ts +8 -0
  195. package/dist/utils/toOAuthProviderType.d.ts +8 -0
  196. package/dist/utils/transition.d.ts +41 -0
  197. package/dist/version.d.ts +5 -1
  198. package/dist/version.js +1 -1
  199. package/package.json +5 -5
@@ -1 +1,9 @@
1
+ /**
2
+ * Format a phone number.
3
+ *
4
+ * @param phoneNumber - The phone number in E.164 format, e.g. "+12345678900".
5
+ * @returns The formatted phone number (calling code + national format) or the incomplete phone number if it cannot be parsed.
6
+ *
7
+ * @group Utilities
8
+ */
1
9
  export declare const formatPhoneNumber: (phoneNumber: string) => string;
@@ -1 +1,10 @@
1
+ /**
2
+ * Get a message from an unknown error with a fallback in case one is not found.
3
+ *
4
+ * @param {unknown} error - The error to get a message from.
5
+ * @param {string} [defaultMesasge] - The default message to return if no message is found.
6
+ * @returns {string} The message from the error.
7
+ *
8
+ * @group Utilities
9
+ */
1
10
  export declare const getMessageFromUnknownError: (error: unknown, defaultMesasge?: string) => string;
@@ -1,2 +1,23 @@
1
1
  import { APIError } from '@coinbase/cdp-hooks';
2
+ /**
3
+ * Type guard to check if the error is an API error.
4
+ *
5
+ * @param {unknown} error - The error to check.
6
+ * @returns {error is ApiError} - True if the error is an API error, false otherwise.
7
+ *
8
+ * @group Utilities
9
+ *
10
+ * @example
11
+ * ```tsx lines
12
+ * try {
13
+ * ...
14
+ * }
15
+ * catch (error) {
16
+ * if (isApiError(error)) {
17
+ * // Handle API error
18
+ * console.log(error.errorMessage);
19
+ * }
20
+ * }
21
+ * ```
22
+ */
2
23
  export declare const isApiError: (error: unknown) => error is APIError;
@@ -1 +1,16 @@
1
+ /**
2
+ * Check if an email address is invalid.
3
+ *
4
+ * @param value - The email address to validate.
5
+ * @returns `true` if the email address is invalid, `false` otherwise.
6
+ *
7
+ * @group Utilities
8
+ *
9
+ * @example
10
+ * ```tsx lines
11
+ * if (isEmailInvalid("test@example")) {
12
+ * console.log("Invalid email address");
13
+ * }
14
+ * ```
15
+ */
1
16
  export declare const isEmailInvalid: (value: string) => boolean;
@@ -1,7 +1,22 @@
1
+ /**
2
+ * The parameters for the openPopup function.
3
+ */
1
4
  export type OpenPopupParams = {
2
5
  url: string;
3
6
  height: number;
4
7
  width: number;
5
8
  target?: string;
6
9
  };
10
+ /**
11
+ * Open a popup in the center of the screen with the specified size.
12
+ *
13
+ * @param {OpenPopupParams} params - The parameters for the popup.
14
+ * @param {string} params.url - The URL to open in the popup.
15
+ * @param {string} [params.target] - The target window for the popup.
16
+ * @param {number} params.height - The height of the popup.
17
+ * @param {number} params.width - The width of the popup.
18
+ * @returns {Window | null} The popup window.
19
+ *
20
+ * @group Utilities
21
+ */
7
22
  export declare const openPopup: ({ url, target, height, width }: OpenPopupParams) => Window | null;
@@ -1,6 +1,22 @@
1
1
  import { CountryCode } from 'libphonenumber-js';
2
+ /**
3
+ * A phone number object.
4
+ *
5
+ * @see {@link parseValuesFromPhoneNumber} for the function that parses a phone number into a phone number object.
6
+ */
2
7
  export interface PhoneNumber {
8
+ /** The phone number in the national format (country calling code is not included) */
3
9
  value: string;
10
+ /** The phone number in international format (E.164). Typically used in API calls. */
4
11
  e164: string;
5
12
  }
13
+ /**
14
+ * Parse a phone number into a phone number object.
15
+ *
16
+ * @param phoneNumber - The phone number to parse.
17
+ * @param countryCode - The country code to parse the phone number for.
18
+ * @returns A phone number object.
19
+ *
20
+ * @group Utilities
21
+ */
6
22
  export declare const parseValuesFromPhoneNumber: (phoneNumber: string, countryCode?: CountryCode) => PhoneNumber;
@@ -1 +1,9 @@
1
+ /**
2
+ * Sends a message to an iframe.
3
+ *
4
+ * @param el - The iframe element to send the message to.
5
+ * @param message - The message to send to the iframe.
6
+ *
7
+ * @group Utilities
8
+ */
1
9
  export declare const sendIframeMessage: <T extends Record<string | number | symbol, unknown>>(el: HTMLIFrameElement | null, message: T) => void;
@@ -1,2 +1,10 @@
1
1
  import { OAuth2ProviderType } from '@coinbase/cdp-hooks';
2
+ /**
3
+ * Extracts the OAuth provider type from an auth method.
4
+ *
5
+ * @param {string} authMethod - The auth method to convert.
6
+ * @returns {OAuth2ProviderType} The OAuth provider type.
7
+ *
8
+ * @group Utilities
9
+ */
2
10
  export declare function toOAuthProviderType(authMethod: string): OAuth2ProviderType | undefined;
@@ -1,4 +1,10 @@
1
+ /**
2
+ * The possible statuses of a transition.
3
+ */
1
4
  export type TransitionStatus = "preEnter" | "entering" | "entered" | "preExit" | "exiting" | "exited" | "unmounted";
5
+ /**
6
+ * The state of a transition.
7
+ */
2
8
  export type TransitionState = Readonly<{
3
9
  _s: number;
4
10
  status: TransitionStatus;
@@ -14,6 +20,12 @@ export declare const EXITING = 4;
14
20
  export declare const EXITED = 5;
15
21
  export declare const UNMOUNTED = 6;
16
22
  export declare const STATUS: TransitionStatus[];
23
+ /**
24
+ * Get the state object based on the status.
25
+ *
26
+ * @param {number} status - The current status.
27
+ * @returns {TransitionState} The state object.
28
+ */
17
29
  export declare const getState: (status: number) => {
18
30
  _s: number;
19
31
  status: TransitionStatus;
@@ -21,10 +33,39 @@ export declare const getState: (status: number) => {
21
33
  isMounted: boolean;
22
34
  isResolved: boolean;
23
35
  };
36
+ /**
37
+ * Get the start or end status based on the unmounted flag.
38
+ *
39
+ * @param {boolean} unmounted - Whether the component is unmounted.
40
+ * @returns {number} The start or end status.
41
+ */
24
42
  export declare const startOrEnd: (unmounted: boolean) => 5 | 6;
43
+ /**
44
+ * Get the end status based on the status and unmountOnExit flag.
45
+ *
46
+ * @param {number} status - The current status.
47
+ * @param {boolean} unmountOnExit - Whether to unmount the component on exit.
48
+ * @returns {number} The end status based on the status and unmountOnExit flag.
49
+ */
25
50
  export declare const getEndStatus: (status: number, unmountOnExit: boolean) => 2 | 5 | 6 | undefined;
51
+ /**
52
+ * Normalize the timeout option to timeout tuple.
53
+ *
54
+ * @param {number | { enter: number; exit: number }} timeout - The timeout value or an object with enter and exit timeout values.
55
+ * @returns {[number, number]} The enter and exit timeout values.
56
+ */
26
57
  export declare const getTimeout: (timeout: number | {
27
58
  enter: number;
28
59
  exit: number;
29
60
  }) => number[];
61
+ /**
62
+ * Schedule a next tick to transition to the next status.
63
+ * If onTimerScheduled is provided, it is called with the inner rAF id when scheduled
64
+ * so the caller can cancel it on cleanup (avoids state updates after unmount in tests).
65
+ *
66
+ * @param {(status: number) => void} transitState - A function to call when the next tick is reached.
67
+ * @param {number} status - The current status.
68
+ * @param {(id: number) => void} [onTimerScheduled] - Called with the inner animation frame id when scheduled.
69
+ * @returns {number} The outer animation frame ID.
70
+ */
30
71
  export declare const nextTick: (transitState: (status: number) => void, status: number, onTimerScheduled?: (id: number) => void) => number;
package/dist/version.d.ts CHANGED
@@ -1 +1,5 @@
1
- export declare const VERSION = "0.0.98";
1
+ /**
2
+ * Current version of @coinbase/cdp-react package.
3
+ * This file is auto-generated by scripts/sync-versions.js
4
+ */
5
+ export declare const VERSION = "0.0.100";
package/dist/version.js CHANGED
@@ -1,4 +1,4 @@
1
- const o = "0.0.98";
1
+ const o = "0.0.100";
2
2
  export {
3
3
  o as VERSION
4
4
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@coinbase/cdp-react",
3
- "version": "0.0.98",
3
+ "version": "0.0.100",
4
4
  "type": "module",
5
5
  "dependencies": {
6
6
  "@internationalized/number": "3.6.4",
@@ -16,8 +16,8 @@
16
16
  },
17
17
  "peerDependencies": {
18
18
  "react": ">=18.2.0 <19.2.0",
19
- "@coinbase/cdp-core": "^0.0.98",
20
- "@coinbase/cdp-hooks": "^0.0.98"
19
+ "@coinbase/cdp-hooks": "^0.0.100",
20
+ "@coinbase/cdp-core": "^0.0.100"
21
21
  },
22
22
  "devDependencies": {
23
23
  "@size-limit/preset-big-lib": "^11.2.0",
@@ -49,8 +49,8 @@
49
49
  "vite": "^7.0.4",
50
50
  "vite-plugin-dts": "^4.5.4",
51
51
  "vite-plugin-lib-inject-css": "^2.2.2",
52
- "@coinbase/cdp-core": "^0.0.98",
53
- "@coinbase/cdp-hooks": "^0.0.98"
52
+ "@coinbase/cdp-hooks": "^0.0.100",
53
+ "@coinbase/cdp-core": "^0.0.100"
54
54
  },
55
55
  "size-limit": [
56
56
  {