@@ -24,6 +24,7 @@ import { wallets as exodusExtension } from '@cosmos-kit/exodus-extension';
2424import { wallets as tailwindWallet } from '@cosmos-kit/tailwind' ;
2525import { wallets as cdcwalletExtension } from '@cosmos-kit/cdcwallet-extension' ;
2626import { wallets as bitgetwalletExtension } from '@cosmos-kit/bitgetwallet-extension' ;
27+ import { wallets as gatewalletExtension } from '@cosmos-kit/gatewallet-extension' ;
2728
2829export type WalletName =
2930 | 'keplr'
@@ -43,7 +44,8 @@ export type WalletName =
4344 | 'exodus'
4445 | 'galaxystation'
4546 | 'cdcwallet'
46- | 'bitgetwallet' ;
47+ | 'bitgetwallet'
48+ | 'gatewallet' ;
4749
4850export type WalletList <
4951 E extends MainWalletBase | null ,
@@ -104,6 +106,7 @@ export const tailwind = createWalletList(tailwindWallet[0], null);
104106export const owallet = createWalletList ( owalletExtension [ 0 ] , owalletMobile [ 0 ] ) ;
105107export const cdcwallet = createWalletList ( cdcwalletExtension [ 0 ] , null ) ;
106108export const bitgetwallet = createWalletList ( bitgetwalletExtension [ 0 ] , null ) ;
109+ export const gatewallet = createWalletList ( gatewalletExtension [ 0 ] , null ) ;
107110
108111export type SubWalletList = MainWalletBase [ ] & {
109112 get mobile ( ) : MainWalletBase [ ] ;
@@ -128,6 +131,7 @@ export type AllWalletList = SubWalletList & {
128131 cdcwallet : typeof cdcwallet ;
129132 galaxystation : typeof galaxystation ;
130133 bitgetwallet : typeof bitgetwallet ;
134+ gatewallet : typeof gatewallet ;
131135 for : ( ...names : WalletName [ ] ) => SubWalletList ;
132136 not : ( ...names : WalletName [ ] ) => SubWalletList ;
133137} ;
@@ -169,7 +173,7 @@ export function createAllWalletList(ws: MainWalletBase[]) {
169173 wallets . cdcwallet = cdcwallet ;
170174 wallets . galaxystation = galaxystation ;
171175 wallets . bitgetwallet = bitgetwallet ;
172-
176+ wallets . gatewallet = gatewallet ;
173177 defineGetters ( wallets ) ;
174178
175179 wallets . for = function ( ...ns : WalletName [ ] ) {
@@ -218,4 +222,5 @@ export const wallets = createAllWalletList([
218222 ...cdcwallet ,
219223 ...galaxystation ,
220224 ...bitgetwallet ,
225+ ...gatewallet ,
221226] ) ;
0 commit comments