3
3
{-# SCRIPT_TYPE ACCOUNT #-}
4
4
5
5
6
-
7
6
let maxAuctionDuration = 1440 * 30
8
7
# ~ 30 days
9
8
@@ -12,13 +11,13 @@ let maxAuctionDuration = 1440 * 30
12
11
func startAuction(duration: Int, startPrice: Int, priceAssetId:String) = {
13
12
14
13
let auctionId = toBase58String(i.transactionId)
15
- let auctionEndHeight = lastBlock.height + duration
14
+ let endHeight = lastBlock.height + duration
16
15
17
16
let pmt = extract(i.payment)
18
17
19
18
if (duration > maxAuctionDuration) then throw("Duration is too long. Must be less than " + toString(maxAuctionDuration)) else
20
19
WriteSet(
21
- [ DataEntry(auctionId, auctionEndHeight ),
20
+ [ DataEntry(auctionId, endHeight ),
22
21
DataEntry(auctionId + "_organizer", i.caller.bytes.toBase58String()),
23
22
DataEntry(auctionId + "_lot_assetId", if (isDefined(pmt.assetId)) then toBase58String(value(pmt.assetId)) else "WAVES"),
24
23
DataEntry(auctionId + "_lot_amount", pmt.amount),
@@ -34,27 +33,44 @@ func bid(auctionId: String) = {
34
33
let pmtAssetIdStr = if (isDefined(pmt.assetId)) then toBase58String(value(pmt.assetId)) else "WAVES"
35
34
let callerAddressStr = i.caller.bytes.toBase58String()
36
35
37
- let auctionEndHeight = getIntegerValue(this, auctionId)
38
- let auctionPriceAssetId = getStringValue(this, auctionId + "_priceAssetId")
39
- let auctionWinAmount = getInteger(this, auctionId + "_winAmount")
40
-
41
- let bidderAmount = getInteger(this, auctionId + "_bidder_" + callerAddressStr)
42
- let curBidderAmount = if isDefined(bidderAmount) then value(bidderAmount) else 0
36
+ let endHeight = getIntegerValue(this, auctionId)
37
+ let startPrice = getIntegerValue(this, auctionId + "_startPrice")
38
+ let priceAssetId = getStringValue(this, auctionId + "_priceAssetId")
39
+ let winAmount = getInteger(this, auctionId + "_winAmount")
40
+ let winner = getString(this, auctionId + "_winner")
43
41
44
- let totalBidAmount = curBidderAmount + pmt.amount
42
+ let bidFromTheSameUser = isDefined(winner) && value(winner) == callerAddressStr
43
+ let totalBidAmount = pmt.amount + if bidFromTheSameUser then
44
+ value(winAmount) else 0
45
45
46
- if (lastBlock.height >= auctionEndHeight ) then
46
+ if (lastBlock.height >= endHeight ) then
47
47
throw("Auction already finished") else
48
- if (auctionPriceAssetId != pmtAssetIdStr) then
49
- throw("Bid must be in asset '" + auctionPriceAssetId + "'") else
50
- if (isDefined(auctionWinAmount) && totalBidAmount <= value(auctionWinAmount)) then
51
- throw("Bid must be more then " + toString(totalBidAmount))
48
+ if (priceAssetId != pmtAssetIdStr) then
49
+ throw("Bid must be in asset '" + priceAssetId + "'") else
50
+ if (isDefined(winAmount) && totalBidAmount <= value(winAmount) ||
51
+ !isDefined(winAmount) && totalBidAmount <= startPrice) then
52
+ throw("Bid must be more then "
53
+ + toString(if isDefined(winAmount) then value(winAmount) else startPrice))
52
54
else
53
- WriteSet([
54
- DataEntry(auctionId + "_bidder_" + callerAddressStr, totalBidAmount),
55
- DataEntry(auctionId + "_winner", callerAddressStr),
56
- DataEntry(auctionId + "_winAmount", totalBidAmount)
57
- ])
55
+ if (bidFromTheSameUser || !isDefined(winner)) then
56
+ WriteSet([
57
+ DataEntry(auctionId + "_winner", callerAddressStr),
58
+ DataEntry(auctionId + "_winAmount", totalBidAmount)
59
+ ])
60
+ else {
61
+ let previousBidderAddr = addressFromStringValue(value(winner))
62
+ let priceAsset = if (priceAssetId == "WAVES" || priceAssetId == "") then unit else fromBase58String(priceAssetId)
63
+ ScriptResult(
64
+ WriteSet([
65
+ DataEntry(auctionId + "_winner", callerAddressStr),
66
+ DataEntry(auctionId + "_winAmount", totalBidAmount)
67
+ ]),
68
+ TransferSet([
69
+ ScriptTransfer(previousBidderAddr, value(winAmount), priceAsset)
70
+ ])
71
+ )
72
+ }
73
+
58
74
}
59
75
60
76
@@ -65,59 +81,42 @@ func withdraw(auctionId: String) = {
65
81
let pmtAssetIdStr = if (isDefined(pmt.assetId)) then toBase58String(value(pmt.assetId)) else "WAVES"
66
82
let callerAddressStr = i.caller.bytes.toBase58String()
67
83
68
- let auctionEndHeight = getIntegerValue(this, auctionId)
69
- let auctionOrganizer = getStringValue(this, auctionId + "_organizer")
70
- let auctionWinner = getString(this, auctionId + "_winner")
71
- let auctionLotAssetId = getStringValue(this, auctionId + "_lot_assetId")
72
- let auctionLotAmount = getIntegerValue(this, auctionId + "_lot_amount")
73
- let auctionPriceAssetId = getStringValue(this, auctionId + "_priceAssetId")
74
- let auctionWinAmount = getIntegerValue(this, auctionId + "_winAmount")
84
+ let endHeight = getIntegerValue(this, auctionId)
85
+ let organizer = getStringValue(this, auctionId + "_organizer")
86
+ let winner = getString(this, auctionId + "_winner")
87
+ let lotAssetId = getStringValue(this, auctionId + "_lot_assetId")
88
+ let lotAmount = getIntegerValue(this, auctionId + "_lot_amount")
89
+ let priceAssetId = getStringValue(this, auctionId + "_priceAssetId")
90
+ let winAmount = getIntegerValue(this, auctionId + "_winAmount")
75
91
76
- let auctionLotAsset = if (auctionLotAssetId == "WAVES") then unit else fromBase58String(auctionLotAssetId )
77
- let auctionPriceAsset = if (auctionPriceAssetId == "WAVES" || auctionPriceAssetId == "") then unit else fromBase58String(auctionPriceAssetId )
78
- let auctionWinnerAddr = addressFromStringValue(value(auctionWinner ))
79
- let auctionOrganizerAddr = addressFromStringValue(value(auctionOrganizer ))
92
+ let lotAsset = if (lotAssetId == "WAVES") then unit else fromBase58String(lotAssetId )
93
+ let priceAsset = if (priceAssetId == "WAVES" || priceAssetId == "") then unit else fromBase58String(priceAssetId )
94
+ let winnerAddr = addressFromStringValue(value(winner ))
95
+ let organizerAddr = addressFromStringValue(value(organizer ))
80
96
81
97
let betAmount = getInteger(this, auctionId + "_bidder_" + callerAddressStr)
82
98
83
- if (lastBlock.height < auctionEndHeight ) then
99
+ if (lastBlock.height < endHeight ) then
84
100
throw("Auction is not finished yet") else
85
101
86
- if (!isDefined(auctionWinner)) then {
87
- if (callerAddressStr == auctionOrganizer) then
88
- if (!isDefined(getString(this, auctionId + "_lot_passed"))) then
89
- throw("You have already got your lot back")
90
- else
91
- ScriptResult(
92
- WriteSet([DataEntry(auctionId + "_lot_passed", i.caller.bytes.toBase58String())]),
93
- TransferSet([ScriptTransfer(i.caller, auctionLotAmount, auctionLotAsset)])
94
- )
102
+ if (!isDefined(winner)) then {
103
+ if (isDefined(getString(this, auctionId + "_lot_passed"))) then
104
+ throw("Organizer has already got his lot back")
95
105
else
96
- throw("You haven't participate in this auction")
106
+ ScriptResult(
107
+ WriteSet([DataEntry(auctionId + "_lot_passed", organizer)]),
108
+ TransferSet([ScriptTransfer(organizerAddr, lotAmount, lotAsset)])
109
+ )
97
110
}
98
111
else {
99
- if (callerAddressStr == auctionOrganizer || callerAddressStr == auctionWinner) then {
100
- # Lot -> winner, winner's bet -> organizer
101
- if (isDefined(getString(this, auctionId + "_lot_passed"))) then
102
- throw("Lot is already passed to the winner, and organizer got his reward")
103
- else
104
- ScriptResult(
105
- WriteSet([DataEntry(auctionId + "_lot_passed", auctionWinnerAddr.bytes.toBase58String())]),
106
- TransferSet([ScriptTransfer(auctionWinnerAddr, auctionLotAmount, auctionLotAsset),
107
- ScriptTransfer(auctionOrganizerAddr, auctionWinAmount, auctionPriceAsset)])
108
- # We don't mark winner's bid as returned here because it's not neccessary
109
- )
110
- }
111
- else {
112
- if (!isDefined(betAmount)) then
113
- throw("You didn't bid anything")
114
- else if (isDefined(getBoolean(this, auctionId + "_bidder_" + callerAddressStr + "_return"))) then
115
- throw("You have already got your bid back")
116
- else
117
- ScriptResult(
118
- WriteSet([DataEntry(auctionId + "_bidder_" + callerAddressStr + "_return", true)]),
119
- TransferSet([ScriptTransfer(i.caller, value(betAmount), auctionPriceAsset)]) # return bet which loose
120
- )
121
- }
112
+ # Lot -> winner, winner's bet -> organizer
113
+ if (isDefined(getString(this, auctionId + "_lot_passed"))) then
114
+ throw("Lot is already passed to the winner, and organizer got his reward")
115
+ else
116
+ ScriptResult(
117
+ WriteSet([DataEntry(auctionId + "_lot_passed", winnerAddr.bytes.toBase58String())]),
118
+ TransferSet([ScriptTransfer(winnerAddr, lotAmount, lotAsset),
119
+ ScriptTransfer(organizerAddr, winAmount, priceAsset)])
120
+ )
122
121
}
123
122
}
0 commit comments