Solidity - Events
Events 이벤트 Events allow logging to the Ethereum blockchain. Some use cases for events are: 이벤트는 이더리움 블록체인에 로깅을 허용한다. 이벤트에 대한 일부 사용 사례는 다음과 같습니다. Listening for events and updating user interface 이벤트 수신 대기 및 사용자 인터페이스 업데이트 A cheap form of storage 저렴한 형태의 스토리지 // SPDX-License-Identifier: MIT pragma solidity ^0.8.17; contract Event { // Event declaration // Up to 3 parameters can be indexed. // Inde..
Programming Language/Solidity
2022. 12. 29. 22:09