1 | | - | {-# STDLIB_VERSION 5 #-} |
---|
2 | | - | {-# SCRIPT_TYPE ACCOUNT #-} |
---|
3 | | - | {-# CONTENT_TYPE DAPP #-} |
---|
4 | | - | let a = value(addressFromString("3MxNnYVp81YfYpvdpskfCAS4SdmNYcrtYLE")) |
---|
5 | | - | |
---|
6 | | - | let b = value(addressFromString("3MrimhqvGvTQ4wREK4y76JC7Ux4oCKqXgdL")) |
---|
7 | | - | |
---|
8 | | - | func c () = { |
---|
9 | | - | let d = invoke(this, "Firstlevel", nil, nil) |
---|
10 | | - | if ($isInstanceOf(d, "Boolean")) |
---|
11 | | - | then { |
---|
12 | | - | let e = d |
---|
13 | | - | e |
---|
14 | | - | } |
---|
15 | | - | else throw("Unsupported result format (Firstlevel)") |
---|
16 | | - | } |
---|
17 | | - | |
---|
18 | | - | |
---|
19 | | - | func f () = { |
---|
20 | | - | let d = invoke(this, "Secondlevel", nil, nil) |
---|
21 | | - | if ($isInstanceOf(d, "Boolean")) |
---|
22 | | - | then { |
---|
23 | | - | let e = d |
---|
24 | | - | e |
---|
25 | | - | } |
---|
26 | | - | else throw("Unsupported result format (Secondlevel)") |
---|
27 | | - | } |
---|
28 | | - | |
---|
29 | | - | |
---|
30 | | - | func g () = { |
---|
31 | | - | let d = invoke(this, "Thirdlevel", nil, nil) |
---|
32 | | - | if ($isInstanceOf(d, "Boolean")) |
---|
33 | | - | then { |
---|
34 | | - | let e = d |
---|
35 | | - | e |
---|
36 | | - | } |
---|
37 | | - | else throw("Unsupported result format (Thirdlevel)") |
---|
38 | | - | } |
---|
39 | | - | |
---|
40 | | - | |
---|
41 | | - | @Callable(h) |
---|
42 | | - | func Firstlevel () = { |
---|
43 | | - | let i = Issue("RTokenRToken11", "This is an ordinary token", 1000000, 2, true, unit, 0) |
---|
44 | | - | let j = calculateAssetId(i) |
---|
45 | | - | let k = Lease(a, 1, 1) |
---|
46 | | - | let l = calculateLeaseId(k) |
---|
47 | | - | let e = f() |
---|
48 | | - | if ((e == e)) |
---|
49 | | - | then { |
---|
50 | | - | let m = invoke(b, "otherActionsFirstlevel", nil, nil) |
---|
51 | | - | if ((m == m)) |
---|
52 | | - | then $Tuple2([BinaryEntry("bin1", base58''), BooleanEntry("bool1", true), IntegerEntry("int1", 1), StringEntry("str1", ""), DeleteEntry("str1"), i, Reissue(j, 1, true), Burn(j, 1000000), ScriptTransfer(a, 1000000, unit), k, Issue("UberToken11", "The ultimate token. One and only", 1, 0, false), LeaseCancel(l)], true) |
---|
53 | | - | else throw("Strict value is not equal to itself.") |
---|
54 | | - | } |
---|
55 | | - | else throw("Strict value is not equal to itself.") |
---|
56 | | - | } |
---|
57 | | - | |
---|
58 | | - | |
---|
59 | | - | |
---|
60 | | - | @Callable(h) |
---|
61 | | - | func Secondlevel () = { |
---|
62 | | - | let i = Issue("RTokenRToken22", "This is an ordinary token", 1000000, 2, true, unit, 0) |
---|
63 | | - | let j = calculateAssetId(i) |
---|
64 | | - | let k = Lease(a, 1, 2) |
---|
65 | | - | let l = calculateLeaseId(k) |
---|
66 | | - | let e = g() |
---|
67 | | - | if ((e == e)) |
---|
68 | | - | then $Tuple2([BinaryEntry("bin2", base58''), BooleanEntry("bool2", true), IntegerEntry("int2", 1), StringEntry("str2", ""), DeleteEntry("str2"), i, Reissue(j, 1, true), Burn(j, 1000000), ScriptTransfer(a, 2000000, unit), k, Issue("UberToken22", "The ultimate token. One and only", 1, 0, false), LeaseCancel(l)], true) |
---|
69 | | - | else throw("Strict value is not equal to itself.") |
---|
70 | | - | } |
---|
71 | | - | |
---|
72 | | - | |
---|
73 | | - | |
---|
74 | | - | @Callable(h) |
---|
75 | | - | func Thirdlevel () = { |
---|
76 | | - | let i = Issue("RTokenRToken33", "This is an ordinary token", 1000000, 2, true, unit, 0) |
---|
77 | | - | let j = calculateAssetId(i) |
---|
78 | | - | let k = Lease(a, 1, 3) |
---|
79 | | - | let l = calculateLeaseId(k) |
---|
80 | | - | $Tuple2([BinaryEntry("bin3", base58''), BooleanEntry("bool3", true), IntegerEntry("int3", 1), StringEntry("str3", ""), DeleteEntry("str3"), i, Reissue(j, 1, true), Burn(j, 1), ScriptTransfer(a, 3000000, unit), k, Issue("UberToken33", "The ultimate token. One and only", 1, 0, false), LeaseCancel(l)], true) |
---|
81 | | - | } |
---|
82 | | - | |
---|
83 | | - | |
---|
| 1 | + | # no script |
---|