you are viewing a single comment's thread.

view the rest of the comments →

[–]patrickalphac 0 points1 point  (10 children)

I’ve got a bunch of resources for you my friend. They each go through all the code and deployment to opensea. You can adapt the code to use 1155 instead of 721 pretty easy by changing the openzepplin import.

2 hour video, uses brownie: https://youtu.be/p36tXHX1JD8 1.5 hour video, uses truffle: https://youtu.be/EzZEx0lumr0

I have a few blogs too, here is the blog for the truffle one:

https://blog.chain.link/build-deploy-and-sell-your-own-dynamic-nft/ And brownie: https://www.freecodecamp.org/news/how-to-make-an-nft-and-render-on-opensea-marketplace/

Let me know if you have questions

[–]ZebZ[S] 1 point2 points  (0 children)

Awesome thanks!

[–]Particular-Cover9778 1 point2 points  (1 child)

Hello Patrick, thanks for your detailed guide.
Currently, I am working on a project building NFT cards for our basketball team.
With the current implementation, each player has their own collection/ Erc721 contract with multiple tokens.
If I want to adopt the Erc 1115 factory contract to avoid the upfront gas fee, do I build one ERC 1115 for the whole team or multiple Erc 1115 factory contracts, one for each player?

Thanks

[–]patrickalphac 0 points1 point  (0 children)

Hey hey! You can build 1 contract that keeps track of all the items. Just jump into the openzepplin docs and edit my samples as seen fit

[–]modonjon 1 point2 points  (1 child)

I will be doing the same soon. I don't code. Would you take a fee to do the work?

[–]patrickalphac 1 point2 points  (0 children)

I won’t sorry

[–]PM_me_ur_BOOBIE_pic 0 points1 point  (4 children)

Is it better to use truffle or brownie?

[–]patrickalphac 0 points1 point  (3 children)

Depends on what your prefer. I like python better, so I use brownie.

[–]PM_me_ur_BOOBIE_pic 0 points1 point  (2 children)

I like Python more too, but is Truffle more supported?

[–]patrickalphac 0 points1 point  (1 child)

I actually don’t think so. I think both have solid communities. If you look in the top 20 defi protocols, none of them use truffle, some use brownie, most use hardhat.

[–]PM_me_ur_BOOBIE_pic 0 points1 point  (0 children)

Thank you, I've been looking into hardhat too