@dynamic-labs/starknet-core 4.9.8 → 4.9.9

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/CHANGELOG.md CHANGED
@@ -1,4 +1,16 @@
1
1
 
2
+ ### [4.9.9](https://github.com/dynamic-labs/dynamic-auth/compare/v4.9.8...v4.9.9) (2025-03-26)
3
+
4
+
5
+ ### Bug Fixes
6
+
7
+ * **global-wallet-client:** properly clean up the popup state when popup is closed ([#8379](https://github.com/dynamic-labs/dynamic-auth/issues/8379)) ([782963f](https://github.com/dynamic-labs/dynamic-auth/commit/782963f87fcb2658b921ff6cc6f22c63be9714fb))
8
+ * hanging promises when a starknet wallet is connected but locked ([#8376](https://github.com/dynamic-labs/dynamic-auth/issues/8376)) ([a753939](https://github.com/dynamic-labs/dynamic-auth/commit/a7539395d4653be49f000ae51d15347a176b5b6c))
9
+ * token balance list should respect sort from backend ([#8383](https://github.com/dynamic-labs/dynamic-auth/issues/8383)) ([1c3bef4](https://github.com/dynamic-labs/dynamic-auth/commit/1c3bef47dbfd319e2444368a4a503b0839b5ad4b))
10
+
11
+
12
+ * add message auth code to global wallet ([#8354](https://github.com/dynamic-labs/dynamic-auth/issues/8354)) ([c847bf8](https://github.com/dynamic-labs/dynamic-auth/commit/c847bf8d66db54534348622255997f30f4309542))
13
+
2
14
  ### [4.9.8](https://github.com/dynamic-labs/dynamic-auth/compare/v4.9.7...v4.9.8) (2025-03-24)
3
15
 
4
16
 
package/package.cjs CHANGED
@@ -3,6 +3,6 @@
3
3
 
4
4
  Object.defineProperty(exports, '__esModule', { value: true });
5
5
 
6
- var version = "4.9.8";
6
+ var version = "4.9.9";
7
7
 
8
8
  exports.version = version;
package/package.js CHANGED
@@ -1,4 +1,4 @@
1
1
  'use client'
2
- var version = "4.9.8";
2
+ var version = "4.9.9";
3
3
 
4
4
  export { version };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamic-labs/starknet-core",
3
- "version": "4.9.8",
3
+ "version": "4.9.9",
4
4
  "description": "A React SDK for implementing wallet web3 authentication and authorization to your website.",
5
5
  "author": "Dynamic Labs, Inc.",
6
6
  "license": "MIT",
@@ -18,10 +18,10 @@
18
18
  },
19
19
  "homepage": "https://www.dynamic.xyz/",
20
20
  "dependencies": {
21
- "starknet": "6.11.0",
22
- "@dynamic-labs/assert-package-version": "4.9.8",
23
- "@dynamic-labs/rpc-providers": "4.9.8",
24
- "@dynamic-labs/types": "4.9.8"
21
+ "starknet": "6.23.1",
22
+ "@dynamic-labs/assert-package-version": "4.9.9",
23
+ "@dynamic-labs/rpc-providers": "4.9.9",
24
+ "@dynamic-labs/types": "4.9.9"
25
25
  },
26
26
  "peerDependencies": {}
27
27
  }
package/src/index.cjs CHANGED
@@ -8,7 +8,6 @@ var assertPackageVersion = require('@dynamic-labs/assert-package-version');
8
8
  var rpcProviders = require('@dynamic-labs/rpc-providers');
9
9
  var _package = require('../package.cjs');
10
10
 
11
- /* eslint-disable @typescript-eslint/no-namespace */
12
11
  assertPackageVersion.assertPackageVersion('@dynamic-labs/starknet-core', _package.version);
13
12
  rpcProviders.ChainRpcProviders.getStarknetRpcProviderByChainId = (config, chainId) => {
14
13
  var _a;
package/src/index.js CHANGED
@@ -5,7 +5,6 @@ import { ChainRpcProviders, ProviderChain } from '@dynamic-labs/rpc-providers';
5
5
  export * from '@dynamic-labs/rpc-providers';
6
6
  import { version } from '../package.js';
7
7
 
8
- /* eslint-disable @typescript-eslint/no-namespace */
9
8
  assertPackageVersion('@dynamic-labs/starknet-core', version);
10
9
  ChainRpcProviders.getStarknetRpcProviderByChainId = (config, chainId) => {
11
10
  var _a;