From 418e3e487d986ff16b73cb65de022e72a0891467 Mon Sep 17 00:00:00 2001 From: kien-ngo Date: Wed, 6 Nov 2024 03:48:47 +0000 Subject: [PATCH] [Dashboard] Update simplehash supported networks (#5317) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Problem solved Short description of the bug fixed or feature added --- ## PR-Codex overview This PR updates the `alchemySupportedChainIdsMap` in the `apps/dashboard/src/lib/wallet/nfts/types.ts` file by adding new supported chains. ### Detailed summary - Added new entries to `alchemySupportedChainIdsMap`: - `"sei"` with key `[1329]` - `"sei-atlantic-2"` with key `[1328]` - `"shape"` with key `[360]` - `"apechain"` with key `[33139]` > ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your question}` --- apps/dashboard/src/lib/wallet/nfts/types.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/apps/dashboard/src/lib/wallet/nfts/types.ts b/apps/dashboard/src/lib/wallet/nfts/types.ts index 47bee0b2d43..e4a1e4c640c 100644 --- a/apps/dashboard/src/lib/wallet/nfts/types.ts +++ b/apps/dashboard/src/lib/wallet/nfts/types.ts @@ -136,6 +136,10 @@ export const simpleHashSupportedChainIdsMap: Record = { [zkSync.id]: "zksync-era", [zora.id]: "zora", [zoraSepolia.id]: "zora-sepolia", + [1329]: "sei", + [1328]: "sei-atlantic-2", + [360]: "shape", + [33139]: "apechain", }; export type AlchemySupportedChainId = keyof typeof alchemySupportedChainIdsMap;