Skip to content

Commit

Permalink
chore(tezos) fix nft parser
Browse files Browse the repository at this point in the history
  • Loading branch information
D4mph1r committed Aug 23, 2024
1 parent fe92c24 commit 4ef7312
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 4 additions & 0 deletions src/factory/tezos.ts
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,10 @@ const getMetadata = async (nft: any, account = "", whitelisted = true) => {
collectionName: data?.type,
},
};

console.log("PARSED",parsed);


return parsed;
};

Expand Down
1 change: 0 additions & 1 deletion tools/helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@ export const getAssetFormat = async (imageUri: string): Promise<string> => {
const stream = await tryPinataWrapper((url: string) =>
axios.get(url, {
responseType: "stream",
timeout: 10000,
})
)(setupURI(imageUri)).catch((e) => reject(e));

Expand Down

0 comments on commit 4ef7312

Please sign in to comment.