This repository has been archived by the owner on Sep 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 511
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #307 from ensdomains/upgrade/truffle
upgrade/truffle
- Loading branch information
Showing
21 changed files
with
346 additions
and
266 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
pragma solidity ^0.4.24; | ||
pragma solidity >=0.4.24; | ||
|
||
interface Deed { | ||
|
||
function setOwner(address newOwner) public; | ||
function setRegistrar(address newRegistrar) public; | ||
function setBalance(uint newValue, bool throwOnFailure) public; | ||
function closeDeed(uint refundRatio) public; | ||
function destroyDeed() public; | ||
function setOwner(address payable newOwner) external; | ||
function setRegistrar(address newRegistrar) external; | ||
function setBalance(uint newValue, bool throwOnFailure) external; | ||
function closeDeed(uint refundRatio) external; | ||
function destroyDeed() external; | ||
|
||
function owner() public view returns (address); | ||
function previousOwner() public view returns (address); | ||
function value() public view returns (uint); | ||
function creationDate() public view returns (uint); | ||
function owner() external view returns (address); | ||
function previousOwner() external view returns (address); | ||
function value() external view returns (uint); | ||
function creationDate() external view returns (uint); | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.