Skip to main content

34 Calling Other Contract

  • コントラクトが他のコントラクトを呼び出すには2パターンがある
    • 一番簡単な方法:そのまま呼ぶ → A.foo(x, y, z)
    • 低いレベルの呼び出し → あまりお勧めではない
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

contract Callee { // 呼ばれる方
uint public x;
uint public value;

function setX(uint _x) public returns (uint) {
x = _x;
return x;
}

function setXandSendEther(uint _x) public payable returns (uint, uint) {
x = _x;
value = msg.value;

return (x, value);
}
}

contract Caller { // 呼ぶ方
function setX(Callee _callee, uint _x) public {
uint x = _callee.setX(_x);
}

function setXFromAddress(address _addr, uint _x) public {
Callee callee = Callee(_addr);
callee.setX(_x);
}

function setXandSendEther(Callee _callee, uint _x) public payable {
(uint x, uint value) = _callee.setXandSendEther{value: msg.value}(_x);
}
}


Remixで試す