Skip to content

Releases: metaplex-foundation/metaplex-android

Chashni (1.2.0)

13 Sep 15:19
Compare
Choose a tag to compare

API Changes

  • Nearly the entire existing API has been deprecated. The exiting API will continue to work as is, but we recommend that everyone using the library migrate to the new coroutine/suspend API
    • the legacy callback API has been deprecated. For example, in the nft module:
      // deprecated
      metaplex.nft.findByMint(mintPublicKey) { result ->
        // callback, handle the result
      }
      
      // replaced by 
      coroutineScope.launch {
        val result: Result<NFT> = metaplex.nft.findByMint(mintPublicKey)
        // do something with result
      } 
      
  • New Auctions module:
    client = metaplex.auctions // AuctionsClient
    
    auctionHouse = metaplex.auctions.findAuctionHouseByAddress(address); // AuctionHouse
    auctionHouse = metaplex.auctions.findAuctionHouseByCreatorAndMint(creator, mint); // AuctionHouse
    
    myAuctionHouseClient = AuctionHouseClient(metaplex, auctionHouse)
    listing = myAuctionHouseClient.list(mintKey, price)
    bid = myAuctionHouseClient.bid(mintKey, price)
    purchase = myAuctionHouseClient.executeSale(listing, bid)
    

Work Completed

Barley Malt Syrup (1.1.1)

14 Jul 19:47
f5bb0d7
Compare
Choose a tag to compare

API Changes

The library can now be downloaded from JitPack.io.

implementation 'com.github.metaplex-foundation:metaplex-android:1.1.1'

The current installtion steps from GitHub Packages is still supported. See the readme for more details.

Work Completed

Barley Malt Syrup (1.1.0)

12 Jul 20:23
fc168a6
Compare
Choose a tag to compare

API Changes

The following methods have been deprecated and will be removed in a future version:

  • findByMint
    • replaced by findByMint
  • findAllByMintList
    • replaced by findAllByMintList
  • findAllByOwner
    • replaced by findAllByOwner
  • findAllByCreator
    • replaced by findAllByCreator
  • findAllByCandyMachine
    • replaced by findAllByCandyMachine

Work Completed

Agave syrup (1.0)

25 May 22:20
1c9f28c
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: https://github.com/metaplex-foundation/metaplex-android/commits/1.0