diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 000000000..94b48e6d2 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,5 @@ +## What it solves + +Resolves # + +## How this PR fixes it diff --git a/public/images/chainsLogos/PolygonZkEVMLogo.png b/public/images/chainsLogos/PolygonZkEVMLogo.png new file mode 100644 index 000000000..f3fdaeec9 Binary files /dev/null and b/public/images/chainsLogos/PolygonZkEVMLogo.png differ diff --git a/public/images/chainsLogos/ZkSyncEraLogo.png b/public/images/chainsLogos/ZkSyncEraLogo.png new file mode 100644 index 000000000..a9c924a6f Binary files /dev/null and b/public/images/chainsLogos/ZkSyncEraLogo.png differ diff --git a/src/components/common/Networks/index.tsx b/src/components/common/Networks/index.tsx index 3ac31cba5..ac51cdad3 100644 --- a/src/components/common/Networks/index.tsx +++ b/src/components/common/Networks/index.tsx @@ -32,8 +32,8 @@ const NetworksRow = ({ networksRow, chainsData }: { networksRow: NetworkChipProp {networksRow.map(({ name, icon, textColor, backgroundColor, isNew }, i) => { const chainData = chainsData?.find((chain) => chain.chainName === name) const chainColors = { - textColor: chainData?.textColor || textColor || defaultThemeColors.textColor, - backgroundColor: chainData?.backgroundColor || backgroundColor || defaultThemeColors.backgroundColor, + textColor: textColor || chainData?.textColor || defaultThemeColors.textColor, + backgroundColor: backgroundColor || chainData?.backgroundColor || defaultThemeColors.backgroundColor, } return })} diff --git a/src/content/home.json b/src/content/home.json index c00759f44..df13966b7 100644 --- a/src/content/home.json +++ b/src/content/home.json @@ -69,6 +69,16 @@ "alt": "Arbitrum logo" } }, + { + "name": "zkSync Era Mainnet", + "icon": { + "src": "/images/chainsLogos/ZkSyncEraLogo.png", + "alt": "zkSync Era logo" + }, + "textColor": "#000000", + "backgroundColor": "#FFFFFF", + "isNew": true + }, { "name": "Polygon", "icon": { @@ -104,13 +114,20 @@ "alt": "Arbitrum logo" } }, + { + "name": "Polygon zkEVM", + "icon": { + "src": "/images/chainsLogos/PolygonZkEVMLogo.png", + "alt": "Polygon zkEVM logo" + }, + "isNew": true + }, { "name": "Celo", "icon": { "src": "/images/chainsLogos/CeloLogo.png", "alt": "Celo logo" - }, - "isNew": true + } } ], "component": "common/Networks"