Skip to content

thirdweb@5.43.0

Compare
Choose a tag to compare
@jnsdls jnsdls released this 31 Jul 18:58
· 3033 commits to main since this release
f925451

Minor Changes

  • #3875 337c8c9 Thanks @jnsdls! - add German localization

  • #3881 e7d6161 Thanks @kien-ngo! - Add CreateDirectListing button for Marketplace v3

    import { CreateDirectListingButton } from "thirdweb/react";
    
    <CreateDirectListingButton
      contractAddress="0x..." // contract address for the marketplace-v3
      chain={...} // the chain which the marketplace contract is deployed on
    
      // These props below are the same props for `createListing`
      // to get the full list, check the docs link above
      tokenId={0n}
      assetContractAddress="0x..." // The NFT contract address whose NFT(s) you want to sell
      pricePerToken={"0.1"} // sell for 0.1 <native token>
    >
      Sell NFT
    </CreateDirectListingButton>

Patch Changes