@@ -24,6 +24,7 @@ import { wallets as exodusExtension } from '@cosmos-kit/exodus-extension';
24
24
import { wallets as tailwindWallet } from '@cosmos-kit/tailwind' ;
25
25
import { wallets as cdcwalletExtension } from '@cosmos-kit/cdcwallet-extension' ;
26
26
import { wallets as bitgetwalletExtension } from '@cosmos-kit/bitgetwallet-extension' ;
27
+ import { wallets as foxwalletExtension } from '@cosmos-kit/foxwallet-extension' ;
27
28
28
29
export type WalletName =
29
30
| 'keplr'
@@ -43,7 +44,8 @@ export type WalletName =
43
44
| 'exodus'
44
45
| 'galaxystation'
45
46
| 'cdcwallet'
46
- | 'bitgetwallet' ;
47
+ | 'bitgetwallet'
48
+ | 'foxwallet' ;
47
49
48
50
export type WalletList <
49
51
E extends MainWalletBase | null ,
@@ -104,6 +106,7 @@ export const tailwind = createWalletList(tailwindWallet[0], null);
104
106
export const owallet = createWalletList ( owalletExtension [ 0 ] , owalletMobile [ 0 ] ) ;
105
107
export const cdcwallet = createWalletList ( cdcwalletExtension [ 0 ] , null ) ;
106
108
export const bitgetwallet = createWalletList ( bitgetwalletExtension [ 0 ] , null ) ;
109
+ export const foxwallet = createWalletList ( foxwalletExtension [ 0 ] , null ) ;
107
110
108
111
export type SubWalletList = MainWalletBase [ ] & {
109
112
get mobile ( ) : MainWalletBase [ ] ;
@@ -128,6 +131,7 @@ export type AllWalletList = SubWalletList & {
128
131
cdcwallet : typeof cdcwallet ;
129
132
galaxystation : typeof galaxystation ;
130
133
bitgetwallet : typeof bitgetwallet ;
134
+ foxwallet : typeof foxwallet ;
131
135
for : ( ...names : WalletName [ ] ) => SubWalletList ;
132
136
not : ( ...names : WalletName [ ] ) => SubWalletList ;
133
137
} ;
@@ -169,6 +173,7 @@ export function createAllWalletList(ws: MainWalletBase[]) {
169
173
wallets . cdcwallet = cdcwallet ;
170
174
wallets . galaxystation = galaxystation ;
171
175
wallets . bitgetwallet = bitgetwallet ;
176
+ wallets . foxwallet = foxwallet ;
172
177
173
178
defineGetters ( wallets ) ;
174
179
@@ -216,6 +221,7 @@ export const wallets = createAllWalletList([
216
221
...tailwind ,
217
222
...owallet ,
218
223
...cdcwallet ,
224
+ ...foxwallet ,
219
225
...galaxystation ,
220
226
...bitgetwallet ,
221
227
] ) ;
0 commit comments