tx · 6dzi6XKUmsrRgrLLzQjNhdWwjhDeAtYLKeFT5aUWCMyd
3N9g8vmJj171kPszhaCUyPDNfNPqaXiFP3Z: -0.04000000 Waves
2020.06.07 21:46 [1033262] smart account 3N9g8vmJj171kPszhaCUyPDNfNPqaXiFP3Z > SELF 0.00000000 Waves
{
"type": 13,
"id": "6dzi6XKUmsrRgrLLzQjNhdWwjhDeAtYLKeFT5aUWCMyd",
"fee": 4000000,
"feeAssetId": null,
"timestamp": 1591555554379,
"version": 1,
"sender": "3N9g8vmJj171kPszhaCUyPDNfNPqaXiFP3Z",
"senderPublicKey": "G4tSmURBD4HJkP9Q8xjQhetzYDb1J7Bc581de6M9V7AK",
"proofs": [
"4RTsBoyfFNzK3dTYDN3xgf32Hi1Vv1aaxu44SfGiMEp2HxbKj4JaE4hLipXhVejTPA85NuzMFpts6HmqCCsB3m2q"
],
"script": "base64:AAIDAAAAAAAAAAcIARIDCgEIAAAAAAAAAAEAAAABaQEAAAAIcHVyY2hhc2UAAAABAAAABGl0ZW0EAAAAA3BtdAkBAAAAB2V4dHJhY3QAAAABCAUAAAABaQAAAAdwYXltZW50AwkBAAAACWlzRGVmaW5lZAAAAAEIBQAAAANwbXQAAAAHYXNzZXRJZAkAAAIAAAABAgAAACBjYW4gdXNlIFdBVkVTIG9ubHkgYXQgdGhlIG1vbWVudAQAAAAPY3VzdG9tZXJBZHJlZXNzCQACWAAAAAEICAUAAAABaQAAAAZjYWxsZXIAAAAFYnl0ZXMEAAAABXByaWNlBAAAAAckbWF0Y2gwCQAEGgAAAAIFAAAABHRoaXMJAAEsAAAAAgUAAAAEaXRlbQIAAAANX2NvdXBvbl9wcmljZQMJAAABAAAAAgUAAAAHJG1hdGNoMAIAAAADSW50BAAAAAFhBQAAAAckbWF0Y2gwBQAAAAFhAAAAAAAAAAAAAwkAAGYAAAACBQAAAAVwcmljZQgFAAAAA3BtdAAAAAZhbW91bnQJAAACAAAAAQIAAAAucHVyY2hhc2UgYW1vdW50IGNhbm5vdCBiZSBsZXNzIHRoYW4gaXRlbSBwcmljZQMJAABmAAAAAggFAAAAA3BtdAAAAAZhbW91bnQFAAAABXByaWNlCQAAAgAAAAECAAAAMHB1cmNoYXNlIGFtb3VudCBjYW5ub3QgYmUgaGlnaGVyIHRoYW4gaXRlbSBwcmljZQkBAAAACFdyaXRlU2V0AAAAAQkABEwAAAACCQEAAAAJRGF0YUVudHJ5AAAAAgkAASwAAAACCQABLAAAAAIJAAEsAAAAAgIAAAAQc3RhdHVzOnB1cmNoYXNlXwUAAAAEaXRlbQIAAAAKX2N1c3RvbWVyXwUAAAAPY3VzdG9tZXJBZHJlZXNzAgAAAAljb25maXJtZWQJAARMAAAAAgkBAAAACURhdGFFbnRyeQAAAAIJAAEsAAAAAgkAASwAAAACCQABLAAAAAICAAAAD3ByaWNlOnB1cmNoYXNlXwUAAAAEaXRlbQIAAAAKX2N1c3RvbWVyXwUAAAAPY3VzdG9tZXJBZHJlZXNzBQAAAAVwcmljZQUAAAADbmlsAAAAALi7SxE=",
"chainId": 84,
"height": 1033262,
"spentComplexity": 0
}
View: original | compacted
Prev: HMA1opRpYQD3YSzUHfaQBRAh2sX7Q2ZHdnCvs8urxzGg
Next: DFWPLH6T6C7CXDqBTWGPY8VM3tPiqocXo14H8jCxvw4D
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, (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_" + b) + "_customer_") + d), "confirmed"), DataEntry(((("price:purchase_" + 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, (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_" + b) + "_customer_") + d), "confirmed"), DataEntry(((("price:purchase_" + b) + "_customer_") + d), e)]) |
---|
27 | 27 | | } |
---|
28 | 28 | | } |
---|
29 | 29 | | |
---|
30 | 30 | | |
---|