@aurum-sdk/core 0.2.2-canary.0 → 0.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.mjs CHANGED
@@ -13,7 +13,7 @@ import {
13
13
  useAurumStore,
14
14
  useNavigation,
15
15
  waitForStoreHydration
16
- } from "./chunk-THE7QLMS.mjs";
16
+ } from "./chunk-DPFIEHZ6.mjs";
17
17
 
18
18
  // src/AurumCore.ts
19
19
  import { checksumAddress } from "viem";
@@ -1368,14 +1368,9 @@ var _EmailAdapter = class _EmailAdapter {
1368
1368
  sentryLogger.error("Email is not available");
1369
1369
  throw new Error("Email is not available");
1370
1370
  }
1371
- try {
1372
- const { signInWithEmail } = await import("@coinbase/cdp-core");
1373
- const authResult = await signInWithEmail({ email });
1374
- return authResult;
1375
- } catch (error) {
1376
- sentryLogger.error("Failed to start email authentication", { error });
1377
- throw error;
1378
- }
1371
+ const { signInWithEmail } = await import("@coinbase/cdp-core");
1372
+ const authResult = await signInWithEmail({ email });
1373
+ return authResult;
1379
1374
  }
1380
1375
  async emailAuthVerify(flowId, otp) {
1381
1376
  if (!flowId || !otp) {