candy-shop

Ethereum, Polygon, Solana NFT Marketplace JS Library

OTHER License

Stars
145
Committers
19

Bot releases are visible (Hide)

candy-shop - v0.5.43 Latest Release

Published by RustySol over 1 year ago

What's Changed

Full Changelog: https://github.com/LIQNFT/candy-shop/compare/v0.5.42...v0.5.43

candy-shop - v0.5.42

Published by RustySol over 1 year ago

What's Changed

Full Changelog: https://github.com/LIQNFT/candy-shop/compare/v0.5.41...v0.5.42

candy-shop - v0.5.41

Published by RustySol over 1 year ago

What's Changed

New Contributors

Full Changelog: https://github.com/LIQNFT/candy-shop/compare/v0.5.40...v0.5.41

candy-shop - v0.5.40

Published by RustySol over 1 year ago

What's Changed

Full Changelog: https://github.com/LIQNFT/candy-shop/compare/v0.5.39...v0.5.40

candy-shop - v0.5.39

Published by RustySol over 1 year ago

What's Changed

Full Changelog: https://github.com/LIQNFT/candy-shop/compare/v0.5.38...v0.5.39

candy-shop - v0.5.38

Published by RustySol over 1 year ago

What's Changed

Full Changelog: https://github.com/LIQNFT/candy-shop/compare/v0.5.37...v0.5.38

candy-shop - v0.5.37

Published by RustySol over 1 year ago

What's Changed

Full Changelog: https://github.com/LIQNFT/candy-shop/compare/v0.5.36...v0.5.37

candy-shop - v0.5.36

Published by RustySol almost 2 years ago

What's Changed

Full Changelog: https://github.com/LIQNFT/candy-shop/compare/v0.5.35...v0.5.36

candy-shop - v0.5.35

Published by RustySol almost 2 years ago

What's Changed

Full Changelog: https://github.com/LIQNFT/candy-shop/compare/v0.5.34...v0.5.35

candy-shop - v0.5.34

Published by RustySol almost 2 years ago

What's Changed

Full Changelog: https://github.com/LIQNFT/candy-shop/compare/v0.5.33...v0.5.34

candy-shop - v0.5.33

Published by RustySol almost 2 years ago

What's Changed

Full Changelog: https://github.com/LIQNFT/candy-shop/compare/v0.5.32...v0.5.33

candy-shop - v0.5.32

Published by RustySol almost 2 years ago

What's Changed

Full Changelog: https://github.com/LIQNFT/candy-shop/compare/v0.5.31...v0.5.32

candy-shop - v0.5.31

Published by RustySol almost 2 years ago

What's Changed

Full Changelog: https://github.com/LIQNFT/candy-shop/compare/v0.5.30...v0.5.31

candy-shop - v0.5.30

Published by RustySol almost 2 years ago

candy-shop - v0.5.29

Published by RustySol almost 2 years ago

What's Changed

Full Changelog: https://github.com/LIQNFT/candy-shop/compare/v0.5.28...v0.5.29

candy-shop - v0.5.28

Published by RustySol almost 2 years ago

What's Changed

Full Changelog: https://github.com/LIQNFT/candy-shop/compare/v0.5.27...v0.5.28

candy-shop - v0.5.27

Published by RustySol almost 2 years ago

What's Changed

Full Changelog: https://github.com/LIQNFT/candy-shop/compare/v0.5.26...v0.5.27

candy-shop - v0.5.26

Published by RustySol almost 2 years ago

What's Changed

Full Changelog: https://github.com/LIQNFT/candy-shop/compare/v0.5.25...v0.5.26

candy-shop - v0.5.25

Published by RustySol almost 2 years ago

What's Changed

Full Changelog: https://github.com/LIQNFT/candy-shop/compare/v0.5.23...v0.5.25

Breaking Changes

  • CandyShop instantiation
  • ShopSettings.mainnetConnectionUrl changed to ShopSettings.connectionUrl
    for example
const candyShop = new CandyShop({
  candyShopCreatorAddress: new PublicKey("641ZvtVXCuZ1EnCYJ4XkejpYKziq2ZMHSVXweWMub5bA"),
  treasuryMint: new PublicKey("56pdaHboK66cxRLkzkYVvFSAjfoNEETJUsrdmAYaTXMJ"),
  candyShopProgramId: new PublicKey("csa8JpYfKSZajP7JzxnJipUL3qagub1z29hLvp578iN"),
  env: "devnet",
  settings: {
    mainnetConnectionUrl : <your url>
  }
});

Now it's changed to

const candyShop = await CandyShop.initSolCandyShop({
  candyShopCreatorAddress: new PublicKey("641ZvtVXCuZ1EnCYJ4XkejpYKziq2ZMHSVXweWMub5bA"),
  treasuryMint: new PublicKey("56pdaHboK66cxRLkzkYVvFSAjfoNEETJUsrdmAYaTXMJ"),
  candyShopProgramId: new PublicKey("csa8JpYfKSZajP7JzxnJipUL3qagub1z29hLvp578iN"),
  env: "devnet",
  settings: {
    connectionUrl : <your url>
  }
});
candy-shop - v0.5.23

Published by RustySol almost 2 years ago

What's Changed

Full Changelog: https://github.com/LIQNFT/candy-shop/compare/v0.5.22...v0.5.23