From 14580a4b0739235d0f39551521002689f8c8d17a Mon Sep 17 00:00:00 2001 From: Alain Nicolas Date: Fri, 19 Jul 2024 18:09:45 +0200 Subject: [PATCH] chore(explorer): Add Index Network to ecosystem dashboard (#665) --- .../src/assets/issuers/index-network-black.svg | 6 ++++++ explorer/src/assets/issuers/index-network.svg | 6 ++++++ explorer/src/pages/Home/data.tsx | 15 ++++++++++++++- 3 files changed, 26 insertions(+), 1 deletion(-) create mode 100644 explorer/src/assets/issuers/index-network-black.svg create mode 100644 explorer/src/assets/issuers/index-network.svg diff --git a/explorer/src/assets/issuers/index-network-black.svg b/explorer/src/assets/issuers/index-network-black.svg new file mode 100644 index 00000000..5f1405f2 --- /dev/null +++ b/explorer/src/assets/issuers/index-network-black.svg @@ -0,0 +1,6 @@ + + + diff --git a/explorer/src/assets/issuers/index-network.svg b/explorer/src/assets/issuers/index-network.svg new file mode 100644 index 00000000..ea6e6834 --- /dev/null +++ b/explorer/src/assets/issuers/index-network.svg @@ -0,0 +1,6 @@ + + + diff --git a/explorer/src/pages/Home/data.tsx b/explorer/src/pages/Home/data.tsx index 2aeedf17..4ea88a4a 100644 --- a/explorer/src/pages/Home/data.tsx +++ b/explorer/src/pages/Home/data.tsx @@ -3,6 +3,8 @@ import Aspecta from "@/assets/issuers/aspecta.svg?react"; import Automata from "@/assets/issuers/automata.svg?react"; import Gitcoin from "@/assets/issuers/gitcoin.svg?react"; import Hapi from "@/assets/issuers/Hapi_logo_square.svg?react"; +import IndexNetwork from "@/assets/issuers/index-network-black.svg?react"; +import IndexNetworkDark from "@/assets/issuers/index-network.svg?react"; import Nomis from "@/assets/issuers/nomis.svg?react"; import Okapi from "@/assets/issuers/okapi-black.svg?react"; import OkapiDark from "@/assets/issuers/okapi-white.svg?react"; @@ -161,7 +163,7 @@ export const issuersData: IIssuer[] = [ "HAPI ID is a digital identification of a user’s on-chain activity, created to simplify the interpretation of user’s action on the blockchain. Created for users, protocols, DApps, and businesses, HAPI ID serves as a one-stop unique solution against Sybils and for Users!", CTALink: "https://hapi.one", CTATitle: "Go To Hapi", - address: "0x0000000000000000000000000000000000000000", + address: "0x62773b3217e066a9a4ebd98db4360d89671453df", }, { name: "Okapi", @@ -174,4 +176,15 @@ export const issuersData: IIssuer[] = [ CTATitle: "Go To Okapi", address: "0xab3fa8a72eb66a128e8a84baa8c9578180806c6f", }, + { + name: "Index Network", + logo: IndexNetwork, + logoDark: IndexNetworkDark, + keywords: ["Discoverability"], + description: + "Index Network is a discovery protocol that enables truly personalized and autonomous experiences across the web. By utilizing decentralized agents and semantic indexes, it facilitates the discovery of information in various fields, including science, journalism, e-commerce, and social interactions. Index Network transforms discovery into a protocol, making it a foundational layer for better information and user experience in web3.", + CTALink: "https://index.network/", + CTATitle: "Go To Index Network", + address: "0x0000000000000000000000000000000000000000", + }, ];