zhuowei / nft_ptr

C++ `std::unique_ptr` that represents each object as an NFT on the Ethereum blockchain
https://worthdoingbadly.com
1.99k stars 36 forks source link

Clarify legal ownership of NFT #7

Open steakpinball opened 3 years ago

steakpinball commented 3 years ago

How do we know who can sell NFT certificates for each NFT pointers? We could have NFT certificates pointing to NFT pointers pointing to memory addresses. The readme states ownership is easy to determine, but who actually owns them?

valarauca commented 3 years ago

The readme states ownership is easy to determine

The C++ ownership model is relatively simple. I would recommend reviewing this brief (21 page) summary (PDF warning).

I don't see the problem 😉