tx · CMZ2PNqU8cGTbKKFKTANNp4Ru7dYuUyq1UbEdKypr1WF

3Mw9vGsQa22LGez1YRCawKswfyZskobmWDj:  -0.01400000 Waves

2019.07.19 12:33 [592587] smart account 3Mw9vGsQa22LGez1YRCawKswfyZskobmWDj > SELF 0.00000000 Waves

{ "type": 13, "id": "CMZ2PNqU8cGTbKKFKTANNp4Ru7dYuUyq1UbEdKypr1WF", "fee": 1400000, "feeAssetId": null, "timestamp": 1563528795481, "version": 1, "sender": "3Mw9vGsQa22LGez1YRCawKswfyZskobmWDj", "senderPublicKey": "5hba43srXnNujYFwJGuRoWADQcCm76jVcS8ByDxEib57", "proofs": [ "4znwwB1CfghY2wsYtL8v7diZ2z612yG18avGAoagvNJ8Y3Sq2Wa9Kp4K1rLhCWbyMtPatV61at1Y5KEW34ykyGrg" ], "script": null, "chainId": 84, "height": 592587, "spentComplexity": 0 } View: original | compacted Prev: F4HZrydsZswiHCXcu9nZuzMT5FkZJUXv4FCNANcwoVaK Next: EA2KB8E7ihDaUJX6DWeNDh2MQAjNrqxrMf3Hm8ytKToD Full:
OldNewDifferences
1-{-# STDLIB_VERSION 3 #-}
2-{-# SCRIPT_TYPE ACCOUNT #-}
3-{-# CONTENT_TYPE DAPP #-}
4-
5-
6-@Callable(i)
7-func deposit () = {
8- let pmt = extract(i.payment)
9- if (isDefined(pmt.assetId))
10- then throw("can hodl waves only at the moment")
11- else {
12- let currentKey = toBase58String(i.caller.bytes)
13- let currentAmount = match getInteger(this, currentKey) {
14- case a: Int =>
15- a
16- case _ =>
17- 0
18- }
19- let newAmount = (currentAmount + pmt.amount)
20- WriteSet([DataEntry(currentKey, newAmount)])
21- }
22- }
23-
24-
25-
26-@Callable(i)
27-func withdraw (amount) = {
28- let currentKey = toBase58String(i.caller.bytes)
29- let currentAmount = match getInteger(this, currentKey) {
30- case a: Int =>
31- a
32- case _ =>
33- 0
34- }
35- let newAmount = (currentAmount - amount)
36- if ((0 > amount))
37- then throw("Can't withdraw negative amount")
38- else if ((0 > newAmount))
39- then throw("Not enough balance")
40- else ScriptResult(WriteSet([DataEntry(currentKey, newAmount)]), TransferSet([ScriptTransfer(i.caller, amount, unit)]))
41- }
42-
43-
1+# no script

github/deemru/w8io/873ac7e 
25.37 ms