Skip to content

Commit

Permalink
fix addresses
Browse files Browse the repository at this point in the history
  • Loading branch information
judezhu committed Aug 28, 2024
1 parent 34f2890 commit ff0b5ee
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 45 deletions.
14 changes: 7 additions & 7 deletions contracts/TopShotMarketV3.cdc
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,13 @@
deposited to.
**/

import FungibleToken from "FungibleToken"
import NonFungibleToken from "NonFungibleToken"
import TopShot from "TopShot"
import Market from "Market"
import DapperUtilityCoin from "DapperUtilityCoin"
import TopShotLocking from "TopShotLocking"
import MetadataViews from "MetadataViews"
import FungibleToken from 0xFUNGIBLETOKENADDRESS
import NonFungibleToken from 0xNFTADDRESS
import TopShot from 0xTOPSHOTADDRESS
import Market from 0xMARKETADDRESS
import DapperUtilityCoin from 0xDUCADDRESS
import TopShotLocking from 0xTOPSHOTLOCKINGADDRESS
import MetadataViews from 0xMETADATAVIEWSADDRESS

access(all) contract TopShotMarketV3 {

Expand Down
2 changes: 1 addition & 1 deletion lib/go/contracts/contracts.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const (
marketV3File = "TopShotMarketV3.cdc"
// There is a MarketTopShot.cdc contract which was updated to be token agnostic, however this was not backwards compatible.
// MarketTopShotOldVersion.cdc is the current contract in production
marketFile = "MarketTopShotOldVersion.cdc"
marketFile = "Market.cdc"
shardedCollectionFile = "TopShotShardedCollection.cdc"
adminReceiverFile = "TopshotAdminReceiver.cdc"
topShotLockingFile = "TopShotLocking.cdc"
Expand Down
Loading

0 comments on commit ff0b5ee

Please sign in to comment.