@dynamic-labs/wallet-connector-core 4.67.0 → 4.67.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.
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,18 @@
|
|
|
1
1
|
|
|
2
|
+
### [4.67.1](https://github.com/dynamic-labs/dynamic-auth/compare/v4.67.0...v4.67.1) (2026-03-10)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
* add nonce manager and improve transaction handling ([#10612](https://github.com/dynamic-labs/dynamic-auth/issues/10612)) ([e373f12](https://github.com/dynamic-labs/dynamic-auth/commit/e373f1248beee2f12e7b4aec5a72d55b9555ad00))
|
|
8
|
+
* **sdk-react-core:** commonize step-up auth around useStepUpAuthentication ([#10586](https://github.com/dynamic-labs/dynamic-auth/issues/10586)) ([6e31e66](https://github.com/dynamic-labs/dynamic-auth/commit/6e31e6673d8861bc54677ea79da31872d7ad4c4e))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **sdk-react-core:** hide AA warning for EIP-7702 smart wallets, show for ERC-4337 ([#10614](https://github.com/dynamic-labs/dynamic-auth/issues/10614)) ([5c46d42](https://github.com/dynamic-labs/dynamic-auth/commit/5c46d4277472cb31ddde7809d27ef7920964d548))
|
|
14
|
+
* use 2-column grid layout for backup codes to prevent overflow in minimal theme ([#10607](https://github.com/dynamic-labs/dynamic-auth/issues/10607)) ([84adf87](https://github.com/dynamic-labs/dynamic-auth/commit/84adf872aae0a7fedf961b76f5004535e657b415))
|
|
15
|
+
|
|
2
16
|
## [4.67.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.66.0...v4.67.0) (2026-03-09)
|
|
3
17
|
|
|
4
18
|
|
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.67.
|
|
3
|
+
"version": "4.67.1",
|
|
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",
|
|
@@ -20,12 +20,12 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@dynamic-labs/sdk-api-core": "0.0.881",
|
|
22
22
|
"@dynamic-labs-wallet/browser-wallet-client": "0.0.289",
|
|
23
|
-
"@dynamic-labs/assert-package-version": "4.67.
|
|
24
|
-
"@dynamic-labs/logger": "4.67.
|
|
25
|
-
"@dynamic-labs/rpc-providers": "4.67.
|
|
26
|
-
"@dynamic-labs/types": "4.67.
|
|
27
|
-
"@dynamic-labs/utils": "4.67.
|
|
28
|
-
"@dynamic-labs/wallet-book": "4.67.
|
|
23
|
+
"@dynamic-labs/assert-package-version": "4.67.1",
|
|
24
|
+
"@dynamic-labs/logger": "4.67.1",
|
|
25
|
+
"@dynamic-labs/rpc-providers": "4.67.1",
|
|
26
|
+
"@dynamic-labs/types": "4.67.1",
|
|
27
|
+
"@dynamic-labs/utils": "4.67.1",
|
|
28
|
+
"@dynamic-labs/wallet-book": "4.67.1",
|
|
29
29
|
"eventemitter3": "5.0.1"
|
|
30
30
|
},
|
|
31
31
|
"peerDependencies": {}
|
|
@@ -10,6 +10,7 @@ const createChainInfo = (blockchainName, name, symbol, displayName) => ({
|
|
|
10
10
|
symbol: symbol,
|
|
11
11
|
});
|
|
12
12
|
const chainsInfo = [
|
|
13
|
+
createChainInfo('Aleo', 'aleo', 'ALEO'),
|
|
13
14
|
createChainInfo('Algorand', 'algorand', 'ALGO'),
|
|
14
15
|
createChainInfo('Aptos', 'aptos', 'APTOS'),
|
|
15
16
|
createChainInfo('Bitcoin', 'bitcoin', 'BTC'),
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ChainInfo } from '../..';
|
|
2
|
-
export type ChainName = 'algorand' | 'aptos' | 'bitcoin' | 'cosmos' | 'eclipse' | 'evm' | 'flow' | 'solana' | 'spark' | 'starknet' | 'stellar' | 'sui' | 'ton' | 'tron';
|
|
2
|
+
export type ChainName = 'aleo' | 'algorand' | 'aptos' | 'bitcoin' | 'cosmos' | 'eclipse' | 'evm' | 'flow' | 'solana' | 'spark' | 'starknet' | 'stellar' | 'sui' | 'ton' | 'tron';
|
|
3
3
|
export type ChainDisplayOverrides = Partial<Record<ChainName, {
|
|
4
4
|
displayName?: string;
|
|
5
5
|
}>>;
|
|
@@ -6,6 +6,7 @@ const createChainInfo = (blockchainName, name, symbol, displayName) => ({
|
|
|
6
6
|
symbol: symbol,
|
|
7
7
|
});
|
|
8
8
|
const chainsInfo = [
|
|
9
|
+
createChainInfo('Aleo', 'aleo', 'ALEO'),
|
|
9
10
|
createChainInfo('Algorand', 'algorand', 'ALGO'),
|
|
10
11
|
createChainInfo('Aptos', 'aptos', 'APTOS'),
|
|
11
12
|
createChainInfo('Bitcoin', 'bitcoin', 'BTC'),
|