tx · B8wAhHKQ7KLNrRHz4oNV4RdKpftUEGeWo7rP4ZWHEsSd
3MqiiiD5GiCgJENfvC6HA8MyUeZfX1fB4yD: -0.01400000 Waves
2019.06.25 00:07 [556689] smart account 3MqiiiD5GiCgJENfvC6HA8MyUeZfX1fB4yD > SELF 0.00000000 Waves
{
"type": 13,
"id": "B8wAhHKQ7KLNrRHz4oNV4RdKpftUEGeWo7rP4ZWHEsSd",
"fee": 1400000,
"feeAssetId": null,
"timestamp": 1561410514265,
"version": 1,
"sender": "3MqiiiD5GiCgJENfvC6HA8MyUeZfX1fB4yD",
"senderPublicKey": "2XEK2wpQ5tXMZdzxJPyGzitzHyVyQxp3WT9Ekxe8br7N",
"proofs": [
"5AtgeKTdc1Woe1MimBU7ihXFLw1kMH6nJExkaKHcFHdQrBmSDqvnP2M6Sgf7UkFTowkexgv9eFeHkGqtjRfKMwXW"
],
"script": "base64:AAIDAAAAAAAAAAAAAAAAAAAAAQAAAAFpAQAAAAhwdXJjaGFzZQAAAAEAAAAIaXRlbU5hbWUEAAAAA3BtdAkBAAAAB2V4dHJhY3QAAAABCAUAAAABaQAAAAdwYXltZW50AwkBAAAACWlzRGVmaW5lZAAAAAEIBQAAAANwbXQAAAAHYXNzZXRJZAkAAAIAAAABAgAAACBjYW4gdXNlIFdBVkVTIG9ubHkgYXQgdGhlIG1vbWVudAQAAAAPY3VzdG9tZXJBZGRyZXNzCQACWAAAAAEICAUAAAABaQAAAAZjYWxsZXIAAAAFYnl0ZXMEAAAABXByaWNlBAAAAAckbWF0Y2gwCQAEGgAAAAIFAAAABHRoaXMJAAEsAAAAAgkAASwAAAACAgAAAAVpdGVtXwUAAAAIaXRlbU5hbWUCAAAADV9jb3Vwb25fcHJpY2UDCQAAAQAAAAIFAAAAByRtYXRjaDACAAAAA0ludAQAAAABYQUAAAAHJG1hdGNoMAUAAAABYQAAAAAAAAAAAAMJAABmAAAAAgUAAAAFcHJpY2UIBQAAAANwbXQAAAAGYW1vdW50CQAAAgAAAAECAAAALnB1cmNoYXNlIGFtb3VudCBjYW5ub3QgYmUgbGVzcyB0aGFuIGl0ZW0gcHJpY2UDCQAAZgAAAAIIBQAAAANwbXQAAAAGYW1vdW50BQAAAAVwcmljZQkAAAIAAAABAgAAADBwdXJjaGFzZSBhbW91bnQgY2Fubm90IGJlIGhpZ2hlciB0aGFuIGl0ZW0gcHJpY2UJAQAAAAhXcml0ZVNldAAAAAEJAARMAAAAAgkBAAAACURhdGFFbnRyeQAAAAIJAAEsAAAAAgkAASwAAAACCQABLAAAAAICAAAAFXN0YXR1czpwdXJjaGFzZV9pdGVtXwUAAAAIaXRlbU5hbWUCAAAACl9jdXN0b21lcl8FAAAAD2N1c3RvbWVyQWRkcmVzcwIAAAAJY29uZmlybWVkCQAETAAAAAIJAQAAAAlEYXRhRW50cnkAAAACCQABLAAAAAIJAAEsAAAAAgkAASwAAAACAgAAABRwcmljZTpwdXJjaGFzZV9pdGVtXwUAAAAIaXRlbU5hbWUCAAAACl9jdXN0b21lcl8FAAAAD2N1c3RvbWVyQWRkcmVzcwUAAAAFcHJpY2UFAAAAA25pbAAAAAA6m1jo",
"chainId": 84,
"height": 556689,
"spentComplexity": 0
}
View: original | compacted
Prev: 9aaYLRKbVYTLqAfKR5h1aTPsCy84VjDFoSULeSYQnQuT
Next: GZKEkGekm23j9ghNpfdmbEZmqzsuM1YdfWFsjrhYmYP2
Diff:
Old | New | | Differences |
---|
4 | 4 | | |
---|
5 | 5 | | |
---|
6 | 6 | | @Callable(a) |
---|
7 | | - | func purchase () = { |
---|
8 | | - | let b = extract(a.payment) |
---|
9 | | - | if (isDefined(b.assetId)) |
---|
| 7 | + | func purchase (b) = { |
---|
| 8 | + | let c = extract(a.payment) |
---|
| 9 | + | if (isDefined(c.assetId)) |
---|
10 | 10 | | then throw("can use WAVES only at the moment") |
---|
11 | 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")) |
---|
| 12 | + | let d = toBase58String(a.caller.bytes) |
---|
| 13 | + | let e = { |
---|
| 14 | + | let f = getInteger(this, (("item_" + b) + "_coupon_price")) |
---|
| 15 | + | if ($isInstanceOf(f, "Int")) |
---|
16 | 16 | | then { |
---|
17 | | - | let f = e |
---|
18 | | - | f |
---|
| 17 | + | let g = f |
---|
| 18 | + | g |
---|
19 | 19 | | } |
---|
20 | 20 | | else 0 |
---|
21 | 21 | | } |
---|
22 | | - | if ((d > b.amount)) |
---|
| 22 | + | if ((e > c.amount)) |
---|
23 | 23 | | then throw("purchase amount cannot be less than item price") |
---|
24 | | - | else if ((b.amount > d)) |
---|
| 24 | + | else if ((c.amount > e)) |
---|
25 | 25 | | then throw("purchase amount cannot be higher than item price") |
---|
26 | | - | else WriteSet([DataEntry(("status:purchase_item_A_customer_" + c), "confirmed"), DataEntry(("price:purchase_item_A_customer_" + c), d)]) |
---|
| 26 | + | else WriteSet([DataEntry(((("status:purchase_item_" + b) + "_customer_") + d), "confirmed"), DataEntry(((("price:purchase_item_" + b) + "_customer_") + d), e)]) |
---|
27 | 27 | | } |
---|
28 | 28 | | } |
---|
29 | 29 | | |
---|
Full:
Old | New | | Differences |
---|
1 | 1 | | {-# STDLIB_VERSION 3 #-} |
---|
2 | 2 | | {-# SCRIPT_TYPE ACCOUNT #-} |
---|
3 | 3 | | {-# CONTENT_TYPE DAPP #-} |
---|
4 | 4 | | |
---|
5 | 5 | | |
---|
6 | 6 | | @Callable(a) |
---|
7 | | - | func purchase () = { |
---|
8 | | - | let b = extract(a.payment) |
---|
9 | | - | if (isDefined(b.assetId)) |
---|
| 7 | + | func purchase (b) = { |
---|
| 8 | + | let c = extract(a.payment) |
---|
| 9 | + | if (isDefined(c.assetId)) |
---|
10 | 10 | | then throw("can use WAVES only at the moment") |
---|
11 | 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")) |
---|
| 12 | + | let d = toBase58String(a.caller.bytes) |
---|
| 13 | + | let e = { |
---|
| 14 | + | let f = getInteger(this, (("item_" + b) + "_coupon_price")) |
---|
| 15 | + | if ($isInstanceOf(f, "Int")) |
---|
16 | 16 | | then { |
---|
17 | | - | let f = e |
---|
18 | | - | f |
---|
| 17 | + | let g = f |
---|
| 18 | + | g |
---|
19 | 19 | | } |
---|
20 | 20 | | else 0 |
---|
21 | 21 | | } |
---|
22 | | - | if ((d > b.amount)) |
---|
| 22 | + | if ((e > c.amount)) |
---|
23 | 23 | | then throw("purchase amount cannot be less than item price") |
---|
24 | | - | else if ((b.amount > d)) |
---|
| 24 | + | else if ((c.amount > e)) |
---|
25 | 25 | | then throw("purchase amount cannot be higher than item price") |
---|
26 | | - | else WriteSet([DataEntry(("status:purchase_item_A_customer_" + c), "confirmed"), DataEntry(("price:purchase_item_A_customer_" + c), d)]) |
---|
| 26 | + | else WriteSet([DataEntry(((("status:purchase_item_" + b) + "_customer_") + d), "confirmed"), DataEntry(((("price:purchase_item_" + b) + "_customer_") + d), e)]) |
---|
27 | 27 | | } |
---|
28 | 28 | | } |
---|
29 | 29 | | |
---|
30 | 30 | | |
---|