Skip to content

Commit 790e1a3

Browse files
committed
fix
1 parent e4c6cee commit 790e1a3

2 files changed

Lines changed: 3 additions & 9 deletions

File tree

package.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,9 @@
4646
"@mintbase-js/data": "^0.6.6",
4747
"@mintbase-js/sdk": "^0.6.6",
4848
"@near-wallet-selector/core": "^9.0.2",
49-
"@near-wallet-selector/here-wallet": "^9.0.2",
5049
"@near-wallet-selector/meteor-wallet": "^9.0.2",
5150
"@near-wallet-selector/modal-ui": "^9.0.2",
5251
"@near-wallet-selector/intear-wallet": "^9.0.2",
53-
"@near-wallet-selector/my-near-wallet": "^9.0.2",
5452
"buffer": "^6.0.3",
5553
"react": "^19.1.0",
5654
"react-dom": "^19.1.0"

src/wallet/bitte-wallet.ts

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,6 @@ import type { WalletSelectorModal } from '@near-wallet-selector/modal-ui';
2323
import { mbjs } from '@mintbase-js/sdk';
2424

2525
import { setupMeteorWallet } from '@near-wallet-selector/meteor-wallet';
26-
import { setupHereWallet } from '@near-wallet-selector/here-wallet';
27-
import { setupMyNearWallet } from '@near-wallet-selector/my-near-wallet';
2826

2927

3028
const SUPPORT = '- further help available on our telegram channel: https://t.me/mintdev';
@@ -36,8 +34,9 @@ export const ERROR_MESSAGES = {
3634

3735
export const SUPPORTED_NEAR_WALLETS: Array<WalletModuleFactory> =[
3836
setupMeteorWallet(),
39-
setupMyNearWallet(),
40-
setupHereWallet(),
37+
// setupMyNearWallet(),
38+
// setupHereWallet(),
39+
setupIntearWallet(),
4140
];
4241

4342
export type WalletSelectorComponents = {
@@ -71,7 +70,6 @@ export const BitteWalletAuth = {
7170
BitteWalletAuth.walletSelectorComponents.selector = await setupWalletSelector({
7271
network: network || 'mainnet',
7372
modules: [
74-
setupIntearWallet(),
7573
...(options?.additionalWallets || []),
7674
...SUPPORTED_NEAR_WALLETS,
7775
],
@@ -81,7 +79,6 @@ export const BitteWalletAuth = {
8179

8280
network: network || 'mainnet',
8381
modules: [
84-
setupIntearWallet(),
8582
...SUPPORTED_NEAR_WALLETS,
8683
],
8784
});
@@ -104,7 +101,6 @@ export const BitteWalletAuth = {
104101
modules: [
105102
...SUPPORTED_NEAR_WALLETS,
106103
...(options?.additionalWallets || []),
107-
setupIntearWallet(),
108104
],
109105
});
110106

0 commit comments

Comments
 (0)