-
Notifications
You must be signed in to change notification settings - Fork 485
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Try @helia/verified-fetch
for fetching NFT images from IPFS
#2363
Conversation
96484f2
to
94f8add
Compare
4e4a5bd
to
d3d0c1a
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I believe these screenshots are correct because the last two rows of the images are not in the viewport. We lazy load them once they come into view.
<TabPanel padding={ 0 } key={ tab.id?.toString() || (typeof tab.title === 'string' ? tab.title : undefined) }> | ||
{ tab.component } | ||
</TabPanel> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This fixes one of the warnings on the Token instance page.
@@ -39,7 +39,7 @@ const MetadataItemPrimitive = ({ name, value, isItem = true, isFlat, level }: Pr | |||
})(); | |||
|
|||
return ( | |||
<Component level={ level } isFlat={ isFlat }> | |||
<Component level={ level } { ...(isItem ? { isFlat } : {}) }> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
And this fixes another warning.
Description and Related Issue(s)
Resolves #2356
Added
NEXT_PUBLIC_HELIA_VERIFIED_FETCH_ENABLED
to enable Helia verified fetch for retrieving content of NFT assets directly from IPFS network using trustless gateways.Checklist for PR author