@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 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