1
votes

I was trying to deploy the following smart contract on Remix IDE: Remix deployment, can't share as an image yet

As you may see, Remix doesn't let me work on the deployed functions. The only thing I can do is interacting via calldata. I checked on other links like this one: Remix IDE does not show the deployed functions under the deployed contracts option but there's no issue regarding the web browser. I've already deployed it using Chrome and Brave, but didn't work. Can anyone give me a hint on this? I'd really appreciate it.

Kind regards!

1

1 Answers

3
votes

It is because you are making every function and variables as internal. Internal functions are limited to the contract level and thats why you dont see them after deployment. Replace internal with external on the functions you want to call after deployment.