diff --git a/README.md b/README.md
index 8c06a9242..28ec9e4c2 100644
--- a/README.md
+++ b/README.md
@@ -1,13 +1,13 @@
- Universal web3 extension
+ Everything in the blockchain made easy
Explore the docs »
diff --git a/enkrypt.png b/enkrypt.png
new file mode 100644
index 000000000..d9362887b
Binary files /dev/null and b/enkrypt.png differ
diff --git a/logo.png b/logo.png
deleted file mode 100644
index 4b3c7e516..000000000
Binary files a/logo.png and /dev/null differ
diff --git a/packages/extension/src/libs/dapp-list/bsc.ts b/packages/extension/src/libs/dapp-list/bsc.ts
new file mode 100644
index 000000000..fcd951c66
--- /dev/null
+++ b/packages/extension/src/libs/dapp-list/bsc.ts
@@ -0,0 +1,46 @@
+import { DAppsItem } from "@/types/ui";
+
+const dappList: DAppsItem[] = [
+ {
+ title: "PancakeSwap",
+ link: "https://pancakeswap.finance/",
+ description: "The #1 AMM and yield farm on Binance Smart Chain.",
+ isFavorites: false,
+ image:
+ "https://dashboard-assets.dappradar.com/document/4600/pancakeswap-dapp-defi-bsc-logo-166x166_783df04863220a6371e78725e2fa3320.png",
+ },
+ {
+ title: "DRIP",
+ link: "https://drip.community/",
+ description: "DRIP gives 365% ROI from taxes, not inflation",
+ isFavorites: false,
+ image:
+ "https://dashboard-assets.dappradar.com/document/8827/drip-dapp-defi-bsc-logo-166x166_b6f6249fbd34e79abf1100e5ddb7f1b5.png",
+ },
+ {
+ title: "SecondLive",
+ link: "https://secondlive.world/",
+ description: "SecondLive: Choose Life, Choose Space, Choose Friends.",
+ isFavorites: false,
+ image:
+ "https://dashboard-assets.dappradar.com/document/9001/secondlive-dapp-games-bsc-logo-166x166_50f0e02391c85c336db9c2ff02c45cc0.png",
+ },
+ {
+ title: "Biswap",
+ link: "https://biswap.org/",
+ description:
+ "The First DEX on BSC network with a three-type referral system",
+ isFavorites: false,
+ image:
+ "https://dashboard-assets.dappradar.com/document/7069/biswap-dapp-defi-bsc-logo-166x166_3dc36bd2ec59e2f1275c2f5344302e61.png",
+ },
+ {
+ title: "MOBOX: NFT Farmer",
+ link: "https://www.mobox.io/",
+ description: "Yield Farm on the GO and watch your MOMO NFTs GROW.",
+ isFavorites: false,
+ image:
+ "https://dashboard-assets.dappradar.com/document/6249/momonftfarmer-dapp-games-bsc-logo-166x166_a5766503c5711a16ec0f2d5b34d05a70.png",
+ },
+];
+export default dappList;
diff --git a/packages/extension/src/libs/dapp-list/etc.ts b/packages/extension/src/libs/dapp-list/etc.ts
new file mode 100644
index 000000000..701c0cf09
--- /dev/null
+++ b/packages/extension/src/libs/dapp-list/etc.ts
@@ -0,0 +1,32 @@
+import { DAppsItem } from "@/types/ui";
+
+const dappList: DAppsItem[] = [
+ {
+ title: "Multichain",
+ link: "https://multichain.org/",
+ description:
+ "Multichain is the ultimate Router for web3. It is an infrastructure developed for arbitrary cross-chain interactions.",
+ isFavorites: false,
+ image:
+ "https://img.mewapi.io/?image=https://ethereumclassic.org/static/dc9065e3607e711dec75bad803166e8f/c95dc/multichain.webp",
+ },
+ {
+ title: "Canonical Wrapped Ether",
+ link: "https://wrappedether.org/",
+ description:
+ "Wrapped Ether (wETC) is a tokenized version of Ether (ETC) the native asset of the Ethereum Classic network, the original EVM launched in 2015.",
+ isFavorites: false,
+ image:
+ "https://img.mewapi.io/?image=https://ethereumclassic.org/static/360203e034f5e3f4572338584d0ba000/3f9a3/wetc.webp",
+ },
+ {
+ title: "ETC Swap",
+ link: "https://swap.ethereumclassic.com/",
+ description:
+ "ETC Swap is a decentralized cryptocurrency exchange where users acquire digital assets without an intermediary. Use Ethereum Classic, the original Ethereum Virtual Machine (EVM). Code is law.",
+ isFavorites: false,
+ image:
+ "https://img.mewapi.io/?image=https://ethereumclassic.org/static/b4107087d99c8cef9bf64e67f2722d47/3f9a3/etcswap.webp",
+ },
+];
+export default dappList;
diff --git a/packages/extension/src/libs/dapp-list/index.ts b/packages/extension/src/libs/dapp-list/index.ts
index c707d4fbe..076d3b454 100644
--- a/packages/extension/src/libs/dapp-list/index.ts
+++ b/packages/extension/src/libs/dapp-list/index.ts
@@ -1,9 +1,15 @@
import { DAppsItem } from "@/types/ui";
import { NetworkNames } from "@enkryptcom/types";
import eth from "./eth";
+import binance from "./bsc";
+import matic from "./matic";
+import etc from "./etc";
const lists: Partial