Solidity - Structs
You can define your own type by creating a struct. Struct를 만들어서 사용자 고유의 유형을 만들 수 있습니다.(정의할 수 있습니다.) They are useful for grouping together related data. 관련 데이터를 그룹화하는 데 유용합니다. Structs can be declared outside of a contract and imported in another contract. Struct는 계약 외부에서 선언하고 다른 계약으로 가져올 수 있습니다. // SPDX-License-Identifier: MIT pragma solidity ^0.8.13; contract Todos { struct Todo { string text; b..
Programming Language/Solidity
2022. 12. 25. 10:53