diff --git a/components/gallery/GalleryItemDescription.vue b/components/gallery/GalleryItemDescription.vue index 4a194ef57f..f74b39f85a 100644 --- a/components/gallery/GalleryItemDescription.vue +++ b/components/gallery/GalleryItemDescription.vue @@ -83,6 +83,18 @@
{{ $t('tabs.tabDetails.royalties') }}
{{ nft?.royalty }}%
+ +{{ $t('tabs.tabDetails.royaltyRecipient') }}
+{{ $t('tabs.tabDetails.media') }}
diff --git a/locales/en.json b/locales/en.json index 4755fa4ea4..84d28eb5f6 100644 --- a/locales/en.json +++ b/locales/en.json @@ -1051,6 +1051,7 @@ "version": "Version", "tokenStandard": "Token Standard", "royalties": "Royalties", + "royaltyRecipient": "Royalty recipient", "media": "Media", "animatedMedia": "Animated Media", "metadata": "Metadata" diff --git a/queries/subsquid/general/nftById.graphql b/queries/subsquid/general/nftById.graphql index 8c6919bc42..f0d57260aa 100644 --- a/queries/subsquid/general/nftById.graphql +++ b/queries/subsquid/general/nftById.graphql @@ -26,5 +26,6 @@ query nftById($id: String!) { } } royalty + recipient } }