@dynamic-labs/aleo 4.67.0 → 4.67.2
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 +21 -0
- package/package.cjs +1 -1
- package/package.js +1 -1
- package/package.json +6 -6
- package/src/connectors/AleoWalletAdapterConnector/AleoWalletAdapterConnector.cjs +1 -1
- package/src/connectors/AleoWalletAdapterConnector/AleoWalletAdapterConnector.js +1 -1
- package/src/wallet/AleoWallet/AleoWallet.cjs +4 -1
- package/src/wallet/AleoWallet/AleoWallet.js +4 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,25 @@
|
|
|
1
1
|
|
|
2
|
+
### [4.67.2](https://github.com/dynamic-labs/dynamic-auth/compare/v4.67.1...v4.67.2) (2026-03-13)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### Bug Fixes
|
|
6
|
+
|
|
7
|
+
* add fallback connectors for all chains and fix wallet.chain mismatch for SUI wallets ([#10629](https://github.com/dynamic-labs/dynamic-auth/issues/10629)) ([dcdf5fc](https://github.com/dynamic-labs/dynamic-auth/commit/dcdf5fc5c424379cde2eecfd2d3b14fb6fe3819b))
|
|
8
|
+
|
|
9
|
+
### [4.67.1](https://github.com/dynamic-labs/dynamic-auth/compare/v4.67.0...v4.67.1) (2026-03-10)
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Features
|
|
13
|
+
|
|
14
|
+
* 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))
|
|
15
|
+
* **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))
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Bug Fixes
|
|
19
|
+
|
|
20
|
+
* **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))
|
|
21
|
+
* 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))
|
|
22
|
+
|
|
2
23
|
## [4.67.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.66.0...v4.67.0) (2026-03-09)
|
|
3
24
|
|
|
4
25
|
|
package/package.cjs
CHANGED
package/package.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dynamic-labs/aleo",
|
|
3
|
-
"version": "4.67.
|
|
3
|
+
"version": "4.67.2",
|
|
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,15 +18,15 @@
|
|
|
18
18
|
},
|
|
19
19
|
"homepage": "https://www.dynamic.xyz/",
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@dynamic-labs/assert-package-version": "4.67.
|
|
21
|
+
"@dynamic-labs/assert-package-version": "4.67.2",
|
|
22
22
|
"@provablehq/aleo-wallet-adaptor-core": "0.3.0-alpha.3",
|
|
23
23
|
"@provablehq/aleo-wallet-adaptor-shield": "0.3.0-alpha.3",
|
|
24
24
|
"@provablehq/aleo-wallet-standard": "0.3.0-alpha.3",
|
|
25
25
|
"@provablehq/aleo-types": "0.3.0-alpha.3",
|
|
26
|
-
"@dynamic-labs/types": "4.67.
|
|
27
|
-
"@dynamic-labs/utils": "4.67.
|
|
28
|
-
"@dynamic-labs/wallet-book": "4.67.
|
|
29
|
-
"@dynamic-labs/wallet-connector-core": "4.67.
|
|
26
|
+
"@dynamic-labs/types": "4.67.2",
|
|
27
|
+
"@dynamic-labs/utils": "4.67.2",
|
|
28
|
+
"@dynamic-labs/wallet-book": "4.67.2",
|
|
29
|
+
"@dynamic-labs/wallet-connector-core": "4.67.2"
|
|
30
30
|
},
|
|
31
31
|
"peerDependencies": {}
|
|
32
32
|
}
|
|
@@ -252,7 +252,7 @@ class AleoWalletAdapterConnector extends AleoWalletConnector.AleoWalletConnector
|
|
|
252
252
|
return _super.requestTransaction.call(this, transaction);
|
|
253
253
|
}
|
|
254
254
|
if (!this.adapter.connected) {
|
|
255
|
-
|
|
255
|
+
yield this.connect();
|
|
256
256
|
}
|
|
257
257
|
const [transition] = transaction.transitions;
|
|
258
258
|
if (!transition) {
|
|
@@ -248,7 +248,7 @@ class AleoWalletAdapterConnector extends AleoWalletConnector {
|
|
|
248
248
|
return _super.requestTransaction.call(this, transaction);
|
|
249
249
|
}
|
|
250
250
|
if (!this.adapter.connected) {
|
|
251
|
-
|
|
251
|
+
yield this.connect();
|
|
252
252
|
}
|
|
253
253
|
const [transition] = transaction.transitions;
|
|
254
254
|
if (!transition) {
|
|
@@ -23,7 +23,10 @@ class AleoWallet extends walletConnectorCore.Wallet {
|
|
|
23
23
|
transitions: [
|
|
24
24
|
{
|
|
25
25
|
functionName: 'transfer_public',
|
|
26
|
-
inputs: [
|
|
26
|
+
inputs: [
|
|
27
|
+
toAddress,
|
|
28
|
+
`${microcredits}${(token === null || token === void 0 ? void 0 : token.address) ? 'u128' : 'u64'}`,
|
|
29
|
+
],
|
|
27
30
|
program,
|
|
28
31
|
},
|
|
29
32
|
],
|
|
@@ -19,7 +19,10 @@ class AleoWallet extends Wallet {
|
|
|
19
19
|
transitions: [
|
|
20
20
|
{
|
|
21
21
|
functionName: 'transfer_public',
|
|
22
|
-
inputs: [
|
|
22
|
+
inputs: [
|
|
23
|
+
toAddress,
|
|
24
|
+
`${microcredits}${(token === null || token === void 0 ? void 0 : token.address) ? 'u128' : 'u64'}`,
|
|
25
|
+
],
|
|
23
26
|
program,
|
|
24
27
|
},
|
|
25
28
|
],
|