tx · 3MSQhv6GqiFA6dhK3bFRh4hgSWSzER6nmFnWnfGd1XUX

3MviAdjHSgW13TSryd9Wreza4Wd3R55hm65:  -0.04000000 Waves

2019.07.16 18:34 [588573] smart account 3MviAdjHSgW13TSryd9Wreza4Wd3R55hm65 > SELF 0.00000000 Waves

{ "type": 13, "id": "3MSQhv6GqiFA6dhK3bFRh4hgSWSzER6nmFnWnfGd1XUX", "fee": 4000000, "feeAssetId": null, "timestamp": 1563291264443, "version": 1, "sender": "3MviAdjHSgW13TSryd9Wreza4Wd3R55hm65", "senderPublicKey": "6HMKmGrd7tD4VohMx1LJnSBvMxmq9nQ6nN4XgihwgtGy", "proofs": [ "PvycK1eaMn9zV84jZd2rUTGh16Qi54YzFw5dTNB1QQDhPiKUv2uvzCqQBKwqJ7wWdFgepgAMjxX8uiTDJNoFCM4" ], "script": "base64:AAIDAAAAAAAAAAAAAAAAAAAAAQAAAAFpAQAAAAhwdXJjaGFzZQAAAAAEAAAAA3BtdAkBAAAAB2V4dHJhY3QAAAABCAUAAAABaQAAAAdwYXltZW50AwkBAAAACWlzRGVmaW5lZAAAAAEIBQAAAANwbXQAAAAHYXNzZXRJZAkAAAIAAAABAgAAACBjYW4gdXNlIFdBVkVTIG9ubHkgYXQgdGhlIG1vbWVudAQAAAAPY3VzdG9tZXJBZGRyZXNzCQACWAAAAAEICAUAAAABaQAAAAZjYWxsZXIAAAAFYnl0ZXMEAAAABXByaWNlBAAAAAckbWF0Y2gwCQAEGgAAAAIFAAAABHRoaXMCAAAAE2l0ZW1fQV9jb3Vwb25fcHJpY2UDCQAAAQAAAAIFAAAAByRtYXRjaDACAAAAA0ludAQAAAABYQUAAAAHJG1hdGNoMAUAAAABYQAAAAAAAAAAAAMJAABmAAAAAgUAAAAFcHJpY2UIBQAAAANwbXQAAAAGYW1vdW50CQAAAgAAAAECAAAALnB1cmNoYXNlIGFtb3VudCBjYW5ub3QgYmUgbGVzcyB0aGFuIGl0ZW0gcHJpY2UDCQAAZgAAAAIIBQAAAANwbXQAAAAGYW1vdW50BQAAAAVwcmljZQkAAAIAAAABAgAAADBwdXJjaGFzZSBhbW91bnQgY2Fubm90IGJlIGhpZ2hlciB0aGFuIGl0ZW0gcHJpY2UJAQAAAAhXcml0ZVNldAAAAAEJAARMAAAAAgkBAAAACURhdGFFbnRyeQAAAAIJAAEsAAAAAgIAAAAgc3RhdHVzOnB1cmNoYXNlX2l0ZW1fQV9jdXN0b21lcl8FAAAAD2N1c3RvbWVyQWRkcmVzcwIAAAAJY29uZmlybWVkCQAETAAAAAIJAQAAAAlEYXRhRW50cnkAAAACCQABLAAAAAICAAAAIHN0YXR1czpwdXJjaGFzZV9pdGVtX0FfY3VzdG9tZXJfBQAAAA9jdXN0b21lckFkZHJlc3MFAAAABXByaWNlBQAAAANuaWwAAAAAsRzaSw==", "chainId": 84, "height": 588573, "spentComplexity": 0 } View: original | compacted Prev: AbuWMEToSe9WFdKf5LyLwC5ZzvhmE6iAzNd4FdsB6a6s Next: none Diff:
OldNewDifferences
33 {-# CONTENT_TYPE DAPP #-}
44
55
6+@Callable(a)
7+func purchase () = {
8+ let b = extract(a.payment)
9+ if (isDefined(b.assetId))
10+ then throw("can use WAVES only at the moment")
11+ else {
12+ let c = toBase58String(a.caller.bytes)
13+ let d = {
14+ let e = getInteger(this, "item_A_coupon_price")
15+ if ($isInstanceOf(e, "Int"))
16+ then {
17+ let f = e
18+ f
19+ }
20+ else 0
21+ }
22+ if ((d > b.amount))
23+ then throw("purchase amount cannot be less than item price")
24+ else if ((b.amount > d))
25+ then throw("purchase amount cannot be higher than item price")
26+ else WriteSet([DataEntry(("status:purchase_item_A_customer_" + c), "confirmed"), DataEntry(("status:purchase_item_A_customer_" + c), d)])
27+ }
28+ }
629
7-@Verifier(a)
8-func b () = {
9- let c = a
10- if ($isInstanceOf(c, "SetScriptTransaction"))
11- then {
12- let d = c
13- true
14- }
15- else if ($isInstanceOf(c, "DataTransaction"))
16- then {
17- let d = c
18- true
19- }
20- else false
21- }
2230
Full:
OldNewDifferences
11 {-# STDLIB_VERSION 3 #-}
22 {-# SCRIPT_TYPE ACCOUNT #-}
33 {-# CONTENT_TYPE DAPP #-}
44
55
6+@Callable(a)
7+func purchase () = {
8+ let b = extract(a.payment)
9+ if (isDefined(b.assetId))
10+ then throw("can use WAVES only at the moment")
11+ else {
12+ let c = toBase58String(a.caller.bytes)
13+ let d = {
14+ let e = getInteger(this, "item_A_coupon_price")
15+ if ($isInstanceOf(e, "Int"))
16+ then {
17+ let f = e
18+ f
19+ }
20+ else 0
21+ }
22+ if ((d > b.amount))
23+ then throw("purchase amount cannot be less than item price")
24+ else if ((b.amount > d))
25+ then throw("purchase amount cannot be higher than item price")
26+ else WriteSet([DataEntry(("status:purchase_item_A_customer_" + c), "confirmed"), DataEntry(("status:purchase_item_A_customer_" + c), d)])
27+ }
28+ }
629
7-@Verifier(a)
8-func b () = {
9- let c = a
10- if ($isInstanceOf(c, "SetScriptTransaction"))
11- then {
12- let d = c
13- true
14- }
15- else if ($isInstanceOf(c, "DataTransaction"))
16- then {
17- let d = c
18- true
19- }
20- else false
21- }
2230

github/deemru/w8io/026f985 
36.96 ms