Skip to content

Commit

Permalink
update to 1.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeesun Kim authored and Jeesun Kim committed Mar 5, 2025
1 parent 2555d91 commit c34f478
Show file tree
Hide file tree
Showing 3 changed files with 217 additions and 25 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"pre-push": "yarn lint:ts && yarn test"
},
"dependencies": {
"@creit.tech/stellar-wallets-kit": "^1.5.0",
"@creit.tech/stellar-wallets-kit": "^1.6.1",
"@ledgerhq/hw-app-str": "^7.0.4",
"@ledgerhq/hw-transport-webusb": "^6.29.4",
"@stellar/design-system": "^2.0.0-beta.17",
Expand Down
3 changes: 2 additions & 1 deletion src/components/WalletKitContextProvider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import {
XBULL_ID,
allowAllModules,
} from "@creit.tech/stellar-wallets-kit";
import { LedgerModule } from "@creit.tech/stellar-wallets-kit/modules/ledger.module";

import { getWalletKitNetwork } from "@/helpers/getWalletKitNetwork";
import { localStorageSavedTheme } from "@/helpers/localStorageSavedTheme";
Expand Down Expand Up @@ -78,7 +79,7 @@ export const WalletKitContextProvider = ({
return new StellarWalletsKit({
network: networkType,
selectedWalletId: XBULL_ID,
modules: allowAllModules(),
modules: [...allowAllModules(), new LedgerModule()],
...(theme && {
buttonTheme: isDarkTheme
? {
Expand Down
Loading

0 comments on commit c34f478

Please sign in to comment.