Solidity - Calling Other Contract
Contract can call other contracts in 2 ways. 계약은 두 가지 방법으로 다른 계약을 호출할 수 있습니다. The easiest way to is to just call it, like A.foo(x, y, z). 가장 쉬운 방법은 A.foo(x, y, z)처럼 그냥 부르는 것입니다. Another way to call other contracts is to use the low-level call. 다른 계약을 호출하는 또 다른 방법은 낮은 수준의 호출을 사용하는 것입니다. This method is not recommended. 이 방법은 권장되지 않습니다. // SPDX-License-Identifier: MIT pragma solidity ^0.8.17; contr..
Programming Language/Solidity
2023. 1. 25. 23:35