Solidity - View and Pure Functions
View and Pure Functions View와 Pure 함수들 Getter functions can be declared view or pure. Getter 함수는 view 함수 또는 pure 함수로 선언될 수 있다. View function declares that no state will be changed. View 함수는 상태가 변경되지 않음 Pure function declares that no state variable will be changed or read. Pure 함수는 상태변수가 변경되거나 읽히지 않는다. // SPDX-License-Identifier: MIT pragma solidity ^0.8.17; contract ViewAndPure { uint public x =..
Programming Language/Solidity
2022. 12. 27. 19:21