@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/README.md +1 -1
- package/dist/{chunk-EQEZQPHH.mjs → chunk-3TZNNET3.mjs} +31 -15
- package/dist/chunk-3TZNNET3.mjs.map +1 -0
- package/dist/{chunk-LTGSWCPM.js → chunk-F4RYBD6L.js} +31 -15
- package/dist/chunk-F4RYBD6L.js.map +1 -0
- package/dist/index.css +11 -2
- package/dist/index.css.map +1 -1
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +60 -60
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -3
- package/dist/index.mjs.map +1 -1
- package/dist/widgets.css +11 -2
- package/dist/widgets.css.map +1 -1
- package/dist/widgets.js +13 -13
- package/dist/widgets.mjs +1 -1
- package/package.json +3 -3
- package/dist/chunk-EQEZQPHH.mjs.map +0 -1
- package/dist/chunk-LTGSWCPM.js.map +0 -1
package/dist/index.mjs
CHANGED
|
@@ -14,7 +14,7 @@ import {
|
|
|
14
14
|
useAurumStore,
|
|
15
15
|
useNavigation,
|
|
16
16
|
waitForStoreHydration
|
|
17
|
-
} from "./chunk-
|
|
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?.
|
|
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
|
-
*
|
|
2171
|
+
* embedded: { projectId: 'cdp-project-id' },
|
|
2172
2172
|
* walletConnect: { projectId: 'reown-project-id' },
|
|
2173
2173
|
* },
|
|
2174
2174
|
* });
|