Hello,
I was looking for some pointers over some experiments that I’m doing in order to understand solidity and evm. Searching for some information over ERC721, I found an older implementation of a Shareable pattern which looks like it’s not present anymore in master branch. In short I want to obtain a functionality like this: given an object, let’s say a box with some defined properties (weight, length, color) and an owner, I want to be able to assign multiple owners to it, but only after the original owner agrees. Looks like ERC721 would be the way to start, but I’m not really sure about the second part. I’m trying to understand what’s the best approach. Any pointers appreciated. Thank you.