Solidity - Interface
You can interact with other contracts by declaring an Interface. 인터페이스를 선언하여 다른 계약과 상호 작용할 수 있습니다. Interface They cannot inherit other contracts or interfaces. 다른 계약이나 인터페이스를 상속할 수 없습니다. All declared functions must be external. 선언된 모든 함수는 외부 함수여야 합니다. They cannot declare a constructor. 생성자를 선언할 수 없습니다. They cannot declare state variables. 상태 변수를 선언할 수 없습니다. // SPDX-License-Identifier: MIT pragma..
Programming Language/Solidity
2023. 1. 5. 21:17