@dynamic-labs/multi-wallet 3.0.0-alpha.24 → 3.0.0-alpha.26
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 +11 -0
- package/package.json +7 -7
- package/src/types.d.ts +2 -2
- package/src/utils/getApiProviders.d.ts +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,15 @@
|
|
|
1
1
|
|
|
2
|
+
## [3.0.0-alpha.26](https://github.com/dynamic-labs/DynamicAuth/compare/v3.0.0-alpha.25...v3.0.0-alpha.26) (2024-07-24)
|
|
3
|
+
|
|
4
|
+
## [3.0.0-alpha.25](https://github.com/dynamic-labs/DynamicAuth/compare/v3.0.0-alpha.24...v3.0.0-alpha.25) (2024-07-24)
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* add ability to specify mobileExperience on a wallet by wallet ([#6195](https://github.com/dynamic-labs/DynamicAuth/issues/6195)) ([947fd0a](https://github.com/dynamic-labs/DynamicAuth/commit/947fd0ab864d1995a1ef35a51c77a585649fd43f))
|
|
10
|
+
* global wallet new package ([#6385](https://github.com/dynamic-labs/DynamicAuth/issues/6385)) ([230a0f3](https://github.com/dynamic-labs/DynamicAuth/commit/230a0f380c2bc8c69619daed0c7f3280da8b8bb9))
|
|
11
|
+
* solana send balance modal for injected ([#6405](https://github.com/dynamic-labs/DynamicAuth/issues/6405)) ([b8aa84b](https://github.com/dynamic-labs/DynamicAuth/commit/b8aa84b58eb71791405bf68b6c46c40bebb170f8))
|
|
12
|
+
|
|
2
13
|
## [3.0.0-alpha.24](https://github.com/dynamic-labs/DynamicAuth/compare/v3.0.0-alpha.23...v3.0.0-alpha.24) (2024-07-20)
|
|
3
14
|
|
|
4
15
|
## [3.0.0-alpha.23](https://github.com/dynamic-labs/DynamicAuth/compare/v3.0.0-alpha.22...v3.0.0-alpha.23) (2024-07-19)
|
package/package.json
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dynamic-labs/multi-wallet",
|
|
3
|
-
"version": "3.0.0-alpha.
|
|
3
|
+
"version": "3.0.0-alpha.26",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+https://github.com/dynamic-labs/dynamic-auth.git",
|
|
7
7
|
"directory": "packages/multi-wallet"
|
|
8
8
|
},
|
|
9
9
|
"dependencies": {
|
|
10
|
-
"@dynamic-labs/sdk-api-core": "0.0.
|
|
10
|
+
"@dynamic-labs/sdk-api-core": "0.0.497",
|
|
11
11
|
"tslib": "2.4.1",
|
|
12
|
-
"@dynamic-labs/rpc-providers": "3.0.0-alpha.
|
|
13
|
-
"@dynamic-labs/types": "3.0.0-alpha.
|
|
14
|
-
"@dynamic-labs/utils": "3.0.0-alpha.
|
|
15
|
-
"@dynamic-labs/wallet-book": "3.0.0-alpha.
|
|
16
|
-
"@dynamic-labs/wallet-connector-core": "3.0.0-alpha.
|
|
12
|
+
"@dynamic-labs/rpc-providers": "3.0.0-alpha.26",
|
|
13
|
+
"@dynamic-labs/types": "3.0.0-alpha.26",
|
|
14
|
+
"@dynamic-labs/utils": "3.0.0-alpha.26",
|
|
15
|
+
"@dynamic-labs/wallet-book": "3.0.0-alpha.26",
|
|
16
|
+
"@dynamic-labs/wallet-connector-core": "3.0.0-alpha.26"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
19
|
"@walletconnect/types": "2.10.6"
|
package/src/types.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { ProjectSettings } from '@dynamic-labs/sdk-api-core';
|
|
2
2
|
import { WalletConnector, Chain, WalletConnectorsMethod, DeepLinkVariant } from '@dynamic-labs/wallet-connector-core';
|
|
3
|
-
import { type NetworkConfigurationMap, type WalletUiUtils, type CoinbaseWalletPreference } from '@dynamic-labs/types';
|
|
3
|
+
import { type NetworkConfigurationMap, type WalletUiUtils, type CoinbaseWalletPreference, type MobileExperience } from '@dynamic-labs/types';
|
|
4
4
|
import { IChainRpcProviders } from '@dynamic-labs/rpc-providers';
|
|
5
5
|
import { WalletBookSchema } from '@dynamic-labs/wallet-book';
|
|
6
6
|
export type GetSupportedWalletsOpts = {
|
|
@@ -10,7 +10,7 @@ export type GetSupportedWalletsOpts = {
|
|
|
10
10
|
chainRpcProviders: IChainRpcProviders;
|
|
11
11
|
deepLinkPreference?: DeepLinkVariant;
|
|
12
12
|
flowNetwork?: 'mainnet' | 'testnet';
|
|
13
|
-
mobileExperience?:
|
|
13
|
+
mobileExperience?: MobileExperience;
|
|
14
14
|
networkConfigurations?: NetworkConfigurationMap;
|
|
15
15
|
settings: ProjectSettings;
|
|
16
16
|
skipMemo?: boolean;
|
|
@@ -21,6 +21,7 @@ export declare const getApiProviders: (providers: Provider[]) => {
|
|
|
21
21
|
dynamic?: Provider | undefined;
|
|
22
22
|
alchemy?: Provider | undefined;
|
|
23
23
|
zerodev?: Provider | undefined;
|
|
24
|
+
telegram?: Provider | undefined;
|
|
24
25
|
turnkey?: Provider | undefined;
|
|
25
26
|
coinbaseWaas?: Provider | undefined;
|
|
26
27
|
sms?: Provider | undefined;
|