How to extend ERC721 with the new ERC721Votes?

@frangio thanks for the follow-up. I'm new to solidity and want to learn!

  1. ERC721Votes: I posted a specific question along with my broken ERC721VotesMock.sol contract on a new thread: How to Fix conflict with ERC721Votes and ERC721Enumerable

Error is identified. I just don't know how to fix. I know you're busy, but would really appreciate your help. Perhaps you can share a solution?

  1. MyGovernor.sol from the Wizard: Any idea of what additions to MyGovernor.sol would be needed for it to work with my ERC721Votes token mentioned in 1 above?? I'm thinking I need to add this:

IERC721Enumerable token = IERC721Enumerable( -- ERC721VotesMock.sol Contract Address --);

Also, do I need to make it abstract contract too?

If none of the above, how is it "connected and aware" of my ERC721Votes token?

  1. Timelock: I thought I needed a separate TimeLock.sol file. Apparently I don't. So I can interact directly with TimelockController.sol by means of MyGovernor.sol mentioned it point 2 above, right?.

I will re-read the Governance doc you mentioned. Maybe I overlooked something during my first read of it!