tx · FmecuP9ZqqMjdSLKN35pg7dUCgY8P7YV1TLzoSKe2R2W
3N7dNNWmv5578H8E2uvi5iCcfrL5LdiHd3o: -0.01000000 Waves
2021.07.06 13:10 [1601608] smart account 3N7dNNWmv5578H8E2uvi5iCcfrL5LdiHd3o > SELF 0.00000000 Waves
{
"type": 13,
"id": "FmecuP9ZqqMjdSLKN35pg7dUCgY8P7YV1TLzoSKe2R2W",
"fee": 1000000,
"feeAssetId": null,
"timestamp": 1625566234404,
"version": 2,
"chainId": 84,
"sender": "3N7dNNWmv5578H8E2uvi5iCcfrL5LdiHd3o",
"senderPublicKey": "Fm5T6aisXqgF7W3uEcDftbjgAc73pLjgSLfrd8kVQPp",
"proofs": [
"Uc7rqs4NumtvVU9rbKZTCKrXGx48WbNRZDuxC9xuAzmgkDRbXNpzB64sKhGPqTtybXEkTXXApua1YzTpUKenxo8"
],
"script": "base64:AAIFAAAAAAAAAFQIAhIAGgcKAmExEgFpGgkKAmEyEgNwbXQaFQoCYTMSD2N1c3RvbWVyQWRkcmVzcxoLCgJhNBIFcHJpY2UaDQoCYTUSByRtYXRjaDAaBwoCYTYSAWEAAAAAAAAAAQAAAAJhMQEAAAAIcHVyY2hhc2UAAAAABAAAAAJhMgkAAZEAAAACCAUAAAACYTEAAAAIcGF5bWVudHMAAAAAAAAAAAADCQEAAAAJaXNEZWZpbmVkAAAAAQgFAAAAAmEyAAAAB2Fzc2V0SWQJAAACAAAAAQIAAAAVd29ya3Mgd2l0aCB3YXZlcyBvbmx5BAAAAAJhMwkAAlgAAAABCAgFAAAAAmExAAAABmNhbGxlcgAAAAVieXRlcwQAAAACYTQEAAAAAmE1CQAEGgAAAAIFAAAABHRoaXMCAAAAClhEX0NPU19UQU0DCQAAAQAAAAIFAAAAAmE1AgAAAANJbnQEAAAAAmE2BQAAAAJhNQUAAAACYTYAAAAAAAAAAAADCQAAZgAAAAIFAAAAAmE0CAUAAAACYTIAAAAGYW1vdW50CQAAAgAAAAECAAAABGJsYWQDCQAAZgAAAAIIBQAAAAJhMgAAAAZhbW91bnQFAAAAAmE0CQAAAgAAAAECAAAADWJsYWQyIHphIGR1em8JAARMAAAAAgkBAAAAC1N0cmluZ0VudHJ5AAAAAgkAASwAAAACAgAAACBzdGF0dXM6cHVyY2hhc2VfaXRlbV9BX2N1c3RvbWVyXwUAAAACYTMCAAAACWNvbmZpcm1lZAkABEwAAAACCQEAAAAMSW50ZWdlckVudHJ5AAAAAgkAASwAAAACAgAAAB9wcmljZTpwdXJjaGFzZV9pdGVtX0FfY3VzdG9tZXJfBQAAAAJhMwUAAAACYTQFAAAAA25pbAAAAAB64uYs",
"height": 1601608,
"applicationStatus": "succeeded",
"spentComplexity": 0
}
View: original | compacted
Prev: yPN1y93tmpQV9NR62Y2UZPrZA1JEXT8MGrRrLD9mquZ
Next: 7N25UwUZB5T2AzL9NYCLGzbaxzFH9sndfwvb85dVMnCP
Diff:
Old | New | | Differences |
---|
10 | 10 | | then throw("works with waves only") |
---|
11 | 11 | | else { |
---|
12 | 12 | | let customerAddress = toBase58String(i.caller.bytes) |
---|
13 | | - | let price = match getInteger(this, customerAddress) { |
---|
| 13 | + | let price = match getInteger(this, "XD_COS_TAM") { |
---|
14 | 14 | | case a: Int => |
---|
15 | 15 | | a |
---|
16 | 16 | | case _ => |
---|
|
20 | 20 | | then throw("blad") |
---|
21 | 21 | | else if ((pmt.amount > price)) |
---|
22 | 22 | | then throw("blad2 za duzo") |
---|
23 | | - | else $Tuple2([StringEntry(("status:purchase_item_A_customer_" + customerAddress), "confirmed"), IntegerEntry(("price:purchase_item_A_customer_" + customerAddress), price)], unit) |
---|
| 23 | + | else [StringEntry(("status:purchase_item_A_customer_" + customerAddress), "confirmed"), IntegerEntry(("price:purchase_item_A_customer_" + customerAddress), price)] |
---|
24 | 24 | | } |
---|
25 | 25 | | } |
---|
26 | 26 | | |
---|
Full:
Old | New | | Differences |
---|
1 | 1 | | {-# STDLIB_VERSION 5 #-} |
---|
2 | 2 | | {-# SCRIPT_TYPE ACCOUNT #-} |
---|
3 | 3 | | {-# CONTENT_TYPE DAPP #-} |
---|
4 | 4 | | |
---|
5 | 5 | | |
---|
6 | 6 | | @Callable(i) |
---|
7 | 7 | | func purchase () = { |
---|
8 | 8 | | let pmt = i.payments[0] |
---|
9 | 9 | | if (isDefined(pmt.assetId)) |
---|
10 | 10 | | then throw("works with waves only") |
---|
11 | 11 | | else { |
---|
12 | 12 | | let customerAddress = toBase58String(i.caller.bytes) |
---|
13 | | - | let price = match getInteger(this, customerAddress) { |
---|
| 13 | + | let price = match getInteger(this, "XD_COS_TAM") { |
---|
14 | 14 | | case a: Int => |
---|
15 | 15 | | a |
---|
16 | 16 | | case _ => |
---|
17 | 17 | | 0 |
---|
18 | 18 | | } |
---|
19 | 19 | | if ((price > pmt.amount)) |
---|
20 | 20 | | then throw("blad") |
---|
21 | 21 | | else if ((pmt.amount > price)) |
---|
22 | 22 | | then throw("blad2 za duzo") |
---|
23 | | - | else $Tuple2([StringEntry(("status:purchase_item_A_customer_" + customerAddress), "confirmed"), IntegerEntry(("price:purchase_item_A_customer_" + customerAddress), price)], unit) |
---|
| 23 | + | else [StringEntry(("status:purchase_item_A_customer_" + customerAddress), "confirmed"), IntegerEntry(("price:purchase_item_A_customer_" + customerAddress), price)] |
---|
24 | 24 | | } |
---|
25 | 25 | | } |
---|
26 | 26 | | |
---|
27 | 27 | | |
---|