tx · GUtnM6VMq7zoe1mPzVp4YA1T6SbwXZUQgCB6fruvBvpm
3MwqcU6eLKXkuYdGdgFL7BvHmGn7P15kgL9: -0.01400000 Waves
2019.12.19 19:38 [816042] smart account 3MwqcU6eLKXkuYdGdgFL7BvHmGn7P15kgL9 > SELF 0.00000000 Waves
{
"type": 13,
"id": "GUtnM6VMq7zoe1mPzVp4YA1T6SbwXZUQgCB6fruvBvpm",
"fee": 1400000,
"feeAssetId": null,
"timestamp": 1576773481377,
"version": 1,
"sender": "3MwqcU6eLKXkuYdGdgFL7BvHmGn7P15kgL9",
"senderPublicKey": "Czg1BfNfrnXa9TK7J6gcEZtKeVEwBLFbhDFJTNJVajFh",
"proofs": [
"",
"5iNSmp7TCUPArds8Gd2zVsALToy7oxuMSD33zr6J3BFXPPCDKmsv2gcY7idX5XHsLAXjm7GMHAAVGe1pTXkMZJmC",
"3ZkaF7JA19PCWrBxqH3tqMtHiFWSwHSgdDXisQyDEjuSEoTejqaTpSi1854ixoJziHtWwJekaXq8DykZn6cT2CCS"
],
"script": null,
"chainId": 84,
"height": 816042,
"spentComplexity": 0
}
View: original | compacted
Prev: BWvZ3J3KcREohRv6gAFYqxHiXhcbS1U4sZcNnYYsS39x
Next: none
Full:
Old | New | | Differences |
---|
1 | | - | {-# STDLIB_VERSION 1 #-} |
---|
2 | | - | {-# CONTENT_TYPE EXPRESSION #-} |
---|
3 | | - | let alicePubKey = base58'5AzfA9UfpWVYiwFwvdr77k6LWupSTGLb14b24oVdEpMM' |
---|
4 | | - | let bobPubKey = base58'2KwU4vzdgPmKyf7q354H9kSyX9NZjNiq4qbnH2wi2VDF' |
---|
5 | | - | let cooperPubKey = base58'GbrUeGaBfmyFJjSQb9Z8uTCej5GzjXfRDVGJGrmgt5cD' |
---|
6 | | - | let aliceSigned = if (sigVerify(tx.bodyBytes, tx.proofs[0], alicePubKey)) |
---|
7 | | - | then 1 |
---|
8 | | - | else 0 |
---|
9 | | - | let bobSigned = if (sigVerify(tx.bodyBytes, tx.proofs[1], bobPubKey)) |
---|
10 | | - | then 1 |
---|
11 | | - | else 0 |
---|
12 | | - | let cooperSigned = if (sigVerify(tx.bodyBytes, tx.proofs[2], cooperPubKey)) |
---|
13 | | - | then 1 |
---|
14 | | - | else 0 |
---|
15 | | - | (((aliceSigned + bobSigned) + cooperSigned) >= 2) |
---|
| 1 | + | # no script |
---|