Ashish Meenablockchaindeveloperblog.hashnode.dev·Sep 27, 2023Enhancing Security with receive() and fallback() in Ethereum Contracts (Part-2)INTRODUCTION The fallback function is executed on a call to the contract if none of the other functions match the given function signature, or if no data was supplied at all and there is no receive ether function. The visibility of the fallback funct...DiscussWeMakeDevs
Favour Ajayefavourajaye.hashnode.dev·May 20, 2023Solidity fallback function and function overloadingFallback function In Solidity, the fallback function is a special function that is executed when a contract receives a message that doesn't match any of its defined functions. It is defined without a name, using the fallback keyword. From solidity do...Discuss·20 likes·63 readsSolidity
Gautham Krishhnagauthkingwrites.hashnode.dev·Apr 25, 2023Fallback Functions and the DAO AttackSolidity provides a fallback function to handle cases like when a function that doesn’t even exist in the contract is being called or sometimes when you want your smart contract to receive ETHER or ETH. So, is that all that a fallback function offers...Discuss·1 like·94 readsSmart Contracts
clinton felixclintonfelix.hashnode.dev·Dec 14, 2022Fallback functions in solidity and Smartcontract developmentIn Solidity, a fallback function is a function that is automatically called when the contract receives a message that is not recognized by any of the other functions in the contract. The fallback function is defined using the fallback() keyword and d...Discussfallback-functions