Skip to content

Commit

Permalink
swap collection banner and thumbnail with ipfs
Browse files Browse the repository at this point in the history
  • Loading branch information
austinkline committed Dec 19, 2023
1 parent b06cb0d commit edd5c25
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions contracts/FlowtyWrapped.cdc
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit edd5c25

Please sign in to comment.