Skip to content

Commit

Permalink
chore: tangle icon
Browse files Browse the repository at this point in the history
  • Loading branch information
wainola committed Jun 12, 2024
1 parent ce9016a commit b40ccb2
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
21 changes: 21 additions & 0 deletions public/assets/icons/tangle-logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions src/utils/Helpers.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,8 @@ export const getNetworkNames = (chainId: number): string => {
return "Gnosis Chiado"
case 84532:
return "Base Sepolia"
case 3799:
return "Tangle"
default:
return "Ethereum"
}
Expand Down Expand Up @@ -264,6 +266,8 @@ export const renderNetworkIcon = (chainId: number, classes: Record<"networkIcon"
return <img src={`/assets/icons/arbitrum.svg`} alt="gnosis" className={classes.networkIcon} />
case 84532:
return <img src={`/assets/icons/base.svg`} alt="gnosis" className={classes.networkIcon} />
case 3799:
return <img src={`/assets/icons/tangle-logo.svg`} alt="gnosis" className={classes.networkIcon} />
default:
return <img src={`/assets/icons/evm.svg`} alt="ethereum" className={classes.networkIcon} />
}
Expand Down

0 comments on commit b40ccb2

Please sign in to comment.