-
Notifications
You must be signed in to change notification settings - Fork 5
/
owned.sol
54 lines (44 loc) · 1.03 KB
/
owned.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
pragma solidity ^0.4.12;
contract owned {
address public owner;
function owned() public {
owner = msg.sender;
}
modifier onlyOwner {
require(msg.sender == owner);
_;
}
function transferOwnership(address newOwner) public onlyOwner {
owner = newOwner;
}
}
contract ownedWithAproval
{
address public approvedOwner;
address public owner;
function ownedWithAproval() public {
owner = msg.sender;
}
modifier onlyOwner {
require(msg.sender == owner);
_;
}
function transferOwnership(address newOwner) public
onlyOwner
returns (bool ok)
{
owner = newOwner;
approvedOwner = newOwner;
return true;
}
function approve(address newPotentialOwner) public
onlyOwner
{
approvedOwner = newPotentialOwner;
}
function claimOwnership() public returns (bool ok) {
require(msg.sender == approvedOwner);
owner = approvedOwner;
return true;
}
}