tx · 9n18HStK6f54zVGVyqTckdfmUxZZzj4FerCosHY8L1xH
3MxfUDmsakfEwuUFjWN3MQBz47WqiERY3Uw: -0.01400000 Waves
2020.03.11 11:09 [904417] smart account 3MxfUDmsakfEwuUFjWN3MQBz47WqiERY3Uw > SELF 0.00000000 Waves
{
"type": 13,
"id": "9n18HStK6f54zVGVyqTckdfmUxZZzj4FerCosHY8L1xH",
"fee": 1400000,
"feeAssetId": null,
"timestamp": 1583925018742,
"version": 1,
"sender": "3MxfUDmsakfEwuUFjWN3MQBz47WqiERY3Uw",
"senderPublicKey": "9nvAu7bfUarQQjxGvgELELfgR3zexiv2SstasTyEJwkV",
"proofs": [
"",
"2q1f57NT8DTZRX7EAh9gWo3g3cYBN8riV8ZNQZwtR1ckoCcnpSYMD5cNvQC971TornZ9xF5HEwrqTw4W4G51p1TA",
"3aQDhYNHWbFDCd26HG78a2Lmc3aikbFcapgqv1F5H86rwjaKfEaCqdK8tyKp5jXE7eB75npKretmvvgqwcwYDuJK"
],
"script": null,
"chainId": 84,
"height": 904417,
"spentComplexity": 0
}
View: original | compacted
Prev: 3EKVAimNCRTdd1nzvZAEcwZVMiFCLZJZNVP8Y7kzZdvm
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 |
---|