tx · 5tyDB3oFn79ERehJrFu1mADau2PB3TM2vPy1v7kiphtU
3MxN6Cszfki941gTcEwXc8ngmbWPTsHoJFq: -0.01400000 Waves
2019.06.21 23:23 [552254] smart account 3MxN6Cszfki941gTcEwXc8ngmbWPTsHoJFq > SELF 0.00000000 Waves
{
"type": 13,
"id": "5tyDB3oFn79ERehJrFu1mADau2PB3TM2vPy1v7kiphtU",
"fee": 1400000,
"feeAssetId": null,
"timestamp": 1561148674349,
"version": 1,
"sender": "3MxN6Cszfki941gTcEwXc8ngmbWPTsHoJFq",
"senderPublicKey": "4fygXNNAjU52sT9N6uq4o9Ck8G75e94ukktN3pd4VxVo",
"proofs": [
"28hPtqRfQAmTL4LZVpDXR416wvFxcCgS4vCowAD7aj914JeiKHZWkdgj7puVWLnjNp9uK7WBsGoZggS8WNUjUCiy"
],
"script": "base64:AAIDAAAAAAAAAAAAAAAAAAAAAQAAAAFpAQAAAAhwdXJjaGFzZQAAAAAEAAAAA3BtdAkBAAAAB2V4dHJhY3QAAAABCAUAAAABaQAAAAdwYXltZW50AwkBAAAACWlzRGVmaW5lZAAAAAEIBQAAAANwbXQAAAAHYXNzZXRJZAkAAAIAAAABAgAAACBDYW4gdXNlIFdhdmVzIG9ubHkgYXQgdGhlIG1vbWVudAQAAAAPY3VzdG9tZXJBZGRyZXNzCQACWAAAAAEICAUAAAABaQAAAAZjYWxsZXIAAAAFYnl0ZXMEAAAABXByaWNlBAAAAAckbWF0Y2gwCQAEGgAAAAIFAAAABHRoaXMCAAAAE2l0ZW1fQV9jb3Vwb25fcHJpY2UDCQAAAQAAAAIFAAAAByRtYXRjaDACAAAAA0ludAQAAAABYQUAAAAHJG1hdGNoMAUAAAABYQAAAAAAAAAAAAMJAABmAAAAAgUAAAAFcHJpY2UIBQAAAANwbXQAAAAGYW1vdW50CQAAAgAAAAECAAAAL3B1cmNoYXNlIGFtb3VudCBjYW5ub3QgYmUgbGVzcyB0aGFuIGl0ZW0gcHJpY2UgAwkAAGYAAAACCAUAAAADcG10AAAABmFtb3VudAUAAAAFcHJpY2UJAAACAAAAAQIAAAAwcHVyY2hhc2UgYW1vdW50IGNhbm5vdCBiZSBoaWdoZXIgdGhhbiBpdGVtIHByaWNlCQEAAAAIV3JpdGVTZXQAAAABCQAETAAAAAIJAQAAAAlEYXRhRW50cnkAAAACCQABLAAAAAICAAAAIHN0YXR1czpwdXJjaGFzZV9pdGVtX0FfY3VzdG9tZXJfBQAAAA9jdXN0b21lckFkZHJlc3MCAAAACWNvbmZpcm1lZAkABEwAAAACCQEAAAAJRGF0YUVudHJ5AAAAAgkAASwAAAACAgAAAB9wcmljZTpwdXJjaGFzZV9pdGVtX0FfY3VzdG9tZXJfBQAAAA9jdXN0b21lckFkZHJlc3MFAAAABXByaWNlBQAAAANuaWwAAAAAg6BBzA==",
"chainId": 84,
"height": 552254,
"spentComplexity": 0
}
View: original | compacted
Prev: DUS8esYww56meQx4Q2Y8EpHccxFCp8AeQntJBUSH2PkF
Next: 9jBTDMWn9QrnHWRiEjsutEWoffNHAJZYStpUHyF5e9Qr
Diff:
Old | New | | Differences |
---|
7 | 7 | | func purchase () = { |
---|
8 | 8 | | let pmt = extract(i.payment) |
---|
9 | 9 | | if (isDefined(pmt.assetId)) |
---|
10 | | - | then throw("Can only use Waves for now") |
---|
| 10 | + | then throw("Can use Waves only at the moment") |
---|
11 | 11 | | else { |
---|
12 | | - | let customerad = toBase58String(i.caller.bytes) |
---|
13 | | - | let price = match getInteger(this, "item_A_price") { |
---|
| 12 | + | let customerAddress = toBase58String(i.caller.bytes) |
---|
| 13 | + | let price = match getInteger(this, "item_A_coupon_price") { |
---|
14 | 14 | | case a: Int => |
---|
15 | 15 | | a |
---|
16 | 16 | | case _ => |
---|
17 | 17 | | 0 |
---|
18 | 18 | | } |
---|
19 | 19 | | if ((price > pmt.amount)) |
---|
20 | | - | then throw("Please send correct price") |
---|
| 20 | + | then throw("purchase amount cannot be less than item price ") |
---|
21 | 21 | | else if ((pmt.amount > price)) |
---|
22 | | - | then throw("Amount cannot be greater than price") |
---|
23 | | - | else WriteSet([DataEntry(("status:purchase_item_A_customer_" + customerad), "confirmed"), DataEntry(("price:purchase_item_A_customer_" + customerad), price)]) |
---|
| 22 | + | then throw("purchase amount cannot be higher than item price") |
---|
| 23 | + | else WriteSet([DataEntry(("status:purchase_item_A_customer_" + customerAddress), "confirmed"), DataEntry(("price:purchase_item_A_customer_" + customerAddress), price)]) |
---|
24 | 24 | | } |
---|
25 | 25 | | } |
---|
26 | 26 | | |
---|
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(i) |
---|
7 | 7 | | func purchase () = { |
---|
8 | 8 | | let pmt = extract(i.payment) |
---|
9 | 9 | | if (isDefined(pmt.assetId)) |
---|
10 | | - | then throw("Can only use Waves for now") |
---|
| 10 | + | then throw("Can use Waves only at the moment") |
---|
11 | 11 | | else { |
---|
12 | | - | let customerad = toBase58String(i.caller.bytes) |
---|
13 | | - | let price = match getInteger(this, "item_A_price") { |
---|
| 12 | + | let customerAddress = toBase58String(i.caller.bytes) |
---|
| 13 | + | let price = match getInteger(this, "item_A_coupon_price") { |
---|
14 | 14 | | case a: Int => |
---|
15 | 15 | | a |
---|
16 | 16 | | case _ => |
---|
17 | 17 | | 0 |
---|
18 | 18 | | } |
---|
19 | 19 | | if ((price > pmt.amount)) |
---|
20 | | - | then throw("Please send correct price") |
---|
| 20 | + | then throw("purchase amount cannot be less than item price ") |
---|
21 | 21 | | else if ((pmt.amount > price)) |
---|
22 | | - | then throw("Amount cannot be greater than price") |
---|
23 | | - | else WriteSet([DataEntry(("status:purchase_item_A_customer_" + customerad), "confirmed"), DataEntry(("price:purchase_item_A_customer_" + customerad), price)]) |
---|
| 22 | + | then throw("purchase amount cannot be higher than item price") |
---|
| 23 | + | else WriteSet([DataEntry(("status:purchase_item_A_customer_" + customerAddress), "confirmed"), DataEntry(("price:purchase_item_A_customer_" + customerAddress), price)]) |
---|
24 | 24 | | } |
---|
25 | 25 | | } |
---|
26 | 26 | | |
---|
27 | 27 | | |
---|