Solidity - Variables
There are 3 types of variables in Solidity Solidity에는 세 가지 유형의 변수가 있습니다. local declared inside a function : 함수 내부에 선언한 로컬 변수 not stored on the blockchain : 블록체인에 저장되지 않는 로컬 변수 state declared outside a function : 함수 밖에서 선언된 스테이트 변수 stored on the blockchain : 블록체인에 저장된 스테이트 변수 global (provides information about the blockchain) : 블록체인에 대한 정보를 표시하는 글로벌 변수 // SPDX-License-Identifier: MIT // 라이선스 표시 p..
Programming Language/Solidity
2022. 12. 21. 21:39