tx · 586ZcYRTo8HF8KuQDaAj4hmdQyrSPizsY49SMgH43BNn
3N8XBzcbxt5snTdkqVSobDjtDGbTns27DdY: -0.01400000 Waves
2020.10.06 17:52 [1208842] smart account 3N8XBzcbxt5snTdkqVSobDjtDGbTns27DdY > SELF 0.00000000 Waves
{
"type": 13,
"id": "586ZcYRTo8HF8KuQDaAj4hmdQyrSPizsY49SMgH43BNn",
"fee": 1400000,
"feeAssetId": null,
"timestamp": 1601995986558,
"version": 2,
"chainId": 84,
"sender": "3N8XBzcbxt5snTdkqVSobDjtDGbTns27DdY",
"senderPublicKey": "HhWoKsFPjXVx9nYfPydpV9BwLmuUdJyJ8ydtyVJVxg9Z",
"proofs": [
"3weoWx7W7itof5c5B5uxFKyBx5ad3t2gHKvZxd9b43y43vbHXHx8QeUth2kA5wqkyDrEJg7Fdb9DXfPxM6oa8XH7"
],
"script": "base64:AAIDAAAAAAAAAAQIARIAAAAAAAAAAAEAAAABaQEAAAAHZGVwb3NpdAAAAAAEAAAAA3BtdAkBAAAAB2V4dHJhY3QAAAABCAUAAAABaQAAAAdwYXltZW50BAAAAANsYmgIBQAAAAlsYXN0QmxvY2sAAAAGaGVpZ2h0AwkBAAAACWlzRGVmaW5lZAAAAAEIBQAAAANwbXQAAAAHYXNzZXRJZAkAAAIAAAABAgAAACFjYW4gaG9kbCB3YXZlcyBvbmx5IGF0IHRoZSBtb21lbnQEAAAACmN1cnJlbnRLZXkJAAJYAAAAAQgIBQAAAAFpAAAABmNhbGxlcgAAAAVieXRlcwMJAQAAAAEhAAAAAQkBAAAACWlzRGVmaW5lZAAAAAEJAAQdAAAAAgUAAAAEdGhpcwUAAAAKY3VycmVudEtleQkBAAAACFdyaXRlU2V0AAAAAQkABEwAAAACCQEAAAAJRGF0YUVudHJ5AAAAAgUAAAAKY3VycmVudEtleQkAASwAAAACCQABLAAAAAIJAAEsAAAAAgkAAaQAAAABCQAAaAAAAAIJAABpAAAAAggFAAAAA3BtdAAAAAZhbW91bnQAAAAAAAAAAGQAAAAAAAAAAHgCAAAAAV8JAAGkAAAAAQUAAAADbGJoAgAAAAJfMAUAAAADbmlsBAAAAAdvbGREYXRhCQAEtQAAAAIEAAAAByRtYXRjaDAJAAQdAAAAAgUAAAAEdGhpcwUAAAAKY3VycmVudEtleQMJAAABAAAAAgUAAAAHJG1hdGNoMAIAAAAGU3RyaW5nBAAAAANzdHIFAAAAByRtYXRjaDAFAAAAA3N0cgkAAAIAAAABAgAAABFkYXRhIHN0cmluZyBlcnJvcgIAAAABXwQAAAANY3VycmVudEFtb3VudAkBAAAADXBhcnNlSW50VmFsdWUAAAABCQABkQAAAAIFAAAAB29sZERhdGEAAAAAAAAAAAAJAQAAAAhXcml0ZVNldAAAAAEJAARMAAAAAgkBAAAACURhdGFFbnRyeQAAAAIFAAAACmN1cnJlbnRLZXkJAAEsAAAAAgkAASwAAAACCQABLAAAAAIJAAEsAAAAAgkAAaQAAAABCQAAZAAAAAIFAAAADWN1cnJlbnRBbW91bnQJAABoAAAAAgkAAGkAAAACCAUAAAADcG10AAAABmFtb3VudAAAAAAAAAAAZAAAAAAAAAAAeAIAAAABXwkAAaQAAAABBQAAAANsYmgCAAAAAV8JAAGRAAAAAgUAAAAHb2xkRGF0YQAAAAAAAAAAAgUAAAADbmlsAAAAALMUWdE=",
"height": 1208842,
"applicationStatus": "succeeded",
"spentComplexity": 0
}
View: original | compacted
Prev: 7AHSD4a9wtAKPXwSq3rJuBPGHmau2mGAQUKossM2X2N2
Next: ySfmQTJN883eV5tRAxPW4tbNhBatKFMbyYKCrZThxzu
Diff:
Old | New | | Differences |
---|
11 | 11 | | then throw("can hodl waves only at the moment") |
---|
12 | 12 | | else { |
---|
13 | 13 | | let currentKey = toBase58String(i.caller.bytes) |
---|
14 | | - | let frostBlock = 10 |
---|
15 | 14 | | if (!(isDefined(getString(this, currentKey)))) |
---|
16 | | - | then WriteSet([DataEntry(currentKey, (((((toString(((pmt.amount / 100) * 120)) + "_") + toString(lbh)) + "_") + toString(frostBlock)) + "_0"))]) |
---|
| 15 | + | then WriteSet([DataEntry(currentKey, (((toString(((pmt.amount / 100) * 120)) + "_") + toString(lbh)) + "_0"))]) |
---|
17 | 16 | | else { |
---|
18 | 17 | | let oldData = split( match getString(this, currentKey) { |
---|
19 | 18 | | case str: String => |
---|
|
21 | 20 | | case _ => |
---|
22 | 21 | | throw("data string error") |
---|
23 | 22 | | }, "_") |
---|
24 | | - | let currentAmount = match getInteger(this, oldData[0]) { |
---|
25 | | - | case a: Int => |
---|
26 | | - | a |
---|
27 | | - | case _ => |
---|
28 | | - | throw("data int error") |
---|
29 | | - | } |
---|
30 | | - | WriteSet([DataEntry(currentKey, ((((((toString((currentAmount + ((pmt.amount / 100) * 120))) + "_") + toString(lbh)) + "_") + toString(frostBlock)) + "_") + oldData[3]))]) |
---|
| 23 | + | let currentAmount = parseIntValue(oldData[0]) |
---|
| 24 | + | WriteSet([DataEntry(currentKey, ((((toString((currentAmount + ((pmt.amount / 100) * 120))) + "_") + toString(lbh)) + "_") + oldData[2]))]) |
---|
31 | 25 | | } |
---|
32 | 26 | | } |
---|
33 | 27 | | } |
---|
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 | | let lbh = lastBlock.height |
---|
10 | 10 | | if (isDefined(pmt.assetId)) |
---|
11 | 11 | | then throw("can hodl waves only at the moment") |
---|
12 | 12 | | else { |
---|
13 | 13 | | let currentKey = toBase58String(i.caller.bytes) |
---|
14 | | - | let frostBlock = 10 |
---|
15 | 14 | | if (!(isDefined(getString(this, currentKey)))) |
---|
16 | | - | then WriteSet([DataEntry(currentKey, (((((toString(((pmt.amount / 100) * 120)) + "_") + toString(lbh)) + "_") + toString(frostBlock)) + "_0"))]) |
---|
| 15 | + | then WriteSet([DataEntry(currentKey, (((toString(((pmt.amount / 100) * 120)) + "_") + toString(lbh)) + "_0"))]) |
---|
17 | 16 | | else { |
---|
18 | 17 | | let oldData = split( match getString(this, currentKey) { |
---|
19 | 18 | | case str: String => |
---|
20 | 19 | | str |
---|
21 | 20 | | case _ => |
---|
22 | 21 | | throw("data string error") |
---|
23 | 22 | | }, "_") |
---|
24 | | - | let currentAmount = match getInteger(this, oldData[0]) { |
---|
25 | | - | case a: Int => |
---|
26 | | - | a |
---|
27 | | - | case _ => |
---|
28 | | - | throw("data int error") |
---|
29 | | - | } |
---|
30 | | - | WriteSet([DataEntry(currentKey, ((((((toString((currentAmount + ((pmt.amount / 100) * 120))) + "_") + toString(lbh)) + "_") + toString(frostBlock)) + "_") + oldData[3]))]) |
---|
| 23 | + | let currentAmount = parseIntValue(oldData[0]) |
---|
| 24 | + | WriteSet([DataEntry(currentKey, ((((toString((currentAmount + ((pmt.amount / 100) * 120))) + "_") + toString(lbh)) + "_") + oldData[2]))]) |
---|
31 | 25 | | } |
---|
32 | 26 | | } |
---|
33 | 27 | | } |
---|
34 | 28 | | |
---|
35 | 29 | | |
---|