@dynamic-labs/wallet-connector-core 4.70.0 → 4.71.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 +8 -8
- package/src/utils/getChainInfo/getChainInfo.cjs +1 -0
- package/src/utils/getChainInfo/getChainInfo.d.ts +1 -1
- package/src/utils/getChainInfo/getChainInfo.js +1 -0
- package/src/utils/shouldLowercaseAddress.cjs +1 -1
- package/src/utils/shouldLowercaseAddress.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,17 @@
|
|
|
1
1
|
|
|
2
|
+
## [4.71.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.70.0...v4.71.0) (2026-03-24)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
* add Tempo chain connector and core type definitions ([#10672](https://github.com/dynamic-labs/dynamic-auth/issues/10672)) ([0439c15](https://github.com/dynamic-labs/dynamic-auth/commit/0439c153238359083b9f226dcd2ebf6d83e26519))
|
|
8
|
+
* add verifySocial method to demo site step-up auth methods ([#10721](https://github.com/dynamic-labs/dynamic-auth/issues/10721)) ([b9ef517](https://github.com/dynamic-labs/dynamic-auth/commit/b9ef5173df3e3ed08f718de49b036ea899dc1832))
|
|
9
|
+
* **demo:** add Tempo chain support to demo app ([#10674](https://github.com/dynamic-labs/dynamic-auth/issues/10674)) ([a5918fc](https://github.com/dynamic-labs/dynamic-auth/commit/a5918fc2ab0821e7f025aa470573129f71de33cc))
|
|
10
|
+
* repurpose verifyWithExternalJwt for elevated access token requests ([#10743](https://github.com/dynamic-labs/dynamic-auth/issues/10743)) ([d1abda0](https://github.com/dynamic-labs/dynamic-auth/commit/d1abda0111d68c78226d30bd0630e6e341dedad9))
|
|
11
|
+
* **sdk:** add Tempo chain support to UI components ([#10673](https://github.com/dynamic-labs/dynamic-auth/issues/10673)) ([aec9fbb](https://github.com/dynamic-labs/dynamic-auth/commit/aec9fbb20754a2935bffe106e7e8715f46be3de7))
|
|
12
|
+
* support multi-chain wallet creation in createWallet ([#10694](https://github.com/dynamic-labs/dynamic-auth/issues/10694)) ([0b6b57f](https://github.com/dynamic-labs/dynamic-auth/commit/0b6b57f4179c35d1f86d1c8c9c40f52cb307c849))
|
|
13
|
+
* wire up elevatedAccessToken for sign, reshare, and refresh operations ([#10737](https://github.com/dynamic-labs/dynamic-auth/issues/10737)) ([f9d5c76](https://github.com/dynamic-labs/dynamic-auth/commit/f9d5c768037aff4f5d7994b6bc6c338621a6ee6b))
|
|
14
|
+
|
|
2
15
|
## [4.70.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.69.0...v4.70.0) (2026-03-23)
|
|
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.71.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,13 +19,13 @@
|
|
|
19
19
|
"homepage": "https://www.dynamic.xyz/",
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@dynamic-labs/sdk-api-core": "0.0.909",
|
|
22
|
-
"@dynamic-labs-wallet/browser-wallet-client": "0.0.
|
|
23
|
-
"@dynamic-labs/assert-package-version": "4.
|
|
24
|
-
"@dynamic-labs/logger": "4.
|
|
25
|
-
"@dynamic-labs/rpc-providers": "4.
|
|
26
|
-
"@dynamic-labs/types": "4.
|
|
27
|
-
"@dynamic-labs/utils": "4.
|
|
28
|
-
"@dynamic-labs/wallet-book": "4.
|
|
22
|
+
"@dynamic-labs-wallet/browser-wallet-client": "0.0.314",
|
|
23
|
+
"@dynamic-labs/assert-package-version": "4.71.0",
|
|
24
|
+
"@dynamic-labs/logger": "4.71.0",
|
|
25
|
+
"@dynamic-labs/rpc-providers": "4.71.0",
|
|
26
|
+
"@dynamic-labs/types": "4.71.0",
|
|
27
|
+
"@dynamic-labs/utils": "4.71.0",
|
|
28
|
+
"@dynamic-labs/wallet-book": "4.71.0",
|
|
29
29
|
"eventemitter3": "5.0.1"
|
|
30
30
|
},
|
|
31
31
|
"peerDependencies": {}
|
|
@@ -23,6 +23,7 @@ const chainsInfo = [
|
|
|
23
23
|
createChainInfo('Starknet', 'starknet', 'ETH'),
|
|
24
24
|
createChainInfo('Stellar', 'stellar', 'XLM'),
|
|
25
25
|
createChainInfo('Sui', 'sui', 'SUI'),
|
|
26
|
+
createChainInfo('Tempo', 'tempo', 'TEMPO'),
|
|
26
27
|
createChainInfo('Tron', 'tron', 'TRON'),
|
|
27
28
|
createChainInfo('TON', 'ton', 'TON'),
|
|
28
29
|
];
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ChainInfo } from '../..';
|
|
2
|
-
export type ChainName = 'aleo' | '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' | 'tempo' | 'ton' | 'tron';
|
|
3
3
|
export type ChainDisplayOverrides = Partial<Record<ChainName, {
|
|
4
4
|
displayName?: string;
|
|
5
5
|
}>>;
|
|
@@ -19,6 +19,7 @@ const chainsInfo = [
|
|
|
19
19
|
createChainInfo('Starknet', 'starknet', 'ETH'),
|
|
20
20
|
createChainInfo('Stellar', 'stellar', 'XLM'),
|
|
21
21
|
createChainInfo('Sui', 'sui', 'SUI'),
|
|
22
|
+
createChainInfo('Tempo', 'tempo', 'TEMPO'),
|
|
22
23
|
createChainInfo('Tron', 'tron', 'TRON'),
|
|
23
24
|
createChainInfo('TON', 'ton', 'TON'),
|
|
24
25
|
];
|
|
@@ -7,6 +7,6 @@ const shouldLowercaseAddress = (chain) =>
|
|
|
7
7
|
// these are standard from CAIP-2: https://github.com/ChainAgnostic/CAIPs/blob/master/CAIPs/caip-2.md
|
|
8
8
|
// see also: https://github.com/ChainAgnostic/namespaces
|
|
9
9
|
// note: no standard namespace currently exists for flow
|
|
10
|
-
['eip155', 'flow', 'evm', 'eth', 'avax', 'matic'].includes(chain.toLowerCase());
|
|
10
|
+
['eip155', 'flow', 'evm', 'eth', 'avax', 'matic', 'tempo'].includes(chain.toLowerCase());
|
|
11
11
|
|
|
12
12
|
exports.shouldLowercaseAddress = shouldLowercaseAddress;
|
|
@@ -3,6 +3,6 @@ const shouldLowercaseAddress = (chain) =>
|
|
|
3
3
|
// these are standard from CAIP-2: https://github.com/ChainAgnostic/CAIPs/blob/master/CAIPs/caip-2.md
|
|
4
4
|
// see also: https://github.com/ChainAgnostic/namespaces
|
|
5
5
|
// note: no standard namespace currently exists for flow
|
|
6
|
-
['eip155', 'flow', 'evm', 'eth', 'avax', 'matic'].includes(chain.toLowerCase());
|
|
6
|
+
['eip155', 'flow', 'evm', 'eth', 'avax', 'matic', 'tempo'].includes(chain.toLowerCase());
|
|
7
7
|
|
|
8
8
|
export { shouldLowercaseAddress };
|