@aurum-sdk/core 0.2.3-canary.3 → 0.2.4
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 +6 -0
- package/dist/chunk-ATH4UWSL.js +891 -0
- package/dist/chunk-GP7AGIK5.mjs +15206 -0
- package/dist/chunk-GTEGWUGU.js +15206 -0
- package/dist/chunk-IQ7F5R7D.js +1885 -0
- package/dist/chunk-LMQLRSFP.js +33 -0
- package/dist/chunk-YEVOYJGQ.mjs +891 -0
- package/dist/chunk-YFDA5EMH.mjs +1885 -0
- package/dist/chunk-ZT57KKYB.mjs +33 -0
- package/dist/dist-3K7ESMKX.js +4825 -0
- package/dist/dist-SYSRLCAE.mjs +4825 -0
- package/dist/index.js +200 -179
- package/dist/index.mjs +93 -72
- package/dist/index.web-HX5ZVRA3.mjs +28161 -0
- package/dist/index.web-ZRK5OLZ5.js +28161 -0
- package/dist/widgets.js +24 -12
- package/dist/widgets.mjs +13 -1
- package/package.json +4 -3
- package/dist/chunk-E5UAJURN.mjs +0 -2455
- package/dist/chunk-E5UAJURN.mjs.map +0 -1
- package/dist/chunk-MHRKTE55.js +0 -2455
- package/dist/chunk-MHRKTE55.js.map +0 -1
- package/dist/index.css.map +0 -1
- package/dist/index.js.map +0 -1
- package/dist/index.mjs.map +0 -1
- package/dist/widgets.css.map +0 -1
- package/dist/widgets.js.map +0 -1
- package/dist/widgets.mjs.map +0 -1
package/README.md
CHANGED
|
@@ -14,6 +14,12 @@ Aurum is an open-source JavaScript SDK that makes it easy to add wallets to your
|
|
|
14
14
|
pnpm add @aurum-sdk/core
|
|
15
15
|
```
|
|
16
16
|
|
|
17
|
+
> **pnpm local development (link:)**: `@reown/appkit` and `@reown/appkit-adapter-wagmi` are loaded as dynamic requires at runtime rather than bundled inline. With a normal `pnpm add` install this is transparent — pnpm installs them as transitive deps. But if you're linking Aurum locally via `link:` or a workspace `link:` protocol, pnpm's strict isolation may prevent your app's webpack from resolving them. Fix by adding them explicitly to your app's dependencies:
|
|
18
|
+
>
|
|
19
|
+
> ```bash
|
|
20
|
+
> pnpm add @reown/appkit @reown/appkit-adapter-wagmi
|
|
21
|
+
> ```
|
|
22
|
+
|
|
17
23
|
## Quick Start
|
|
18
24
|
|
|
19
25
|
```typescript
|