More details at: https://lists.hyperledger.org/g/media-entertainment-sig/message/85
Thanks!
More details at: https://lists.hyperledger.org/g/media-entertainment-sig/message/85
Thanks!
Hi @bestape , modelling NFTs in Daml and writing CryptoKitty style games in Daml is pretty easy. However, these sorts of games tend to rely heavily on the public nature of the platform they run on. We don’t currently publish an integration of Daml with any public chains so you’d have to start your own network.
To do the synthesis, just look at the Merge
choice of our classic Iou example. Just modify it to carry some other payload than amount
, remove the Split
choice, and do something fun and new inside Merge
and voila, you have an NFT with the behaviour you are looking for.
This is a great answer! Thank you.