From 2892c2d046144d24b9e0fd418959c8730867374d Mon Sep 17 00:00:00 2001 From: eightrice Date: Wed, 4 Feb 2026 00:06:16 +0200 Subject: [PATCH] feat: Add shadownet network support --- services/index.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/services/index.js b/services/index.js index 1327bac..53f2395 100644 --- a/services/index.js +++ b/services/index.js @@ -6,11 +6,13 @@ const nanoid = customAlphabet('1234567890abcdef', 16) const networkNameMap = { mainnet: "mainnet", ghostnet: "ghostnet", + shadownet: "shadownet", }; const rpcNodes = { mainnet: "https://mainnet.api.tez.ie", ghostnet: "https://ghostnet.smartpy.io", + shadownet: "https://rpc.shadownet.teztnets.com", }; const getTokenMetadata = async (contractAddress, network, tokenId) => {