From a8d53b21108c36a76ab13262e73a270095f5fed8 Mon Sep 17 00:00:00 2001 From: Warren He Date: Fri, 29 Sep 2023 15:04:28 -0700 Subject: [PATCH] runtime: ERC721 interface doc typo --- analyzer/runtime/evm/erc721.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/analyzer/runtime/evm/erc721.go b/analyzer/runtime/evm/erc721.go index 142f8efd2..90883e8c4 100644 --- a/analyzer/runtime/evm/erc721.go +++ b/analyzer/runtime/evm/erc721.go @@ -26,12 +26,12 @@ const MaxMetadataBytes = 10 * 1024 * 1024 // ERC721AssetMetadata is asset metadata // https://eips.ethereum.org/EIPS/eip-721 type ERC721AssetMetadata struct { - // Name identifies the asset to which this NFT represents + // Name identifies the asset which this NFT represents Name string `json:"name"` - // Description describes the asset to which this NFT represents + // Description describes the asset which this NFT represents Description string `json:"description"` // Image is A URI pointing to a resource with mime type image/* - // representing the asset to which this NFT represents. (Additional + // representing the asset which this NFT represents. (Additional // non-descriptive text from ERC-721 omitted.) Image string `json:"image"` }