tx · 95W9kmCuSzU6vvX2jYPdJVEiUzv2SHNiFb72JCXTTK18

3PF4ctdEEo5sGXhHT1uSDL1DLstVVCbHYec:  -0.01400000 Waves

2020.03.02 21:01 [1954803] smart account 3PF4ctdEEo5sGXhHT1uSDL1DLstVVCbHYec > SELF 0.00000000 Waves

{ "type": 13, "id": "95W9kmCuSzU6vvX2jYPdJVEiUzv2SHNiFb72JCXTTK18", "fee": 1400000, "feeAssetId": null, "timestamp": 1583172069372, "version": 1, "sender": "3PF4ctdEEo5sGXhHT1uSDL1DLstVVCbHYec", "senderPublicKey": "8CVYpqRjBata95QR9dZN8SaR3Wc13GxireojNWEYdR36", "proofs": [ "4CAsXmkt8sKZKPja6y7938JSupXzEQSxZEfJhcS1wmAcVjRMGGpXPz9aERsVA9aEY6eLcZvDTon72jGWSwKa3DpM" ], "script": null, "chainId": 87, "height": 1954803, "spentComplexity": 0 } View: original | compacted Prev: 6Uhv5S8RFeFUBzuzkfyv2y6uxbdH54WuJBwizSMEPUFU Next: none Full:
OldNewDifferences
1-{-# STDLIB_VERSION 3 #-}
2-{-# SCRIPT_TYPE ACCOUNT #-}
3-{-# CONTENT_TYPE DAPP #-}
4-let answersCount = 20
5-
6-let answers = ["It is certain.", "It is decidedly so.", "Without a doubt.", "Yes - definitely.", "You may rely on it.", "As I see it, yes.", "Most likely.", "Outlook good.", "Yes.", "Signs point to yes.", "Reply hazy, try again.", "Ask again later.", "Better not tell you now.", "Cannot predict now.", "Concentrate and ask again.", "Don't count on it.", "My reply is no.", "My sources say no.", "Outlook not so good.", "Very doubtful."]
7-
8-func getAnswer (question,previousAnswer) = {
9- let hash = sha256(toBytes((question + previousAnswer)))
10- let index = toInt(hash)
11-answers[(index % answersCount)]
12- }
13-
14-
15-func getPreviousAnswer (address) = match getString(this, (address + "_a")) {
16- case a: String =>
17- a
18- case _ =>
19- address
20-}
21-
22-
23-@Callable(i)
24-func tellme (question) = {
25- let callerAddress = toBase58String(i.caller.bytes)
26- let answer = getAnswer(question, getPreviousAnswer(callerAddress))
27- WriteSet([DataEntry((callerAddress + "_q"), question), DataEntry((callerAddress + "_a"), answer)])
28- }
29-
30-
1+# no script

github/deemru/w8io/3ef1775 
50.58 ms