1 | | - | {-# STDLIB_VERSION 3 #-} |
---|
2 | | - | {-# SCRIPT_TYPE ACCOUNT #-} |
---|
3 | | - | {-# CONTENT_TYPE DAPP #-} |
---|
4 | | - | |
---|
5 | | - | |
---|
6 | | - | @Callable(a) |
---|
7 | | - | func distributeMinerReward () = { |
---|
8 | | - | let b = extract(a.payment) |
---|
9 | | - | if (isDefined(b.assetId)) |
---|
10 | | - | then throw("can hodl waves only at the moment") |
---|
11 | | - | else { |
---|
12 | | - | let c = toBase58String(a.caller.bytes) |
---|
13 | | - | let d = { |
---|
14 | | - | let e = getInteger(this, c) |
---|
15 | | - | if ($isInstanceOf(e, "Int")) |
---|
16 | | - | then { |
---|
17 | | - | let f = e |
---|
18 | | - | f |
---|
19 | | - | } |
---|
20 | | - | else 0 |
---|
21 | | - | } |
---|
22 | | - | let g = (d + b.amount) |
---|
23 | | - | WriteSet([DataEntry(c, g)]) |
---|
24 | | - | } |
---|
25 | | - | } |
---|
26 | | - | |
---|
27 | | - | |
---|
28 | | - | |
---|
29 | | - | @Callable(a) |
---|
30 | | - | func withdraw (h) = { |
---|
31 | | - | let c = toBase58String(a.caller.bytes) |
---|
32 | | - | let d = { |
---|
33 | | - | let e = getInteger(this, c) |
---|
34 | | - | if ($isInstanceOf(e, "Int")) |
---|
35 | | - | then { |
---|
36 | | - | let f = e |
---|
37 | | - | f |
---|
38 | | - | } |
---|
39 | | - | else 0 |
---|
40 | | - | } |
---|
41 | | - | let g = (d - h) |
---|
42 | | - | if ((0 > h)) |
---|
43 | | - | then throw("Can't withdraw negative amount") |
---|
44 | | - | else if ((0 > g)) |
---|
45 | | - | then throw("Not enough balance") |
---|
46 | | - | else ScriptResult(WriteSet([DataEntry(c, g)]), TransferSet([ScriptTransfer(a.caller, h, unit)])) |
---|
47 | | - | } |
---|
48 | | - | |
---|
49 | | - | |
---|
50 | | - | @Verifier(i) |
---|
51 | | - | func j () = sigVerify(i.bodyBytes, i.proofs[0], i.senderPublicKey) |
---|
52 | | - | |
---|
| 1 | + | {-# STDLIB_VERSION 5 #-} |
---|
| 2 | + | {-# CONTENT_TYPE EXPRESSION #-} |
---|
| 3 | + | sigVerify(tx.bodyBytes, tx.proofs[0], tx.senderPublicKey) |
---|