这是我的测试 tokenURI.json 文件,其中包含我传递给我的令牌 contract.setTokenURI() 的 imageURI:
{
"attributes": [
{
"trait_type": "location",
"value": "West Awesomeville"
},
{
"display_type": "date",
"trait_type": "created",
"value": 1535250800
}
],
"description": "My awesome NFT.",
"image": "https://ipfs.io/ipfs/QmaUXii41ESnUMxLJUoVcrEeXowz7RHcdTiumvrBmUvcwG?filename=test4.png",
"name": "NFT 1"
}
这是使用 esp 的最佳 IPFS uri 形式。如果我想将此 NFT 加载到 Opensea 中?
IPFS 中的文档推荐:
https://ipfs.io/ipfs/<CID>
但 Opensea 中的文档建议:
ipfs://<CID>
哪种形式更好,为什么?
在上面的 json 中,我使用的是 IPFS 推荐的第一种形式。它可以工作,但加载到 Opensea 很慢/有点不可预测。
Opensea 推荐的形式更短,没有网关。如果我使用第二种形式,图像在 Opensea 中的加载速度会更快吗?
Opensea docs:
如果您使用 IPFS 托管元数据,您的 URL 应采用 ipfs://CID 格式。例如,ipfs://QmTy8w65yBXgyfG2ZBg5TrfB2hPjrDQH3RCQFJGkARStJb。