Solidity에서 다른 계약을 호출하는 방법
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.3;
contract CallContractOne {
function setValueX() {
}
}
contract ContractOne {
uint public x;
function setX() external {
//we will want to set the value of x from CallContractOne
}
}
가장 먼저 알아야 할 것은 계약 외부에서 호출하려는 함수의 가시성을
external
로 표시해야 한다는 것입니다.스마트 계약
ContractOne
에서 스마트 계약CallContractOne
을 호출합니다. 호출하려는 계약을 초기화하기로 결정할 수 있습니다. 이것이 어떻게 수행되는지 보자:// SPDX-License-Identifier: MIT
pragma solidity ^0.8.3;
contract CallContractOne {
function setValueXByInitializing( address _contractOneAddress, uint _x ) public {
ContractOne(_contractOneAddress).setX(_x);
}
function setValueXByType(ContractOne _contract, uint _x ) public {
_contract.setX(_x);
}
function setValueXByPassingValue(ContractOne _contract, uint _x ) public payable {
_contract.setXAndReceiveEther{value: msg.value }(_x);
}
}
contract ContractOne {
uint public x;
uint public value;
function setX(uint _x ) external {
//we will want to set the value of x from CallContractOne
x = _x;
}
function setXAndReceiveEther(uint _x ) external payable {
//we will want to set the value of x from CallContractOne
x = _x;
value = msg.value;
}
}
위의 함수
setValueXByInitializing
를 보면 ContractOne
가 배포된 주소를 사용하여 계약을 초기화했습니다. 초기화ContractOne
가 있으면 여기에 정의된 외부 메서드를 호출할 수 있습니다.다른 계약의 외부 함수를 호출할 수 있는 또 다른 방법은 호출하려는 계약을 유형으로 사용하는 것입니다. 위의 기능을 살펴보십시오
setValueXByType
. 유형으로 ContractOne
를 전달하고 있습니다. ContractOne
가 배포된 주소입니다.외부 계약 호출에 값 전달
외부 계약을 호출할 때 에테르를 전달할 수 있습니다. 함수
setValueXByPassingValue
를 살펴보십시오. 이 함수는 setXAndReceiveEther
내부의 함수ContractOne
를 호출하고 이더를 전달합니다.코드를 복사하고 Remix에서 사용해 볼 수 있습니다. 두 계약을 모두 배포하고
ContractOne
의 주소를 복사하여 스마트 계약CallContractOne
내에서 사용합니다.읽어 주셔서 감사합니다.
Reference
이 문제에 관하여(Solidity에서 다른 계약을 호출하는 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/jamiescript/how-to-call-other-contracts-in-solidity-16dh텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)