Ashish Meenablockchaindeveloperblog.hashnode.dev·Sep 25, 2023Enhancing Security with receive() and fallback() in Ethereum Contracts (Part-1)INTRODUCTION Hey everyone I am back with a new article about the receive and fallback function. I will explain everything about these two functions in easy wording. RECEIVE FUNCTION First in short if we create a receive function in our contract then ...DiscussWeMakeDevs
septRabbitseptrabbit.hashnode.dev·Jul 15, 2022Learning Go 2 - Package and Receiver Function2 Package types: Executable and Reusable. Executable package main must have a function called "main". Reusable packages are like helper packages or libraries. We can call the function in other go file of the same package main. Let's say we have "main...Discuss·54 readsGo Language