Skip to content

Commit

Permalink
fix: blockchain and token icons
Browse files Browse the repository at this point in the history
  • Loading branch information
Wagalidoom committed Jul 16, 2024
1 parent 787bc8d commit 33b0090
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 7 deletions.
15 changes: 15 additions & 0 deletions public/gnosisGreen.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
2 changes: 1 addition & 1 deletion src/components/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export const Header = () => {
return (
<div className="w-full sticky top-0 z-20 flex justify-between items-center p-3 bg-primary">
<div className="flex gap-x-2 items-center text-2xl">
<Image src="/gnosis.svg" alt="Gnosis" width={40} height={40} /> Gnosis Shutter
<Image src="/gnosisWhite.svg" alt="Gnosis" width={40} height={40} /> Gnosis Shutter
</div>
<Connect />
</div>
Expand Down
11 changes: 5 additions & 6 deletions src/constants/chains.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,18 +43,17 @@ export const nativeXDaiToken: Token = {
name: "xDai",
symbol: "xDai",
decimals: 18,
img: "/gnosis.svg",
img: "/xdai.png",
};

export const CHAINS: EnhancedChain[] = [
{
...gnosis,
img: "/gnosis.svg",
img: "/gnosisGreen.svg",
contracts: {
...gnosis.contracts,
sequencer: {
address: "0xc5C4b277277A1A8401E0F039dfC49151bA64DC2E",
// blockCreated: ,
},
keyperSetManager: {
address: "0x7C2337f9bFce19d8970661DA50dE8DD7d3D34abb",
Expand Down Expand Up @@ -84,13 +83,13 @@ export const CHAINS: EnhancedChain[] = [
name: "GnosisBridged",
symbol: "GNO",
decimals: 18,
img: "/xdai.png",
img: "/gnosisGreen.svg",
},
],
},
{
...gnosisChiado,
img: "/gnosis.svg",
img: "/gnosisGreen.svg",
contracts: {
...gnosisChiado.contracts,
sequencer: {
Expand Down Expand Up @@ -125,7 +124,7 @@ export const CHAINS: EnhancedChain[] = [
name: "GnosisBridged",
symbol: "GNO",
decimals: 18,
img: "/xdai.png",
img: "/gnosisGreen.svg",
},
],
},
Expand Down

0 comments on commit 33b0090

Please sign in to comment.