tx · 1anmNGLuaN7fsfPyMn25z9k9KSFLH9UJ4qk1ZjbVyxC 3MwvNguAJMnh3pKUiuzDRBemNh75bdBjyVr: -0.01400000 Waves 2019.07.29 21:48 [607750] smart account 3MwvNguAJMnh3pKUiuzDRBemNh75bdBjyVr > SELF 0.00000000 Waves
{ "type": 13, "id": "1anmNGLuaN7fsfPyMn25z9k9KSFLH9UJ4qk1ZjbVyxC", "fee": 1400000, "feeAssetId": null, "timestamp": 1564426053408, "version": 1, "sender": "3MwvNguAJMnh3pKUiuzDRBemNh75bdBjyVr", "senderPublicKey": "6ujKbRwbiQw9xBPcWiwb6LJbvyH3fWurt5YUViqNiWza", "proofs": [ "2R1KxSDn6NvdoGHUxhkBVpk5vFFSjWJ5Wzo1sckSFY8CSJ737CWhdvJtMB2cF1DxAa8SgXmaBUsXuA5TypGHdcL9" ], "script": "base64:AAIDAAAAAAAAAAAAAAAAAAAAAQAAAAFpAQAAAAhwdXJjaGFzZQAAAAAEAAAAA3BtdAkBAAAAB2V4dHJhY3QAAAABCAUAAAABaQAAAAdwYXltZW50AwkBAAAACWlzRGVmaW5lZAAAAAEIBQAAAANwbXQAAAAHYXNzZXRJZAkAAAIAAAABAgAAACBjYW4gdXNlIFdBVkVTIG9ubHkgYXQgdGhlIG1vbWVudAQAAAAPY3VzdG9tZXJBZGRyZXNzCQACWAAAAAEICAUAAAABaQAAAAZjYWxsZXIAAAAFYnl0ZXMEAAAABXByaWNlBAAAAAckbWF0Y2gwCQAEGgAAAAIFAAAABHRoaXMCAAAAE2l0ZW1fQV9jb3Vwb25fcHJpY2UDCQAAAQAAAAIFAAAAByRtYXRjaDACAAAAA0ludAQAAAABYQUAAAAHJG1hdGNoMAUAAAABYQAAAAAAAAAAAAMJAABmAAAAAgUAAAAFcHJpY2UIBQAAAANwbXQAAAAGYW1vdW50CQAAAgAAAAECAAAALnB1cmNoYXNlIGFtb3VudCBjYW5ub3QgYmUgbGVzcyB0aGFuIGl0ZW0gcHJpY2UDCQAAZgAAAAIIBQAAAANwbXQAAAAGYW1vdW50BQAAAAVwcmljZQkAAAIAAAABAgAAACtwdXJjaGFzZSBhbW91bnQgY2Fubm90IGJlIGhpZ2hlciBpdGVtIHByaWNlCQEAAAAIV3JpdGVTZXQAAAABCQAETAAAAAIJAQAAAAlEYXRhRW50cnkAAAACCQABLAAAAAICAAAAIHN0YXR1czpwdXJjaGFzZV9pdGVtX0FfY3VzdG9tZXJfBQAAAA9jdXN0b21lckFkZHJlc3MCAAAACWNvbmZpcm1lZAkABEwAAAACCQEAAAAJRGF0YUVudHJ5AAAAAgkAASwAAAACAgAAAB9wcmljZTpwdXJjaGFzZV9pdGVtX0FfY3VzdG9tZXJfBQAAAA9jdXN0b21lckFkZHJlc3MFAAAABXByaWNlBQAAAANuaWwAAAAAx9N2eg==", "chainId": 84, "height": 607750, "spentComplexity": 0 } View: original | compacted Prev: 5xiBwdWVFALqbTEMZ8rwGYMeeUfy4ErXtNryUUBFw1p5 Next: AiSzxxMHKCYsxjc3AAymQkxqZm3u6tFDUK1YJxKRHLBh Full:
Old | New | Differences | |
---|---|---|---|
1 | 1 | {-# STDLIB_VERSION 3 #-} | |
2 | 2 | {-# SCRIPT_TYPE ACCOUNT #-} | |
3 | 3 | {-# CONTENT_TYPE DAPP #-} | |
4 | - | let ownerPubKey = base58'6ujKbRwbiQw9xBPcWiwb6LJbvyH3fWurt5YUViqNiWza' | |
5 | 4 | ||
6 | 5 | ||
7 | - | @Verifier(tx) | |
8 | - | func verify () = match tx { | |
9 | - | case d: SetScriptTransaction => | |
10 | - | sigVerify(tx.bodyBytes, tx.proofs[0], ownerPubKey) | |
11 | - | case d: DataTransaction => | |
12 | - | true | |
13 | - | case _ => | |
14 | - | false | |
15 | - | } | |
6 | + | @Callable(i) | |
7 | + | func purchase () = { | |
8 | + | let pmt = extract(i.payment) | |
9 | + | if (isDefined(pmt.assetId)) | |
10 | + | then throw("can use WAVES only at the moment") | |
11 | + | else { | |
12 | + | let customerAddress = toBase58String(i.caller.bytes) | |
13 | + | let price = match getInteger(this, "item_A_coupon_price") { | |
14 | + | case a: Int => | |
15 | + | a | |
16 | + | case _ => | |
17 | + | 0 | |
18 | + | } | |
19 | + | if ((price > pmt.amount)) | |
20 | + | then throw("purchase amount cannot be less than item price") | |
21 | + | else if ((pmt.amount > price)) | |
22 | + | then throw("purchase amount cannot be higher item price") | |
23 | + | else WriteSet([DataEntry(("status:purchase_item_A_customer_" + customerAddress), "confirmed"), DataEntry(("price:purchase_item_A_customer_" + customerAddress), price)]) | |
24 | + | } | |
25 | + | } | |
26 | + | ||
16 | 27 |
github/deemru/w8io/026f985 31.06 ms ◑