Skip to content

Commit 91734ce

Browse files
committed
updates
1 parent e74a715 commit 91734ce

File tree

4 files changed

+5766
-6375
lines changed

4 files changed

+5766
-6375
lines changed

packages/docs/pages/_app.tsx

-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,6 @@ function MyApp({ Component, pageProps }: AppProps) {
6262
"fin",
6363
"tailwind",
6464
"owallet",
65-
"galaxystation",
6665
"cdcwallet"
6766
),
6867
// ...web3AuthWallets,

packages/example/package.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@
3131
"@cosmos-kit/core": "^2.15.0",
3232
"@cosmos-kit/cosmostation": "^2.14.1",
3333
"@cosmos-kit/fin": "^2.13.2",
34-
"@cosmos-kit/galaxy-station": "^2.12.1",
3534
"@cosmos-kit/ins": "^2.2.0",
3635
"@cosmos-kit/keplr": "^2.14.2",
3736
"@cosmos-kit/leap": "^2.14.2",
@@ -86,4 +85,4 @@
8685
"tailwindcss": "3.3.2",
8786
"typescript": "^5"
8887
}
89-
}
88+
}

packages/example/pages/_app.tsx

+11-28
Original file line numberDiff line numberDiff line change
@@ -8,31 +8,15 @@ import "@interchain-ui/react/styles";
88
import { Chain } from "@chain-registry/types";
99
import { Decimal } from "@cosmjs/math";
1010
import { GasPrice } from "@cosmjs/stargate";
11-
import { wallets as cdcwalletWallets } from "@cosmos-kit/cdcwallet";
1211
import { wallets as coin98Wallets } from "@cosmos-kit/coin98";
1312
import { ChainName } from "@cosmos-kit/core";
1413
import { MainWalletBase } from "@cosmos-kit/core";
15-
import { wallets as cosmostationWallets } from "@cosmos-kit/cosmostation";
16-
import { wallets as exodusWallets } from "@cosmos-kit/exodus";
17-
import { wallets as finWallets } from "@cosmos-kit/fin";
18-
import { wallets as frontierWallets } from "@cosmos-kit/frontier";
19-
import { wallets as galaxyStationWallets } from "@cosmos-kit/galaxy-station";
2014
import { wallets as keplrWallets } from "@cosmos-kit/keplr";
2115
import { wallets as leapWallets } from "@cosmos-kit/leap";
22-
import { wallets as snapWallet } from "@cosmos-kit/leap-metamask-cosmos-snap";
23-
import { wallets as ledgerWallets } from "@cosmos-kit/ledger";
24-
import { wallets as ninjiWallets } from "@cosmos-kit/ninji";
25-
import { wallets as omniWallets } from "@cosmos-kit/omni";
2616
import { wallets as owalletWallets } from "@cosmos-kit/owallet";
2717
// Show how to custom modal views
2818
import { ChainProvider, defaultModalViews } from "@cosmos-kit/react";
29-
// import { ChainProvider } from "@cosmos-kit/react";
30-
import { wallets as shellWallets } from "@cosmos-kit/shell";
3119
import { wallets as stationWallets } from "@cosmos-kit/station";
32-
import { wallets as tailwindWallet } from "@cosmos-kit/tailwind";
33-
import { wallets as trustWallets } from "@cosmos-kit/trust";
34-
import { wallets as vectisWallets } from "@cosmos-kit/vectis";
35-
// import { makeWeb3AuthWallets } from "@cosmos-kit/web3auth";
3620
import { wallets as ctrlWallets } from "@cosmos-kit/ctrl";
3721
import { useTheme } from "@interchain-ui/react";
3822
import { assets, chains } from "chain-registry";
@@ -108,7 +92,6 @@ function MyApp({ Component, pageProps }: AppProps) {
10892
// ...web3AuthWallets,
10993
// ...trustWallets,
11094
...stationWallets,
111-
...galaxyStationWallets,
11295
// ...tailwindWallet,
11396
// ...cosmostationWallets,
11497
// ...omniWallets,
@@ -175,17 +158,17 @@ function MyApp({ Component, pageProps }: AppProps) {
175158
// },
176159
},
177160
}}
178-
// // ==== Custom base modal customization
179-
// // modalTheme={{
180-
// // modalContentClassName: "my-custom-modal-content",
181-
// }}
182-
// // ==== Custom components
183-
// // modalViews={{
184-
// // ...defaultModalViews,
185-
// // Connected: CustomConnectedView,
186-
// // }}
187-
// walletModal={CustomModal}
188-
// modalOptions={{ mobile: { displayQRCodeEveryTime: true } }}
161+
// // ==== Custom base modal customization
162+
// // modalTheme={{
163+
// // modalContentClassName: "my-custom-modal-content",
164+
// }}
165+
// // ==== Custom components
166+
// // modalViews={{
167+
// // ...defaultModalViews,
168+
// // Connected: CustomConnectedView,
169+
// // }}
170+
// walletModal={CustomModal}
171+
// modalOptions={{ mobile: { displayQRCodeEveryTime: true } }}
189172
>
190173
<Component {...pageProps} />
191174
</ChainProvider>

0 commit comments

Comments
 (0)