From edd5c25856152e7bace07db22fcb2fea49b98298 Mon Sep 17 00:00:00 2001 From: Austin Kline Date: Mon, 18 Dec 2023 20:17:25 -0800 Subject: [PATCH] swap collection banner and thumbnail with ipfs --- contracts/FlowtyWrapped.cdc | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/contracts/FlowtyWrapped.cdc b/contracts/FlowtyWrapped.cdc index 460e2c8..c04c234 100644 --- a/contracts/FlowtyWrapped.cdc +++ b/contracts/FlowtyWrapped.cdc @@ -289,16 +289,18 @@ pub contract FlowtyWrapped: NonFungibleToken, ViewResolver { description: "A celebration and statistical review of an exciting year on Flowty and across the Flow blockchain ecosystem.", externalURL: MetadataViews.ExternalURL(FlowtyWrapped.collectionExternalUrl), squareImage: MetadataViews.Media( - file: MetadataViews.HTTPFile( - url: "https://storage.googleapis.com/flowty-images/flowty-logo.jpeg" // TODO: swap this out with the real square image + file: MetadataViews.IPFSFile( + url: "QmdCiwwJ7z2gQecDr6hn4pJj91miWYnFC178o9p6JKftmi", + nil ), - mediaType: "image/jpeg" + mediaType: "image/jpg" ), bannerImage: MetadataViews.Media( - file: MetadataViews.HTTPFile( - url: "https://storage.googleapis.com/flowty-images/flowty-banner.jpeg" // TODO: swap this out with the real banner image + file: MetadataViews.IPFSFile( + url: "QmcLJhJh6yuLAoH6wWKMDS2zUv6myduXQc83zD5xv2V8tA", + nil ), - mediaType: "image/jpeg" + mediaType: "image/jpg" ), socials: { "twitter": MetadataViews.ExternalURL("https://twitter.com/flowty_io")