@aurum-sdk/core 0.1.2 → 0.1.3

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
@@ -14,7 +14,7 @@ import {
14
14
  useAurumStore,
15
15
  useNavigation,
16
16
  waitForStoreHydration
17
- } from "./chunk-EQEZQPHH.mjs";
17
+ } from "./chunk-3TZNNET3.mjs";
18
18
 
19
19
  // src/AurumCore.ts
20
20
  import { checksumAddress } from "viem";
@@ -1604,7 +1604,7 @@ function createWalletAdapters({
1604
1604
  theme
1605
1605
  }) {
1606
1606
  return [
1607
- new EmailAdapter({ projectId: walletsConfig?.email?.projectId }),
1607
+ new EmailAdapter({ projectId: walletsConfig?.embedded?.projectId }),
1608
1608
  new MetaMaskAdapter(),
1609
1609
  new WalletConnectAdapter({ projectId: walletsConfig?.walletConnect?.projectId, appName }),
1610
1610
  new CoinbaseWalletAdapter({ appName, appLogoUrl }),
@@ -2168,7 +2168,7 @@ var Aurum = class {
2168
2168
  * const aurum = new Aurum({
2169
2169
  * brand: { appName: 'Your App Name' },
2170
2170
  * wallets: {
2171
- * email: { projectId: 'cdp-project-id' },
2171
+ * embedded: { projectId: 'cdp-project-id' },
2172
2172
  * walletConnect: { projectId: 'reown-project-id' },
2173
2173
  * },
2174
2174
  * });