Skip to content

Instantly share code, notes, and snippets.

@critesjosh
Last active August 20, 2021 13:42
Show Gist options
  • Star 9 You must be signed in to star a gist
  • Fork 8 You must be signed in to fork a gist
  • Save critesjosh/50eb7f243cf960ebf6240fae52c14e63 to your computer and use it in GitHub Desktop.
Save critesjosh/50eb7f243cf960ebf6240fae52c14e63 to your computer and use it in GitHub Desktop.
Inter-contract execution in Solidity
pragma solidity ^0.5.0;
contract Base {
uint x;
constructor() public {
x = 10;
}
function setX(uint _x) public returns(bool) {
x = _x;
return true;
}
function getX() public view returns(uint) {
return x;
}
}
contract Caller {
function getBaseX(address baseAddress) public view returns(uint) {
Base baseContract = Base(baseAddress);
return baseContract.getX();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment