Skip to content

Commit

Permalink
feat: wigwam wallet support
Browse files Browse the repository at this point in the history
  • Loading branch information
serg-plusplus committed Oct 8, 2024
1 parent e1642e9 commit 7a525a7
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
4 changes: 2 additions & 2 deletions packages/example/src/wagmi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,10 @@ import {
uniswapWallet,
valoraWallet,
walletConnectWallet,
wigwamWallet,
xdefiWallet,
zealWallet,
zerionWallet,
wigwamWallet,
} from '@rainbow-me/rainbowkit/wallets';
import {
arbitrum,
Expand Down Expand Up @@ -235,10 +235,10 @@ export const config = getDefaultConfig({
trustWallet,
uniswapWallet,
valoraWallet,
wigwamWallet,
xdefiWallet,
zealWallet,
zerionWallet,
wigwamWallet,
],
},
],
Expand Down
4 changes: 2 additions & 2 deletions packages/rainbowkit/src/wallets/walletConnectors/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,10 @@ import { trustWallet } from './trustWallet/trustWallet';
import { uniswapWallet } from './uniswapWallet/uniswapWallet';
import { valoraWallet } from './valoraWallet/valoraWallet';
import { walletConnectWallet } from './walletConnectWallet/walletConnectWallet';
import { wigwamWallet } from './wigwamWallet/wigwamWallet';
import { xdefiWallet } from './xdefiWallet/xdefiWallet';
import { zealWallet } from './zealWallet/zealWallet';
import { zerionWallet } from './zerionWallet/zerionWallet';
import { wigwamWallet } from './wigwamWallet/wigwamWallet';

export {
argentWallet,
Expand Down Expand Up @@ -120,8 +120,8 @@ export {
uniswapWallet,
valoraWallet,
walletConnectWallet,
wigwamWallet,
xdefiWallet,
zealWallet,
zerionWallet,
wigwamWallet,
};
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,13 @@ export const wigwamWallet = (): Wallet => {
'https://chromewebstore.google.com/detail/wigwam-%E2%80%94-web3-wallet/lccbohhgfkdikahanoclbdmaolidjdfl',
browserExtension: 'https://wigwam.app',
},
installed: hasInjectedProvider({ namespace: 'wigwamEthereum', flag: 'isWigwam' }),
installed: hasInjectedProvider({
namespace: 'wigwamEthereum',
flag: 'isWigwam',
}),
extension: {
instructions: {
learnMoreUrl:
'https://wigwam.app/',
learnMoreUrl: 'https://wigwam.app/',
steps: [
{
description: 'wallet_connectors.wigwam.extension.step1.description',
Expand Down

0 comments on commit 7a525a7

Please sign in to comment.