Understanding call, staticcall and delegatecall in Solidity
call, staticcall, and delegatecall are all low-level ways to call functions in another contract. They all allow adjusting the gas limit (compared to transfer and send, which have a fixed limit of 2300 gas) and do not throw exceptions when a call error occurs; instead, they return false.
Posted by Andylinee on Saturday, January 20, 2024