@dynamic-labs/aleo 4.91.4 → 4.91.6
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,20 @@
|
|
|
1
1
|
|
|
2
|
+
### [4.91.6](https://github.com/dynamic-labs/dynamic-auth/compare/v4.91.5...v4.91.6) (2026-07-03)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### Bug Fixes
|
|
6
|
+
|
|
7
|
+
* **react-native:** ensure webview loads on cold start ([#11787](https://github.com/dynamic-labs/dynamic-auth/issues/11787)) ([8f3dc8e](https://github.com/dynamic-labs/dynamic-auth/commit/8f3dc8e2a7de06f012ea6e922d4e76aee1c84c1a))
|
|
8
|
+
|
|
9
|
+
### [4.91.5](https://github.com/dynamic-labs/dynamic-auth/compare/v4.91.4...v4.91.5) (2026-07-02)
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Bug Fixes
|
|
13
|
+
|
|
14
|
+
* revoke WaaS signed-session callback on client rebuild to stop iOS nonce race ([#11766](https://github.com/dynamic-labs/dynamic-auth/issues/11766)) ([c895b5d](https://github.com/dynamic-labs/dynamic-auth/commit/c895b5d0987d62a9f5597741dbeae0ec7fedfe5b))
|
|
15
|
+
* **sdk-react-core:** allow sendOneTimeCode to target non-primary chain wallets ([#11777](https://github.com/dynamic-labs/dynamic-auth/issues/11777)) ([63f82af](https://github.com/dynamic-labs/dynamic-auth/commit/63f82af7c52be595bc2948ec88ee9c919ac9275a))
|
|
16
|
+
* **webview-controller:** resolve post-login wallet race in Viem and ZeroDev controllers ([#11774](https://github.com/dynamic-labs/dynamic-auth/issues/11774)) ([95ed26e](https://github.com/dynamic-labs/dynamic-auth/commit/95ed26eee09d9aff5a5af6517ab7e1360ef5f337))
|
|
17
|
+
|
|
2
18
|
### [4.91.4](https://github.com/dynamic-labs/dynamic-auth/compare/v4.91.3...v4.91.4) (2026-07-01)
|
|
3
19
|
|
|
4
20
|
|
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.91.
|
|
3
|
+
"version": "4.91.6",
|
|
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,19 +18,19 @@
|
|
|
18
18
|
},
|
|
19
19
|
"homepage": "https://www.dynamic.xyz/",
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@dynamic-labs/assert-package-version": "4.91.
|
|
21
|
+
"@dynamic-labs/assert-package-version": "4.91.6",
|
|
22
22
|
"@dynamic-labs-sdk/client": "1.12.1",
|
|
23
23
|
"@dynamic-labs/sdk-api-core": "0.0.1046",
|
|
24
24
|
"@provablehq/aleo-wallet-adaptor-core": "0.3.0-alpha.3",
|
|
25
25
|
"@provablehq/aleo-wallet-adaptor-shield": "0.3.0-alpha.3",
|
|
26
26
|
"@provablehq/aleo-wallet-standard": "0.3.0-alpha.3",
|
|
27
27
|
"@provablehq/aleo-types": "0.3.0-alpha.3",
|
|
28
|
-
"@dynamic-labs/logger": "4.91.
|
|
29
|
-
"@dynamic-labs/types": "4.91.
|
|
30
|
-
"@dynamic-labs/utils": "4.91.
|
|
31
|
-
"@dynamic-labs/waas": "4.91.
|
|
32
|
-
"@dynamic-labs/wallet-book": "4.91.
|
|
33
|
-
"@dynamic-labs/wallet-connector-core": "4.91.
|
|
28
|
+
"@dynamic-labs/logger": "4.91.6",
|
|
29
|
+
"@dynamic-labs/types": "4.91.6",
|
|
30
|
+
"@dynamic-labs/utils": "4.91.6",
|
|
31
|
+
"@dynamic-labs/waas": "4.91.6",
|
|
32
|
+
"@dynamic-labs/wallet-book": "4.91.6",
|
|
33
|
+
"@dynamic-labs/wallet-connector-core": "4.91.6"
|
|
34
34
|
},
|
|
35
35
|
"peerDependencies": {}
|
|
36
36
|
}
|
|
@@ -39,6 +39,7 @@ declare const DynamicWaasAleoConnector_base: (abstract new (...args: any[]) => {
|
|
|
39
39
|
relayUrl?: string | undefined;
|
|
40
40
|
baseClientKeysharesRelayApiUrl?: string | undefined;
|
|
41
41
|
dynamicWaasClient: import("@dynamic-labs-wallet/browser-wallet-client").DynamicWalletClient | undefined;
|
|
42
|
+
revokeSignedSession: (() => void) | undefined;
|
|
42
43
|
chainName: string;
|
|
43
44
|
authMode: "cookie" | "header";
|
|
44
45
|
logger: Logger;
|
|
@@ -70,6 +71,9 @@ declare const DynamicWaasAleoConnector_base: (abstract new (...args: any[]) => {
|
|
|
70
71
|
accountAddress: string;
|
|
71
72
|
password?: string | undefined;
|
|
72
73
|
}): Promise<void>;
|
|
74
|
+
createRevocableSignedSessionCallback(): {
|
|
75
|
+
getSignedSessionId: () => Promise<string>;
|
|
76
|
+
};
|
|
73
77
|
createDynamicWaasClient(traceContext?: import("dist/packages/waas/utils/instrumentation").TraceContext | undefined): Promise<import("@dynamic-labs-wallet/browser-wallet-client").DynamicWalletClient>;
|
|
74
78
|
getWaasWalletClient(traceContext?: import("dist/packages/waas/utils/instrumentation").TraceContext | undefined, { forceRebuild }?: {
|
|
75
79
|
forceRebuild?: boolean | undefined;
|
|
@@ -167,23 +171,7 @@ declare const DynamicWaasAleoConnector_base: (abstract new (...args: any[]) => {
|
|
|
167
171
|
}): Promise<import("@dynamic-labs-wallet/browser-wallet-client").WalletRecoveryState>;
|
|
168
172
|
endSession(reason?: LogoutReason | undefined): Promise<void>;
|
|
169
173
|
getActiveAccountAddress(): Promise<string | undefined>;
|
|
170
|
-
getConnectedAccounts(): Promise<string[]>;
|
|
171
|
-
* Builds the `(functionName, inputs, inputTypes)` triple for a
|
|
172
|
-
* `<program>/transfer_public_to_private` shield call to self. Mirrors
|
|
173
|
-
* `buildTransferInputs` shape — three program kinds, three signatures:
|
|
174
|
-
*
|
|
175
|
-
* - `credits` u64 amounts. inputs `[recipient, amount]`.
|
|
176
|
-
* - `stablecoin` u128 amounts. inputs `[recipient, amount]`. Sealance
|
|
177
|
-
* proof is NOT appended for `transfer_public_to_private`
|
|
178
|
-
* (verified against the iframe's
|
|
179
|
-
* `SEALANCE_FUNCTIONS_REQUIRING_PROOF` set, which only
|
|
180
|
-
* covers `transfer_private` / `transfer_private_to_public`).
|
|
181
|
-
* - `arc21` u128 amounts. inputs `[token_id, recipient, amount,
|
|
182
|
-
* external_auth_required]`. Token_id from the registry;
|
|
183
|
-
* external_auth from the per-token registry entry
|
|
184
|
-
* (defaults to `false` when unset). Verified against
|
|
185
|
-
* `token_registry.aleo` source via the Provable explorer.
|
|
186
|
-
*/
|
|
174
|
+
getConnectedAccounts(): Promise<string[]>;
|
|
187
175
|
generateTraceId(): string;
|
|
188
176
|
buildErrorInstrumentContext(error: unknown): {
|
|
189
177
|
errorCode: string | import("@dynamic-labs/utils").ErrorCode;
|