#Need help with implementation strategy
1 messages · Page 1 of 1 (latest)
You have to use a public function to take the input. If you put the logic in an internal function, and called the internal function from the public function, your security posture doesn't really change. The internal function is effectively a part of the public function in that case.
I see, so even if its a public function, there is no way for bad actors to see the code? (ofc if i don't share the source)
Yep, public just means it can be called over the web, but the source isn't discoverable.
Similar to any other serverless function
Alright, amazing thanks. Just started playing around with convex, really awesome dx 🔥