tx · 51WuYWjCx67PojNx1nwDh4xqe4fudRnWWmHV9ogWD8tH
3N88buWcj4sRkCSY6PydUtBzZwHrbCBYxqb: -0.01400000 Waves
2019.09.04 18:37 [661449] smart account 3N88buWcj4sRkCSY6PydUtBzZwHrbCBYxqb > SELF 0.00000000 Waves
{
"type": 13,
"id": "51WuYWjCx67PojNx1nwDh4xqe4fudRnWWmHV9ogWD8tH",
"fee": 1400000,
"feeAssetId": null,
"timestamp": 1567611416360,
"version": 1,
"sender": "3N88buWcj4sRkCSY6PydUtBzZwHrbCBYxqb",
"senderPublicKey": "3tFLZxrsP95xd5LVEgTiw6dWZwSXmaV1qa7t3mBvLRLU",
"proofs": [
"3Y52CqBD31fGsNW9VuusnhDdbkqDFyrtHazCMpiKAeggJdXDwBbNUYwMTGLXW2ApQQA5uiYiHPhP1RHNdJBwxtbk"
],
"script": "base64:AAIDAAAAAAAAAAAAAAAAAAAAAgAAAAFpAQAAAAdkZXBvc2l0AAAAAAQAAAADcG10CQEAAAAHZXh0cmFjdAAAAAEIBQAAAAFpAAAAB3BheW1lbnQDCQEAAAAJaXNEZWZpbmVkAAAAAQgFAAAAA3BtdAAAAAdhc3NldElkCQAAAgAAAAECAAAAIWNhbiBob2RsIHdhdmVzIG9ubHkgYXQgdGhlIG1vbWVudAQAAAAKY3VycmVudEtleQkAAlgAAAABCAgFAAAAAWkAAAAGY2FsbGVyAAAABWJ5dGVzBAAAAA1jdXJyZW50QW1vdW50BAAAAAckbWF0Y2gwCQAEGgAAAAIFAAAABHRoaXMFAAAACmN1cnJlbnRLZXkDCQAAAQAAAAIFAAAAByRtYXRjaDACAAAAA0ludAQAAAABYQUAAAAHJG1hdGNoMAUAAAABYQAAAAAAAAAAAAQAAAAJbmV3QW1vdW50CQAAZAAAAAIFAAAADWN1cnJlbnRBbW91bnQIBQAAAANwbXQAAAAGYW1vdW50CQEAAAAIV3JpdGVTZXQAAAABCQAETAAAAAIJAQAAAAlEYXRhRW50cnkAAAACBQAAAApjdXJyZW50S2V5BQAAAAluZXdBbW91bnQFAAAAA25pbAAAAAFpAQAAAAh3aXRoZHJhdwAAAAEAAAAGYW1vdW50CQEAAAAIV3JpdGVTZXQAAAABCQAETAAAAAIJAQAAAAlEYXRhRW50cnkAAAACAgAAAAAAAAAAAAAAAAEFAAAAA25pbAAAAACjYHWd",
"chainId": 84,
"height": 661449,
"spentComplexity": 0
}
View: original | compacted
Prev: EH3dsSjc1YUB44skF8HZi38DWkdjmmwgpXPDdA7EpVi4
Next: 9QiUJtMaSRJL1mGkz1fmM7b3PxxyibwavQ4CaVvBiy3c
Diff:
Old | New | | Differences |
---|
24 | 24 | | |
---|
25 | 25 | | |
---|
26 | 26 | | @Callable(i) |
---|
27 | | - | func withdraw (amount) = { |
---|
28 | | - | let currentKey = toBase58String(i.caller.bytes) |
---|
29 | | - | let currentAmount = match getInteger(this, currentKey) { |
---|
30 | | - | case a: Int => |
---|
31 | | - | a |
---|
32 | | - | case _ => |
---|
33 | | - | 0 |
---|
34 | | - | } |
---|
35 | | - | let newAmount = (currentAmount - amount) |
---|
36 | | - | if ((0 > amount)) |
---|
37 | | - | then throw("Can't withdraw negative amount") |
---|
38 | | - | else if ((0 > newAmount)) |
---|
39 | | - | then throw("Not enough balance") |
---|
40 | | - | else ScriptResult(WriteSet([DataEntry(currentKey, newAmount)]), TransferSet([ScriptTransfer(i.caller, amount, unit)])) |
---|
41 | | - | } |
---|
| 27 | + | func withdraw (amount) = WriteSet([DataEntry("", 1)]) |
---|
42 | 28 | | |
---|
43 | 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(i) |
---|
7 | 7 | | func deposit () = { |
---|
8 | 8 | | let pmt = extract(i.payment) |
---|
9 | 9 | | if (isDefined(pmt.assetId)) |
---|
10 | 10 | | then throw("can hodl waves only at the moment") |
---|
11 | 11 | | else { |
---|
12 | 12 | | let currentKey = toBase58String(i.caller.bytes) |
---|
13 | 13 | | let currentAmount = match getInteger(this, currentKey) { |
---|
14 | 14 | | case a: Int => |
---|
15 | 15 | | a |
---|
16 | 16 | | case _ => |
---|
17 | 17 | | 0 |
---|
18 | 18 | | } |
---|
19 | 19 | | let newAmount = (currentAmount + pmt.amount) |
---|
20 | 20 | | WriteSet([DataEntry(currentKey, newAmount)]) |
---|
21 | 21 | | } |
---|
22 | 22 | | } |
---|
23 | 23 | | |
---|
24 | 24 | | |
---|
25 | 25 | | |
---|
26 | 26 | | @Callable(i) |
---|
27 | | - | func withdraw (amount) = { |
---|
28 | | - | let currentKey = toBase58String(i.caller.bytes) |
---|
29 | | - | let currentAmount = match getInteger(this, currentKey) { |
---|
30 | | - | case a: Int => |
---|
31 | | - | a |
---|
32 | | - | case _ => |
---|
33 | | - | 0 |
---|
34 | | - | } |
---|
35 | | - | let newAmount = (currentAmount - amount) |
---|
36 | | - | if ((0 > amount)) |
---|
37 | | - | then throw("Can't withdraw negative amount") |
---|
38 | | - | else if ((0 > newAmount)) |
---|
39 | | - | then throw("Not enough balance") |
---|
40 | | - | else ScriptResult(WriteSet([DataEntry(currentKey, newAmount)]), TransferSet([ScriptTransfer(i.caller, amount, unit)])) |
---|
41 | | - | } |
---|
| 27 | + | func withdraw (amount) = WriteSet([DataEntry("", 1)]) |
---|
42 | 28 | | |
---|
43 | 29 | | |
---|