Skip to content

Commit

Permalink
runtime: ERC721 interface doc typo
Browse files Browse the repository at this point in the history
  • Loading branch information
pro-wh committed Sep 29, 2023
1 parent 3e52848 commit e4cb046
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions analyzer/runtime/evm/erc721.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"`
}
Expand Down

0 comments on commit e4cb046

Please sign in to comment.