Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions contracts/community/FlovatarMarketplace.cdc
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ pub contract FlovatarMarketplace {
// store the price in the price array
self.flovatarPrices[id] = price

// put the NFT into the the forSale dictionary
// put the NFT into the forSale dictionary
let oldToken <- self.flovatarForSale[id] <- token
destroy oldToken

Expand All @@ -126,7 +126,7 @@ pub contract FlovatarMarketplace {
// store the price in the price array
self.flovatarComponentPrices[id] = price

// put the NFT into the the forSale dictionary
// put the NFT into the forSale dictionary
let oldToken <- self.flovatarComponentForSale[id] <- token
destroy oldToken

Expand Down
6 changes: 3 additions & 3 deletions contracts/community/FlowtyRentals.cdc
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ pub contract FlowtyRentals {
// rent
// Rent the listing. Distributing fees to all parties and taking a deposit to be held
// until the nft is either returned or the rental defaults. A rental can be automatically returned
// if renterNFTProvider is provided, giving us a way obtain the the rented nft automatically
// if renterNFTProvider is provided, giving us a way obtain the rented nft automatically
// to be returned.
pub fun rent(
payment: @FungibleToken.Vault,
Expand Down Expand Up @@ -361,7 +361,7 @@ pub contract FlowtyRentals {
// rent
// Rent the listing. Distributing fees to all parties and taking a deposit to be held
// until the nft is either returned or the rental defaults. A rental can be automatically returned
// if renterNFTProvider is provided, giving us a way obtain the the rented nft automatically
// if renterNFTProvider is provided, giving us a way obtain the rented nft automatically
// to be returned.
pub fun rent(
payment: @FungibleToken.Vault,
Expand Down Expand Up @@ -1179,4 +1179,4 @@ pub contract FlowtyRentals {

emit FlowtyRentalsInitialized()
}
}
}
2 changes: 1 addition & 1 deletion contracts/standard/FungibleTokenSwitchboard.cdc
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ pub contract FungibleTokenSwitchboard {
?? panic ("The deposited vault is not available on this switchboard")
// Borrow the reference to the desired vault
let vaultRef = depositedVaultCapability.borrow()
?? panic ("Can not borrow a reference to the the vault")
?? panic ("Can not borrow a reference to the vault")
vaultRef.deposit(from: <-from)
}

Expand Down
2 changes: 1 addition & 1 deletion tasks/nfg/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ func main() {
WithArg("collectionBannerImage", "https://find.mypinata.cloud/ipfs/QmWmDRnSrv8HK5QsiHwUNR4akK95WC8veydq6dnnFbMja1"),
WithArg("socials", `{ "Twitter" : "https://twitter.com/NonFunGerbils" }`),
)
description := `#PEPEgerbil is besotted, obsessed by their precious, They cradle it, love it, perhaps it's devine.\n\nThis NFT pairs with a physical painting of mixed technique on canvas, size 24x30cm by Pepelangelo.\n\n Only the the owner of the physical can see what is uniquely precious.`
description := `#PEPEgerbil is besotted, obsessed by their precious, They cradle it, love it, perhaps it's devine.\n\nThis NFT pairs with a physical painting of mixed technique on canvas, size 24x30cm by Pepelangelo.\n\n Only the owner of the physical can see what is uniquely precious.`

desc, err := cadence.NewString(description)
if err != nil {
Expand Down