Skip to content

Commit

Permalink
Merge pull request #17 from MXCzkEVM/axsWalletOption
Browse files Browse the repository at this point in the history
feat: Added AXS wallet to wallet list
  • Loading branch information
wuzhenbin authored Sep 6, 2023
2 parents b007086 + cebf5dd commit f80cecb
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 8 deletions.
5 changes: 5 additions & 0 deletions public/icons/wallets/axs.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
29 changes: 21 additions & 8 deletions src/components/WalletConnection/WalletSelector.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,26 @@ const WalletRow = ({ walletName, walletType }: WalletRowProps) => {
const getWalletIcon = (walletType: WalletType) => {
switch (walletType) {
case WalletType.INJECTED:
return (
<img
src={`/icons/wallets/browserWallet.svg`}
width="24px"
height="24px"
alt={`browser wallet icon`}
/>
);
if (walletName == 'AXS Wallet') {
return (
<img
src={`/icons/wallets/axs.svg`}
width="24px"
height="24px"
alt={`AXS wallet icon`}
/>
);
} else {
return (
<img
src={`/icons/wallets/browserWallet.svg`}
width="24px"
height="24px"
alt={`browser wallet icon`}
/>
);
}

case WalletType.WALLET_CONNECT:
return (
<img
Expand Down Expand Up @@ -191,6 +203,7 @@ export const WalletSelector = () => {
<Box sx={{ display: 'flex', flexDirection: 'column' }}>
<TxModalTitle title="Connect a wallet" />
{error && <Warning severity="error">{handleBlocking()}</Warning>}
<WalletRow key="axs_wallet" walletName="AXS Wallet" walletType={WalletType.INJECTED} />
<WalletRow
key="browser_wallet"
walletName="Browser wallet"
Expand Down

1 comment on commit f80cecb

@vercel
Copy link

@vercel vercel bot commented on f80cecb Sep 6, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.