tx · 3srovXJ6n5ZigzNnsJDkNejCjq9YNPiGKUZwJEUPJPc9
3MrYi4bQVN2Nn3vTgahYWtgBy5uta1BjPic: -0.01400000 Waves
2019.07.01 13:52 [566220] smart account 3MrYi4bQVN2Nn3vTgahYWtgBy5uta1BjPic > SELF 0.00000000 Waves
{
"type": 13,
"id": "3srovXJ6n5ZigzNnsJDkNejCjq9YNPiGKUZwJEUPJPc9",
"fee": 1400000,
"feeAssetId": null,
"timestamp": 1561978373091,
"version": 1,
"sender": "3MrYi4bQVN2Nn3vTgahYWtgBy5uta1BjPic",
"senderPublicKey": "F56P8bJZ5bB8hiLRwgHvd5kV2o4M7RWERU2KetuJiupx",
"proofs": [
"",
"5Xu9Lraw4qnuoijjBjWWPNarTmkiAKDu7CPe758xsSeyxMW8PEuvbznhpwD9MYr9c78hsLMzmyGtr83fRuJojcTc",
"MaeVf6b8wG6SL5grSero457v8jM9HqSbxd3ZPg9LGVmyLdFCPov77NUetwjgH3LbPq6p1ju3vCBgm69KQk5MqDC"
],
"script": null,
"chainId": 84,
"height": 566220,
"spentComplexity": 0
}
View: original | compacted
Prev: 8VVGF5hZtiftUjPiJFuvjxoq5vGuR6pwVUVzzyVBts6U
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 |
---|