DelegateCall Solidity
DelegateCall is a unique feature in Solidity, which allows contract A to execute code in contract B with contract A storage, and the preserving the msg (msg.sender, msg.value, etc..).
Today, we will discuss how DelegateCall work...