Could DAML value-add for NFT-A + NFT-B = NFT-C type synthesis (like CryptoKitties breading)?

More details at: https://lists.hyperledger.org/g/media-entertainment-sig/message/85

Thanks!

2 Likes

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.

3 Likes

This is a great answer! Thank you.

1 Like