@abstraxn/signer-react 4.0.0 → 4.0.1

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/package.json +3 -2
package/CHANGELOG.md CHANGED
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [4.0.1] - 2026-09-25
9
+
10
+ ### Dependencies
11
+
12
+ - `@abstraxn/signer-core` bumped to `^2.2.1`. Republish so installs pull the build that actually exports the Turnkey balance helpers. `2.2.0` on npm shipped a stale `dist` without them.
13
+
8
14
  ## [4.0.0] - 2026-09-24
9
15
 
10
16
  ### Fixed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abstraxn/signer-react",
3
- "version": "4.0.0",
3
+ "version": "4.0.1",
4
4
  "description": "React SDK for Abstraxn Wallet - React components, hooks, and providers for seamless Web3 wallet integration",
5
5
  "main": "./dist/src/index.js",
6
6
  "module": "./dist/src/index.js",
@@ -26,6 +26,7 @@
26
26
  ],
27
27
  "scripts": {
28
28
  "build": "rimraf dist && tsc && node scripts/build-css-modules.mjs && cp -r src/components/OnboardingUI/*.css dist/src/components/OnboardingUI/ 2>/dev/null || true && cp src/*.css dist/src/ 2>/dev/null || true && mkdir -p dist/src/components/WalletModal/components && cp src/components/WalletModal/components/*.css dist/src/components/WalletModal/components/ 2>/dev/null || true",
29
+ "prepublishOnly": "npm run build",
29
30
  "test": "vitest run"
30
31
  },
31
32
  "author": "Team Abstraxn <developer@abstraxn.com> (https://www.abstraxn.com/)",
@@ -41,7 +42,7 @@
41
42
  "access": "public"
42
43
  },
43
44
  "dependencies": {
44
- "@abstraxn/signer-core": "^2.2.0",
45
+ "@abstraxn/signer-core": "^2.2.1",
45
46
  "@abstraxn/solana-relayer": "^1.1.0",
46
47
  "@solana/wallet-adapter-base": "^0.9.27",
47
48
  "@solana/wallet-adapter-react": "^0.15.39",