@dynamic-labs/wallet-connector-core 4.29.6 → 4.30.0
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 +13 -0
- package/package.cjs +1 -1
- package/package.js +1 -1
- package/package.json +7 -7
- package/src/WalletConnectorBase/types.cjs +1 -0
- package/src/WalletConnectorBase/types.d.ts +1 -1
- package/src/WalletConnectorBase/types.js +1 -0
- package/src/utils/getChainInfo/getChainInfo.cjs +6 -0
- package/src/utils/getChainInfo/getChainInfo.d.ts +1 -1
- package/src/utils/getChainInfo/getChainInfo.js +6 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,17 @@
|
|
|
1
1
|
|
|
2
|
+
## [4.30.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.29.6...v4.30.0) (2025-09-02)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
* add BaseAccount wallet support ([#9373](https://github.com/dynamic-labs/dynamic-auth/issues/9373)) ([2d5e601](https://github.com/dynamic-labs/dynamic-auth/commit/2d5e601eeca34653b503302c73da6fbbee98810e))
|
|
8
|
+
* add Spark chain support ([#9430](https://github.com/dynamic-labs/dynamic-auth/issues/9430)) ([c01c31e](https://github.com/dynamic-labs/dynamic-auth/commit/c01c31eed7824871028a731bb5b5ce3004b4d5c7))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* unlink oauth with 7702 account ([#9431](https://github.com/dynamic-labs/dynamic-auth/issues/9431)) ([0aae4a4](https://github.com/dynamic-labs/dynamic-auth/commit/0aae4a4e27e56083ff1a9e068048461d5d436569))
|
|
14
|
+
|
|
2
15
|
### [4.29.6](https://github.com/dynamic-labs/dynamic-auth/compare/v4.29.5...v4.29.6) (2025-09-01)
|
|
3
16
|
|
|
4
17
|
|
package/package.cjs
CHANGED
package/package.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dynamic-labs/wallet-connector-core",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.30.0",
|
|
4
4
|
"description": "Core package for utilities and types for handling multiple wallet/chain support Dynamic SDK",
|
|
5
5
|
"author": "Dynamic Labs, Inc.",
|
|
6
6
|
"license": "MIT",
|
|
@@ -19,12 +19,12 @@
|
|
|
19
19
|
"homepage": "https://www.dynamic.xyz/",
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@dynamic-labs/sdk-api-core": "0.0.762",
|
|
22
|
-
"@dynamic-labs/assert-package-version": "4.
|
|
23
|
-
"@dynamic-labs/logger": "4.
|
|
24
|
-
"@dynamic-labs/rpc-providers": "4.
|
|
25
|
-
"@dynamic-labs/types": "4.
|
|
26
|
-
"@dynamic-labs/utils": "4.
|
|
27
|
-
"@dynamic-labs/wallet-book": "4.
|
|
22
|
+
"@dynamic-labs/assert-package-version": "4.30.0",
|
|
23
|
+
"@dynamic-labs/logger": "4.30.0",
|
|
24
|
+
"@dynamic-labs/rpc-providers": "4.30.0",
|
|
25
|
+
"@dynamic-labs/types": "4.30.0",
|
|
26
|
+
"@dynamic-labs/utils": "4.30.0",
|
|
27
|
+
"@dynamic-labs/wallet-book": "4.30.0",
|
|
28
28
|
"eventemitter3": "5.0.1"
|
|
29
29
|
},
|
|
30
30
|
"peerDependencies": {}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import EventEmitter from 'eventemitter3';
|
|
2
2
|
import { WalletConnectorCore } from '../types';
|
|
3
|
-
export declare const Chains: readonly ["ETH", "FLOW", "SOL", "EVM", "ALGO", "STARK", "ATOM", "COSMOS", "BTC", "ECLIPSE", "SUI"];
|
|
3
|
+
export declare const Chains: readonly ["ETH", "FLOW", "SOL", "EVM", "ALGO", "STARK", "ATOM", "COSMOS", "BTC", "ECLIPSE", "SUI", "SPARK"];
|
|
4
4
|
export type Chain = typeof Chains[number];
|
|
5
5
|
export declare const socialProviders: readonly ["google", "facebook", "apple", "github", "bitbucket", "gitlab", "linkedin", "twitter", "discord", "twitch", "microsoft"];
|
|
6
6
|
export type SocialProvider = typeof socialProviders[number];
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ChainInfo } from '../..';
|
|
2
|
-
export type ChainName = 'algorand' | 'eclipse' | 'bitcoin' | 'evm' | 'flow' | 'solana' | 'starknet' | 'cosmos' | 'sui';
|
|
2
|
+
export type ChainName = 'algorand' | 'eclipse' | 'bitcoin' | 'evm' | 'flow' | 'solana' | 'starknet' | 'cosmos' | 'sui' | 'spark';
|
|
3
3
|
export type ChainDisplayOverrides = Partial<Record<ChainName, {
|
|
4
4
|
displayName?: string;
|
|
5
5
|
}>>;
|