interface1 [Solidity] 다른 contract 와 상호작용하기 contract 내부에서 블록체인 안에서 내가 소유하고 있지않은 다른 contract 와 상호작용(함수 호출 등)하는 방법 먼저 사용하고자 하는 contract 의 interface 를 정의해야 한다. contract NumberInterface { function getNum(address _myAddress) public view returns (uint); } 위와 같이 getNum 함수의 body(구현부)가 없다. 함수 마지막 (; 세미콜론)으로 바로 끝낸다. contract MyContract { address NumberInterfaceAddress = 0xab38... // ^ The address of the FavoriteNumber contract on Ethereum NumberInt.. 2022. 12. 9. 이전 1 다음