Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions apps/web/src/server/api/helpers/l2nfts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,9 +107,8 @@ export async function getL2NftsMetadataBatch(
for (const token of tokens) {
const url = `${nftApiUrl}/tokens/${token.contract_address}/0x534e5f4d41494e/${token.token_id}`;
const nftsResponse = await fetch(url, {
body,
headers: requestsHeader,
method: "POST",
method: "GET",
});

const response = (await nftsResponse.json()) as TokenApiResponse;
Expand Down
Loading