From 4ef7312f04d6340ca3eae5089ec909038d174f95 Mon Sep 17 00:00:00 2001 From: D Date: Fri, 23 Aug 2024 17:13:17 +0500 Subject: [PATCH] chore(tezos) fix nft parser --- src/factory/tezos.ts | 4 ++++ tools/helpers.ts | 1 - 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/src/factory/tezos.ts b/src/factory/tezos.ts index 49c7f093..f99a805a 100644 --- a/src/factory/tezos.ts +++ b/src/factory/tezos.ts @@ -108,6 +108,10 @@ const getMetadata = async (nft: any, account = "", whitelisted = true) => { collectionName: data?.type, }, }; + + console.log("PARSED",parsed); + + return parsed; }; diff --git a/tools/helpers.ts b/tools/helpers.ts index 37237889..50073a62 100644 --- a/tools/helpers.ts +++ b/tools/helpers.ts @@ -71,7 +71,6 @@ export const getAssetFormat = async (imageUri: string): Promise => { const stream = await tryPinataWrapper((url: string) => axios.get(url, { responseType: "stream", - timeout: 10000, }) )(setupURI(imageUri)).catch((e) => reject(e));