차이점 썸네일형 리스트형 Solidity(솔리디티): 이벤트(event) 방출(emit) 하고 안하고 차이? Solidity 개발을 처음 시작할 때 궁금한 것들 중 하나는 이벤트(event)에 대한 것일 텐데요. 이벤트가 왜 있는지, 이벤트를 발생시키면 어떤 차이가 발생하는지를 간단한 예제로 알아보도록 하겠습니다. 다음은 이벤트에 대해 알아보기 위한 예제 컨트랙트입니다. // SPDX-License-Identifier: MIT pragma solidity ^0.8.6; contract EventTestContract { mapping(address => uint256) private _counts; event Increase(address indexed addr, uint256 oldValue, uint256 newValue); function increaseWithEvent() public returns (b.. 더보기 이전 1 다음