File tree Expand file tree Collapse file tree 5 files changed +33
-1
lines changed Expand file tree Collapse file tree 5 files changed +33
-1
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ " @thirdweb-dev/react-native " : patch
3
+ " @thirdweb-dev/wallets " : patch
4
+ " @thirdweb-dev/react " : patch
5
+ ---
6
+
7
+ Alias embedded wallet to in-app wallet
Original file line number Diff line number Diff line change @@ -16,7 +16,9 @@ export { smartWallet } from "./wallets/wallets/smart-wallet";
16
16
export { localWallet } from "./wallets/wallets/local-wallet" ;
17
17
export { LocalWallet } from "./wallets/wallets/LocalWallet" ;
18
18
export { EmbeddedWallet } from "./wallets/wallets/embedded/EmbeddedWallet" ;
19
+ export { EmbeddedWallet as InAppWallet } from "./wallets/wallets/embedded/EmbeddedWallet" ;
19
20
export { embeddedWallet } from "./wallets/wallets/embedded/embedded-wallet" ;
21
+ export { embeddedWallet as inAppWallet } from "./wallets/wallets/embedded/embedded-wallet" ;
20
22
export * from "./wallets/wallets/wallet-connect/WalletConnectBase" ;
21
23
export { WalletConnect } from "./wallets/wallets/wallet-connect/WalletConnect" ;
22
24
export { walletConnect } from "./wallets/wallets/wallet-connect/wallet-connect" ;
@@ -27,6 +29,7 @@ export { useMetaMaskWallet } from "./wallets/hooks/useMetaMaskWallet";
27
29
export { useRainbowWallet } from "./wallets/hooks/useRainbowWallet" ;
28
30
export { useTrustWallet } from "./wallets/hooks/useTrustWallet" ;
29
31
export { useEmbeddedWallet } from "./wallets/hooks/useEmbeddedWallet" ;
32
+ export { useEmbeddedWallet as useInAppWallet } from "./wallets/hooks/useEmbeddedWallet" ;
30
33
export { useSmartWallet } from "./wallets/hooks/useSmartWallet" ;
31
34
export { useEmbeddedWalletSendVerificationEmail } from "./wallets/hooks/useEmbeddedWalletSendVerificationEmail" ;
32
35
Original file line number Diff line number Diff line change @@ -61,6 +61,12 @@ export {
61
61
useEmbeddedWalletUserEmail ,
62
62
} from "./hooks/wallets/useEmbeddedWallet" ;
63
63
export { useEmbeddedWalletSendVerificationEmail } from "./hooks/useEmbeddedWalletSendVerificationEmail" ;
64
+ export {
65
+ useEmbeddedWallet as useInAppWallet ,
66
+ useEmbeddedWalletUserEmail as useInAppWalletUserEmail ,
67
+ } from "./hooks/wallets/useEmbeddedWallet" ;
68
+ export { useEmbeddedWalletSendVerificationEmail as useInAppWalletSendVerificationEmail } from "./hooks/useEmbeddedWalletSendVerificationEmail" ;
69
+
64
70
65
71
export {
66
72
usePaperWalletUserEmail ,
Original file line number Diff line number Diff line change @@ -16,7 +16,9 @@ export {
16
16
type CoinbaseWalletConfigOptions ,
17
17
} from "./wallet/wallets/coinbase/coinbaseWallet" ;
18
18
export { embeddedWallet } from "./wallet/wallets/embeddedWallet/embeddedWallet" ;
19
+ export { embeddedWallet as inAppWallet } from "./wallet/wallets/embeddedWallet/embeddedWallet" ;
19
20
export type { EmbeddedWalletConfigOptions } from "./wallet/wallets/embeddedWallet/types" ;
21
+ export type { EmbeddedWalletConfigOptions as InAppWalletConfigOptions } from "./wallet/wallets/embeddedWallet/types" ;
20
22
21
23
export {
22
24
frameWallet ,
Original file line number Diff line number Diff line change @@ -29,7 +29,21 @@ export { AbstractClientWallet } from "./wallets/base";
29
29
export type { WalletOptions } from "./wallets/base" ;
30
30
export { type BloctoOptions , BloctoWallet } from "./wallets/blocto" ;
31
31
export * from "./wallets/coinbase-wallet" ;
32
- export * from "./wallets/embedded-wallet" ;
32
+ export {
33
+ EmbeddedWallet ,
34
+ EmbeddedWallet as InAppWallet ,
35
+ type AuthParams ,
36
+ type AuthResult ,
37
+ type EmbeddedWalletAdditionalOptions ,
38
+ type EmbeddedWalletAdditionalOptions as InAppWalletWalletAdditionalOptions ,
39
+ type EmbeddedWalletConnectionArgs ,
40
+ type EmbeddedWalletConnectionArgs as InAppWalletConnectionArgs ,
41
+ type EmbeddedWalletOauthStrategy ,
42
+ type EmbeddedWalletOauthStrategy as InAppWalletOauthStrategy ,
43
+ type EmbeddedWalletOptions ,
44
+ type EmbeddedWalletOptions as InAppWalletWalletOptions ,
45
+ supportedSmsCountries
46
+ } from "./wallets/embedded-wallet" ;
33
47
export * from "./wallets/ethers" ;
34
48
export * from "./wallets/frame" ;
35
49
export * from "./wallets/imtoken" ;
You can’t perform that action at this time.
0 commit comments