3

I'm a Solidity newbie getting his feet wet. I am following along with a YouTube ERC721 tutorial. The tutorial has me calling functions imported from "@openzeppelin".

I was wondering if there is a way to get intellisense to show the interface of these functions on hover. I have the Solidity extension installed and thought that would help but apparently not.

Nick Carbone
  • 445
  • 1
  • 4
  • 9

1 Answers1

1

If you've properly imported the @openzeppelin contract, then the function/contract interface should be visible on hover + CMD click. See this screenshot:

Click CMD on hovering over function/contract

Mark Okhman
  • 105
  • 1
  • 11