@dynamic-labs/starknet-core 4.9.8 → 4.9.10
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 +19 -0
- package/package.cjs +1 -1
- package/package.js +1 -1
- package/package.json +5 -5
- package/src/index.cjs +0 -1
- package/src/index.js +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,23 @@
|
|
|
1
1
|
|
|
2
|
+
### [4.9.10](https://github.com/dynamic-labs/dynamic-auth/compare/v4.9.9...v4.9.10) (2025-03-26)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### Bug Fixes
|
|
6
|
+
|
|
7
|
+
* auto select primary wallet when embedded wallets are disabled ([#8374](https://github.com/dynamic-labs/dynamic-auth/issues/8374)) ([780f3f1](https://github.com/dynamic-labs/dynamic-auth/commit/780f3f16ebd06dd8bc41fa85e8b4393c906989e2))
|
|
8
|
+
|
|
9
|
+
### [4.9.9](https://github.com/dynamic-labs/dynamic-auth/compare/v4.9.8...v4.9.9) (2025-03-26)
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Bug Fixes
|
|
13
|
+
|
|
14
|
+
* **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))
|
|
15
|
+
* 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))
|
|
16
|
+
* 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))
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
* 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))
|
|
20
|
+
|
|
2
21
|
### [4.9.8](https://github.com/dynamic-labs/dynamic-auth/compare/v4.9.7...v4.9.8) (2025-03-24)
|
|
3
22
|
|
|
4
23
|
|
package/package.cjs
CHANGED
package/package.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dynamic-labs/starknet-core",
|
|
3
|
-
"version": "4.9.
|
|
3
|
+
"version": "4.9.10",
|
|
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.
|
|
22
|
-
"@dynamic-labs/assert-package-version": "4.9.
|
|
23
|
-
"@dynamic-labs/rpc-providers": "4.9.
|
|
24
|
-
"@dynamic-labs/types": "4.9.
|
|
21
|
+
"starknet": "6.23.1",
|
|
22
|
+
"@dynamic-labs/assert-package-version": "4.9.10",
|
|
23
|
+
"@dynamic-labs/rpc-providers": "4.9.10",
|
|
24
|
+
"@dynamic-labs/types": "4.9.10"
|
|
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;
|