Skip to content

Commit db0bf1f

Browse files
committed
Merge branch 'master' into development
2 parents 6f4268a + b818ef4 commit db0bf1f

File tree

4 files changed

+27
-2
lines changed

4 files changed

+27
-2
lines changed

public/images/Celo_logo_black.svg

Lines changed: 7 additions & 0 deletions
Loading

public/images/celo_logo.svg

Lines changed: 10 additions & 0 deletions
Loading

src/components/common/constants.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,12 @@ export const NETWORK_LIST = [
107107
iconPath: '/images/arbitrum-logo.svg',
108108
iconPathInverted: '/images/arbitrum-logo.svg',
109109
},
110+
{
111+
name: 'Celo Alfajores',
112+
key: 'celo-alfajores',
113+
iconPath: '/images/Celo_logo_black.svg',
114+
iconPathInverted: '/images/celo_logo.svg',
115+
},
110116
];
111117

112118
export const PAGE_SIZE_LIST: number[] = [10, 25, 50, 100];
@@ -134,6 +140,7 @@ export const NETWORK_ICON_MAP: NETWORK_ICON_MAP = {
134140
'gnosis': '/images/gnosis-logo.svg',
135141
'bsc': '/images/bsc-logo.svg',
136142
'fuse': '/images/fuse-logo.svg',
143+
'celo-alfajores': '/images/Celo_logo_black.svg',
137144
};
138145

139146
export const NETWORK_SCANNER_MAP: { [key: string]: string } = {
@@ -155,6 +162,7 @@ export const NETWORK_SCANNER_MAP: { [key: string]: string } = {
155162
"avalanche-fuji": 'https://testnet.snowtrace.io',
156163
"fuse": 'https://explorer.fuse.io',
157164
'base': 'https://basescan.org',
165+
"celo-alfajores": 'https://alfajores.celoscan.io',
158166
};
159167

160168
export const POWERED_BY_LOGO_MAP: { [id: string]: {[id: string]: string} } = {

src/components/global/navbar/Navbar.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ function Navbar(props: NavbarProps) {
3333

3434
return (
3535
<Fragment>
36-
{!closeBanner && <div className="relative isolate flex items-center gap-x-6 overflow-hidden bg-dark-600 px-6 py-2.5 sm:px-3.5 sm:before:flex-1" >
36+
{/* {!closeBanner && <div className="relative isolate flex items-center gap-x-6 overflow-hidden bg-dark-600 px-6 py-2.5 sm:px-3.5 sm:before:flex-1" >
3737
<div className="flex flex-wrap items-center gap-x-4 gap-y-2">
3838
<p className="text-sm leading-6 text-white">
3939
4 Years of Fuse Network! Congratulations 🎉🥳
@@ -45,7 +45,7 @@ function Navbar(props: NavbarProps) {
4545
<CloseIcon className="w-5 h-5" aria-hidden="true" />
4646
</button>
4747
</div>
48-
</div>}
48+
</div>} */}
4949
<nav className="py-3 px-[16px]">
5050
<div className="container flex items-center justify-between gap-8 px-0">
5151
<div className="">

0 commit comments

Comments
 (0)