Skip to content

Instantly share code, notes, and snippets.

@ilamanov
Created March 7, 2022 20:59
Show Gist options
  • Select an option

  • Save ilamanov/39e65e4fd0cae5e22acee9325a341d5b to your computer and use it in GitHub Desktop.

Select an option

Save ilamanov/39e65e4fd0cae5e22acee9325a341d5b to your computer and use it in GitHub Desktop.
contract KittyCore is KittyMinting {
address public newContractAddress;
function setNewAddress(address _v2Address) external onlyCEO whenPaused {
newContractAddress = _v2Address;
ContractUpgrade(_v2Address);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment