-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSimpleAuction.sol
More file actions
72 lines (58 loc) · 1.75 KB
/
SimpleAuction.sol
File metadata and controls
72 lines (58 loc) · 1.75 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
pragma solidity ^0.4.23;
contract SimpleAuction{
address admin;
address[] bidders;
uint topBid;
uint topBdId;
uint bdId;
mapping(address => bool) bidderStatus;
mapping(uint => bidDetails) bid;
struct bidDetails{
address bidderAddress;
uint bidAmount;
uint bidTimestamp;
uint bidId;
}
event bidderReg(address _bidderAdd);
event bidWinner(bidDetails _topBid);
modifier onlyAdmin{
require(msg.sender == admin);
_;
}
modifier notAdmin{
require(msg.sender != admin);
_;
}
constructor() public {
admin = msg.sender;
}
function submitRegistration() public notAdmin {
address bdr = msg.sender;
bidders.push(bdr);
emit bidderReg(msg.sender);
}
function acceptBidder(address _bidderAdd) public onlyAdmin {
bidderStatus[_bidderAdd] = true;
}
function submitBid(uint _bidAmount) public returns(string){
if(bidderStatus[msg.sender] == true){
bdId++;
bidDetails memory temp = bidDetails(msg.sender,_bidAmount,now,bdId);
bid[bdId] = temp;
if(bdId ==1){
topBid = _bidAmount;
topBdId = bdId;
}else if(_bidAmount > topBid){
topBid = _bidAmount;
topBdId = bdId;
}
return("Bid Accepted");
}else{
return("Biddder not registered/accepted");
}
}
function completeAuction() public onlyAdmin{
bidDetails memory temp = bidDetails(bid[topBdId].bidderAddress,bid[topBdId].bidAmount,bid[topBdId].bidTimestamp,bid[topBdId].bidId);
emit bidWinner(temp);
}
}