Solidity - Reading and Writing to a State Variable
Reading and Writing to a State Variable 상태 변수 읽기 및 쓰기 To write or update a state variable you need to send a transaction. 상태 변수를 작성하거나 업데이트하려면 트랜잭션을 전송해야 합니다. On the other hand, you can read state variables, for free, without any transaction fee. 반면에, 당신은 거래 수수료 없이 무료로 상태 변수를 읽을 수 있다. 상태변수 작성 or 업데이트 >> 거래 수수료 지불하고 트랜잭션 전송 상태변수 읽기 >> 거래수수료 없이 무료로 읽을 수 있음 // SPDX-License-Identifier: MIT // 라이선스 명..
Programming Language/Solidity
2022. 12. 21. 21:49