1 | | - | {-# STDLIB_VERSION 6 #-} |
---|
2 | | - | {-# SCRIPT_TYPE ACCOUNT #-} |
---|
3 | | - | {-# CONTENT_TYPE DAPP #-} |
---|
4 | | - | let a = base58'AxGKQRxKo4F2EbhrRq6N2tdLsxtMnpzQsS4QemV6V1W1' |
---|
5 | | - | |
---|
6 | | - | let b = "open" |
---|
7 | | - | |
---|
8 | | - | let c = "checked_out" |
---|
9 | | - | |
---|
10 | | - | let d = "done" |
---|
11 | | - | |
---|
12 | | - | let e = "_checked_out_by" |
---|
13 | | - | |
---|
14 | | - | let f = "simple_ChatGPT_task" |
---|
15 | | - | |
---|
16 | | - | let g = "_check_out_height" |
---|
17 | | - | |
---|
18 | | - | let h = "_register_height" |
---|
19 | | - | |
---|
20 | | - | let i = "_commit_height" |
---|
21 | | - | |
---|
22 | | - | func j (k) = { |
---|
23 | | - | let l = getString(this, (k + "_status")) |
---|
24 | | - | (l == b) |
---|
25 | | - | } |
---|
26 | | - | |
---|
27 | | - | |
---|
28 | | - | func m (k,n) = { |
---|
29 | | - | let o = getString(this, (k + e)) |
---|
30 | | - | (o == n) |
---|
31 | | - | } |
---|
32 | | - | |
---|
33 | | - | |
---|
34 | | - | func p (q) = { |
---|
35 | | - | let r = { |
---|
36 | | - | let s = getString(this, (q + "_initializer")) |
---|
37 | | - | if ($isInstanceOf(s, "String")) |
---|
38 | | - | then { |
---|
39 | | - | let t = s |
---|
40 | | - | t |
---|
41 | | - | } |
---|
42 | | - | else "" |
---|
43 | | - | } |
---|
44 | | - | let s = getString(this, ((q + "_") + r)) |
---|
45 | | - | if ($isInstanceOf(s, "String")) |
---|
46 | | - | then { |
---|
47 | | - | let t = s |
---|
48 | | - | t |
---|
49 | | - | } |
---|
50 | | - | else "" |
---|
51 | | - | } |
---|
52 | | - | |
---|
53 | | - | |
---|
54 | | - | @Callable(u) |
---|
55 | | - | func registerChatGPTTask (v) = { |
---|
56 | | - | let w = size(u.payments) |
---|
57 | | - | if ((w != 1)) |
---|
58 | | - | then throw("Payment necessary!") |
---|
59 | | - | else { |
---|
60 | | - | let r = toBase58String(u.callerPublicKey) |
---|
61 | | - | let q = toBase58String(u.transactionId) |
---|
62 | | - | let x = u.payments[0] |
---|
63 | | - | let y = x.amount |
---|
64 | | - | let z = x.assetId |
---|
65 | | - | let k = ((q + "_") + r) |
---|
66 | | - | let A = lastBlock.timestamp |
---|
67 | | - | if ((z != a)) |
---|
68 | | - | then throw("Payment only possible in the AI Token!") |
---|
69 | | - | else if ((10000000 > y)) |
---|
70 | | - | then throw("Payment needs to be at least 0.1 AI Token!") |
---|
71 | | - | else [StringEntry((k + "_description"), v), StringEntry((q + "_initializer"), r), StringEntry((k + "_status"), b), StringEntry((k + "_type"), f), IntegerEntry((k + h), height), IntegerEntry((k + "_register_timestamp"), A), BooleanEntry(("open_chatgpt_" + k), true)] |
---|
72 | | - | } |
---|
73 | | - | } |
---|
74 | | - | |
---|
75 | | - | |
---|
76 | | - | |
---|
77 | | - | @Callable(u) |
---|
78 | | - | func checkoutChatGPTTask (k) = { |
---|
79 | | - | let r = toBase58String(u.callerPublicKey) |
---|
80 | | - | let B = j(k) |
---|
81 | | - | let A = lastBlock.timestamp |
---|
82 | | - | if (!(B)) |
---|
83 | | - | then throw("Task not open for checkout!") |
---|
84 | | - | else [StringEntry((k + e), r), StringEntry((k + "_status"), c), IntegerEntry((k + g), height), IntegerEntry((k + "_check_out_timestamp"), A), DeleteEntry(("open_chatgpt_" + k))] |
---|
85 | | - | } |
---|
86 | | - | |
---|
87 | | - | |
---|
88 | | - | |
---|
89 | | - | @Callable(u) |
---|
90 | | - | func commitChatGPTTask (k,C) = { |
---|
91 | | - | let r = toBase58String(u.callerPublicKey) |
---|
92 | | - | let D = m(k, r) |
---|
93 | | - | let A = lastBlock.timestamp |
---|
94 | | - | if (!(D)) |
---|
95 | | - | then throw("Task may only be submitted by the agent who checked the task out!") |
---|
96 | | - | else [StringEntry((k + "_status"), d), StringEntry((k + "_result"), C), IntegerEntry((k + i), height), IntegerEntry((k + "_commit_timestamp"), A)] |
---|
97 | | - | } |
---|
98 | | - | |
---|
99 | | - | |
---|
100 | | - | @Verifier(E) |
---|
101 | | - | func F () = sigVerify(E.bodyBytes, E.proofs[0], E.senderPublicKey) |
---|
102 | | - | |
---|
| 1 | + | # no script |
---|