@dynamic-labs/waas-evm 4.9.5 → 4.9.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 +15 -0
- package/package.cjs +1 -1
- package/package.js +1 -1
- package/package.json +8 -8
- package/src/DynamicWaasEVMConnector.cjs +1 -1
- package/src/DynamicWaasEVMConnector.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,19 @@
|
|
|
1
1
|
|
|
2
|
+
### [4.9.6](https://github.com/dynamic-labs/dynamic-auth/compare/v4.9.5...v4.9.6) (2025-03-21)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
* add initial sui support ([#8317](https://github.com/dynamic-labs/dynamic-auth/issues/8317)) ([88c0234](https://github.com/dynamic-labs/dynamic-auth/commit/88c023483bad5736f38cb313b035279460f6e256))
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### Bug Fixes
|
|
11
|
+
|
|
12
|
+
* allow metmask sdk to retry connection ([#8322](https://github.com/dynamic-labs/dynamic-auth/issues/8322)) ([603ed99](https://github.com/dynamic-labs/dynamic-auth/commit/603ed99de3b5d90ac4f5eabcdcd3b2e90863298f))
|
|
13
|
+
* css for profile page without embedded wallets ([#8339](https://github.com/dynamic-labs/dynamic-auth/issues/8339)) ([7f696e9](https://github.com/dynamic-labs/dynamic-auth/commit/7f696e9986ddd899d140640f9af7cfd2dcd7c37a))
|
|
14
|
+
* ensure metamask connector can get display uri for multiple connections ([#8324](https://github.com/dynamic-labs/dynamic-auth/issues/8324)) ([1d95f08](https://github.com/dynamic-labs/dynamic-auth/commit/1d95f089589779e8ef078b80bd84fa0754179696))
|
|
15
|
+
* pass HttpTransportConfig to WalletClient, not just PublicClient ([#8333](https://github.com/dynamic-labs/dynamic-auth/issues/8333)) ([a0ddd10](https://github.com/dynamic-labs/dynamic-auth/commit/a0ddd10f1df57555cf0a3ed777f5d354eb140582))
|
|
16
|
+
|
|
2
17
|
### [4.9.5](https://github.com/dynamic-labs/dynamic-auth/compare/v4.9.4...v4.9.5) (2025-03-19)
|
|
3
18
|
|
|
4
19
|
|
package/package.cjs
CHANGED
package/package.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dynamic-labs/waas-evm",
|
|
3
|
-
"version": "4.9.
|
|
3
|
+
"version": "4.9.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,14 +18,14 @@
|
|
|
18
18
|
},
|
|
19
19
|
"homepage": "https://www.dynamic.xyz/",
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@dynamic-labs-wallet/evm": "0.0.
|
|
21
|
+
"@dynamic-labs-wallet/evm": "0.0.47",
|
|
22
22
|
"viem": "2.21.55",
|
|
23
|
-
"@dynamic-labs/assert-package-version": "4.9.
|
|
24
|
-
"@dynamic-labs/ethereum-core": "4.9.
|
|
25
|
-
"@dynamic-labs/logger": "4.9.
|
|
26
|
-
"@dynamic-labs/types": "4.9.
|
|
27
|
-
"@dynamic-labs/utils": "4.9.
|
|
28
|
-
"@dynamic-labs/wallet-connector-core": "4.9.
|
|
23
|
+
"@dynamic-labs/assert-package-version": "4.9.6",
|
|
24
|
+
"@dynamic-labs/ethereum-core": "4.9.6",
|
|
25
|
+
"@dynamic-labs/logger": "4.9.6",
|
|
26
|
+
"@dynamic-labs/types": "4.9.6",
|
|
27
|
+
"@dynamic-labs/utils": "4.9.6",
|
|
28
|
+
"@dynamic-labs/wallet-connector-core": "4.9.6"
|
|
29
29
|
},
|
|
30
30
|
"peerDependencies": {}
|
|
31
31
|
}
|
|
@@ -179,7 +179,7 @@ class DynamicWaasEVMConnector extends ethereumCore.EthereumWalletConnector {
|
|
|
179
179
|
const walletClient = viem.createWalletClient({
|
|
180
180
|
account: viemAccount,
|
|
181
181
|
chain: ethereumCore.getOrMapViemChain(evmNetwork),
|
|
182
|
-
transport: viem.http(rpcUrl),
|
|
182
|
+
transport: viem.http(rpcUrl, this.providersConfig.httpTransportConfig),
|
|
183
183
|
});
|
|
184
184
|
return walletClient;
|
|
185
185
|
}
|
|
@@ -175,7 +175,7 @@ class DynamicWaasEVMConnector extends EthereumWalletConnector {
|
|
|
175
175
|
const walletClient = createWalletClient({
|
|
176
176
|
account: viemAccount,
|
|
177
177
|
chain: getOrMapViemChain(evmNetwork),
|
|
178
|
-
transport: http(rpcUrl),
|
|
178
|
+
transport: http(rpcUrl, this.providersConfig.httpTransportConfig),
|
|
179
179
|
});
|
|
180
180
|
return walletClient;
|
|
181
181
|
}
|