Solidity - Delegatecall
delegatecall is a low level function similar to call. delegatecall은 저수준의 함수이고 call과 비슷합니다. When contract A executes delegatecall to contract B, B's code is executed with contract A's storage, msg.sender and msg.value. 스마트컨트랙트 A가 스마트컨트랙트 B에 대한 delegatecall을 실행하면 스마트 컨트랙트 B의 코드는 스마트컨트랙트 A의 storage, msg.sender 및 msg.value로 실행된다. A가 B에 대한 델리게이트 콜을 실행하면 B는 A의 스토리지와 msg.sender, msg.value로 실행됨 // SPDX-..
Programming Language/Solidity
2023. 1. 18. 19:51