tx · A1ZsWqXeLmeYUfxjz1pnebQFHYhR5T3XbdRMxFxv9eKG

3MpgodrFvTXkz7QQpY4iLxzXW6EHzwyhN8N:  -0.01400000 Waves

2022.04.27 21:47 [2027261] smart account 3MpgodrFvTXkz7QQpY4iLxzXW6EHzwyhN8N > SELF 0.00000000 Waves

{ "type": 13, "id": "A1ZsWqXeLmeYUfxjz1pnebQFHYhR5T3XbdRMxFxv9eKG", "fee": 1400000, "feeAssetId": null, "timestamp": 1651085300680, "version": 2, "chainId": 84, "sender": "3MpgodrFvTXkz7QQpY4iLxzXW6EHzwyhN8N", "senderPublicKey": "4g5YVbd997ubswFwUFWFknp1fzq44itHuQtP4JaATK8M", "proofs": [ "8JABNWx7KxSAYknqDVee9yG2QxMWrBkqnZZgqeqvQQfidfnnYqkU1341jdGmEnTphoCGkgCJobYn4tE4b37KSYC", "dmouLWgoAEXjZGK5fwX7US53FLAEXZ9EuBJXSMR2qL5mU2trLytVWNQ4wsy8GwtX226U8KrPfxeGDPX917CHtki" ], "script": "base64:AAIDAAAAAAAAACYIARoHCgFhEgJ0eBoLCgFiEgZ2ZXJpZnkaDAoBYxIHJG1hdGNoMAAAAAAAAAAAAAAAAQAAAAFhAQAAAAFiAAAAAAQAAAABYwUAAAABYQYdvTvD", "height": 2027261, "applicationStatus": "succeeded", "spentComplexity": 0 } View: original | compacted Prev: 2YBYQX78WyrJGU4WdbVNUCwVYxZ2jpMwBe8KmQt9tuCa Next: 413227xjQ47c6eTPNcjndsDP3v5Bg17n35Xa3uGw3GTz Full:
OldNewDifferences
11 {-# STDLIB_VERSION 3 #-}
22 {-# SCRIPT_TYPE ACCOUNT #-}
33 {-# CONTENT_TYPE DAPP #-}
4-let alicePublicKey = base58'4g5YVbd997ubswFwUFWFknp1fzq44itHuQtP4JaATK8M'
54
6-let bobPublicKey = base58'5igucfz6KQnAsn2JzpqScKgo8NqZRu5pMW5kHiVqCT1Z'
7-
8-let cooperPublicKey = base58'EdiZKeSSzmoYqkk6ce532zc65KcUXi9HckEuP7sWPHmW'
95
106
117 @Verifier(tx)
12-func verify () = {
13- let alice1 = sigVerify(tx.bodyBytes, tx.proofs[0], alicePublicKey)
14- let alice2 = sigVerify(tx.bodyBytes, tx.proofs[1], alicePublicKey)
15- let alice3 = sigVerify(tx.bodyBytes, tx.proofs[2], alicePublicKey)
16- let bob1 = sigVerify(tx.bodyBytes, tx.proofs[0], bobPublicKey)
17- let bob2 = sigVerify(tx.bodyBytes, tx.proofs[1], bobPublicKey)
18- let bob3 = sigVerify(tx.bodyBytes, tx.proofs[2], bobPublicKey)
19- let cooper1 = sigVerify(tx.bodyBytes, tx.proofs[0], cooperPublicKey)
20- let cooper2 = sigVerify(tx.bodyBytes, tx.proofs[1], cooperPublicKey)
21- let cooper3 = sigVerify(tx.bodyBytes, tx.proofs[2], cooperPublicKey)
22- let aliceAndBob = if (if (if (if (if (if (alice1)
23- then bob2
24- else false)
25- then true
26- else if (alice1)
27- then bob3
28- else false)
29- then true
30- else if (alice2)
31- then bob1
32- else false)
33- then true
34- else if (alice2)
35- then bob3
36- else false)
37- then true
38- else if (alice3)
39- then bob1
40- else false)
41- then true
42- else if (alice3)
43- then bob2
44- else false
45- let aliceAndCooper = if (if (if (if (if (if (alice1)
46- then cooper2
47- else false)
48- then true
49- else if (alice1)
50- then cooper3
51- else false)
52- then true
53- else if (alice2)
54- then cooper1
55- else false)
56- then true
57- else if (alice2)
58- then cooper3
59- else false)
60- then true
61- else if (alice3)
62- then cooper1
63- else false)
64- then true
65- else if (alice3)
66- then cooper2
67- else false
68- let bobAndCooper = if (if (if (if (if (if (cooper1)
69- then bob2
70- else false)
71- then true
72- else if (cooper1)
73- then bob3
74- else false)
75- then true
76- else if (cooper2)
77- then bob1
78- else false)
79- then true
80- else if (cooper2)
81- then bob3
82- else false)
83- then true
84- else if (cooper3)
85- then bob1
86- else false)
87- then true
88- else if (cooper3)
89- then bob2
90- else false
91- match tx {
92- case _ =>
93- if (if (aliceAndBob)
94- then true
95- else aliceAndCooper)
96- then true
97- else bobAndCooper
98- }
99- }
8+func verify () = match tx {
9+ case _ =>
10+ true
11+}
10012

github/deemru/w8io/03bedc9 
34.21 ms